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

body {
    font-family: 'Aldrich', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.7;
    color: #1a202c;
    background: linear-gradient(135deg, #0f1419 0%, #1a202c 100%);
    min-height: 100vh;
}

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

/* Variables - Совершенно новая цветовая схема */
:root {
    --primary-color: #00d4ff;
    --secondary-color: #1a202c;
    --accent-color: #ff6b6b;
    --accent-secondary: #4ecdc4;
    --text-color: #ffffff;
    --text-light: #a0aec0;
    --light-bg: #2d3748;
    --border-color: #4a5568;
    --success-color: #48bb78;
    --warning-color: #ed8936;
    --gradient-primary: linear-gradient(135deg, #00d4ff 0%, #0099cc 100%);
    --gradient-secondary: linear-gradient(135deg, #ff6b6b 0%, #ee5a52 100%);
    --gradient-accent: linear-gradient(135deg, #4ecdc4 0%, #44a08d 100%);
    --gradient-dark: linear-gradient(135deg, #1a202c 0%, #2d3748 100%);
    --gradient-neon: linear-gradient(135deg, #00d4ff 0%, #4ecdc4 100%);
    --shadow-soft: 0 10px 30px rgba(0, 212, 255, 0.2);
    --shadow-medium: 0 15px 40px rgba(0, 212, 255, 0.3);
    --shadow-strong: 0 20px 50px rgba(0, 212, 255, 0.4);
    --shadow-neon: 0 0 20px rgba(0, 212, 255, 0.6);
}

/* Cookie Popup */
.cookie-popup {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 400px;
    background: var(--gradient-dark);
    color: white;
    padding: 25px;
    border-radius: 20px;
    box-shadow: var(--shadow-strong);
    z-index: 1000;
    display: block;
    backdrop-filter: blur(10px);
    border: 2px solid var(--primary-color);
}

.cookie-popup.hidden {
    display: none;
}

.cookie-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.cookie-buttons {
    display: flex;
    gap: 15px;
    align-items: center;
    justify-content: flex-end;
}

.cookie-link {
    color: var(--primary-color);
    text-decoration: underline;
    font-weight: 500;
}

.btn-accept {
    background: var(--gradient-primary);
    color: white;
    border: none;
    padding: 12px 25px;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-neon);
}

.btn-accept:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-strong);
}

/* Header */
.header {
    background: rgba(26, 32, 44, 0.95);
    backdrop-filter: blur(20px);
    box-shadow: var(--shadow-soft);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 999;
    border-bottom: 2px solid var(--primary-color);
}

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

.nav-brand {
    display: flex;
    align-items: center;
}

.brand-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.brand-link:hover {
    transform: scale(1.05);
    text-shadow: var(--shadow-neon);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    position: relative;
    transition: all 0.3s ease;
    padding: 8px 16px;
    border-radius: 20px;
}

.nav-link:hover {
    color: var(--primary-color);
    background: rgba(0, 212, 255, 0.1);
    text-shadow: var(--shadow-neon);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-link:hover::after {
    width: 80%;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1000;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--accent-color);
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

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

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

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

/* Hero Section - Совершенно новый дизайн */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-dark);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(0, 212, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 107, 107, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(78, 205, 196, 0.1) 0%, transparent 50%);
}

.hero-content {
    text-align: center;
    color: white;
    z-index: 2;
    position: relative;
    max-width: 800px;
    padding: 0 20px;
}

.hero h2 {
    font-size: 4.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    background: var(--gradient-neon);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: var(--shadow-neon);
    animation: glow 2s ease-in-out infinite alternate;
}

@keyframes glow {
    from { text-shadow: 0 0 20px rgba(0, 212, 255, 0.6); }
    to { text-shadow: 0 0 30px rgba(0, 212, 255, 0.8), 0 0 40px rgba(0, 212, 255, 0.4); }
}

.hero p {
    font-size: 1.4rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
    line-height: 1.8;
    color: var(--text-light);
}

.cta-button {
    display: inline-block;
    background: var(--gradient-primary);
    color: white;
    padding: 18px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-medium);
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.cta-button::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;
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-strong);
}

/* Новые стили для секций */
.section-modern {
    padding: 100px 0;
    background: var(--light-bg);
    position: relative;
}

.section-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(to bottom, transparent, rgba(0, 212, 255, 0.1));
}

.section-modern:nth-child(even) {
    background: var(--secondary-color);
}

.section-modern:nth-child(even)::before {
    background: linear-gradient(to bottom, transparent, rgba(255, 107, 107, 0.1));
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 1rem;
    position: relative;
}

@media (max-width: 768px) {
    .section-header h2 {
        font-size: 2rem;
    }
}

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

.section-header p {
    font-size: 1.2rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

/* Description Section - Новый дизайн */
.description {
    padding: 120px 0;
    background: var(--light-bg);
    position: relative;
}

.description::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(to bottom, transparent, rgba(0, 212, 255, 0.1));
}

.description-content {
    max-width: 1000px;
    margin: 0 auto;
}

.description-content h2 {
    font-size: 3.5rem;
    font-weight: 800;
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 3rem;
    position: relative;
}

.description-content h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 5px;
    background: var(--gradient-primary);
    border-radius: 3px;
}

.description-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
    align-items: center;
}

.description-text .lead {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.description-text p {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.8;
}

.slogan-box {
    background: var(--gradient-secondary);
    padding: 3rem;
    border-radius: 25px;
    color: white;
    text-align: center;
    box-shadow: var(--shadow-medium);
    position: relative;
    overflow: hidden;
    border: 2px solid var(--accent-color);
}

.slogan-box::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: rgba(255,255,255,0.1);
    transform: rotate(45deg);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% { transform: rotate(45deg) translateX(-100%); }
    100% { transform: rotate(45deg) translateX(100%); }
}

.slogan-box h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
    position: relative;
    z-index: 2;
}

.slogan-subtitle {
    font-size: 1.1rem;
    opacity: 0.9;
    position: relative;
    z-index: 2;
}

.why-important h3 {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 3rem;
}

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

.benefit-item {
    background: var(--secondary-color);
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow-soft);
    transition: all 0.3s ease;
    border: 2px solid var(--primary-color);
    position: relative;
    overflow: hidden;
}

.benefit-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.benefit-item:hover::before {
    transform: scaleX(1);
}

.benefit-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-medium);
    border-color: var(--accent-color);
}

.benefit-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    display: block;
}

.benefit-item h4 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.benefit-item p {
    color: var(--text-light);
    line-height: 1.6;
}

/* About Section - Новый дизайн */
.about {
    padding: 120px 0;
    background: linear-gradient(135deg, #1a202c 0%, #2d3748 50%, #4a5568 100%);
    position: relative;
    overflow: hidden;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(255, 107, 107, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(78, 205, 196, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(0, 212, 255, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.about-header {
    text-align: center;
    margin-bottom: 5rem;
    position: relative;
    z-index: 2;
}

.about-badge {
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a52 100%);
    color: white;
    padding: 12px 30px;
    border-radius: 30px;
    font-size: 1rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 2rem;
    box-shadow: 0 8px 25px rgba(255, 107, 107, 0.3);
    animation: float-badge 3s ease-in-out infinite;
}

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

.about-header h2 {
    font-size: 4rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #00d4ff 0%, #4ecdc4 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 30px rgba(0, 212, 255, 0.5);
}

.about-subtitle {
    font-size: 1.3rem;
    color: #a0aec0;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.8;
}

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

.about-main {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.about-story {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 25px;
    padding: 2.5rem;
    position: relative;
    overflow: hidden;
}

.about-story::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #00d4ff, #4ecdc4, #ff6b6b);
    animation: shimmer-line 2s ease-in-out infinite;
}

@keyframes shimmer-line {
    0%, 100% { transform: translateX(-100%); }
    50% { transform: translateX(100%); }
}

.story-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    display: block;
}

.about-story h3 {
    font-size: 2rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1.5rem;
}

.about-story p {
    color: #cbd5e0;
    line-height: 1.8;
    font-size: 1.1rem;
}

.about-values h3 {
    font-size: 2rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 2rem;
    text-align: center;
}

.values-list {
    display: grid;
    gap: 1.5rem;
}

.value-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 1.5rem;
    transition: all 0.3s ease;
}

.value-item:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(0, 212, 255, 0.3);
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 212, 255, 0.2);
}

.value-icon {
    font-size: 2.5rem;
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a52 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 25px rgba(255, 107, 107, 0.3);
}

.value-content h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.8rem;
}

.value-content p {
    color: #a0aec0;
    line-height: 1.6;
    font-size: 1rem;
}

.about-visual {
    position: relative;
    height: 600px;
}

.visual-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.main-circle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, #00d4ff 0%, #4ecdc4 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 20px 60px rgba(0, 212, 255, 0.4);
    animation: pulse-main 4s ease-in-out infinite;
    z-index: 10;
}

@keyframes pulse-main {
    0%, 100% { transform: translate(-50%, -50%) scale(1); }
    50% { transform: translate(-50%, -50%) scale(1.1); }
}

.circle-content {
    text-align: center;
    color: white;
}

.main-icon {
    font-size: 4rem;
    display: block;
    margin-bottom: 0.5rem;
}

.circle-content h4 {
    font-size: 1.2rem;
    font-weight: 700;
    margin: 0;
}

.floating-element {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 1.5rem;
    border-radius: 20px;
    text-align: center;
    color: white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    animation: float-element 6s ease-in-out infinite;
    z-index: 5;
}

.floating-element span {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 0.8rem;
}

.floating-element p {
    font-size: 0.9rem;
    font-weight: 600;
    margin: 0;
}

.floating-element.element-1 {
    top: 10%;
    left: 10%;
    animation-delay: 0s;
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a52 100%);
}

.floating-element.element-2 {
    top: 20%;
    right: 15%;
    animation-delay: 1s;
    background: linear-gradient(135deg, #4ecdc4 0%, #44a08d 100%);
}

.floating-element.element-3 {
    bottom: 20%;
    left: 15%;
    animation-delay: 2s;
    background: linear-gradient(135deg, #f39c12 0%, #e67e22 100%);
}

.floating-element.element-4 {
    bottom: 10%;
    right: 10%;
    animation-delay: 3s;
    background: linear-gradient(135deg, #9b59b6 0%, #8e44ad 100%);
}

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

.connection-lines {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.line {
    position: absolute;
    background: linear-gradient(90deg, transparent, rgba(0, 212, 255, 0.3), transparent);
    height: 2px;
    border-radius: 1px;
    animation: line-glow 3s ease-in-out infinite;
}

.line-1 {
    top: 25%;
    left: 25%;
    width: 30%;
    transform: rotate(45deg);
    animation-delay: 0s;
}

.line-2 {
    top: 25%;
    right: 25%;
    width: 30%;
    transform: rotate(-45deg);
    animation-delay: 0.5s;
}

.line-3 {
    bottom: 25%;
    left: 25%;
    width: 30%;
    transform: rotate(-45deg);
    animation-delay: 1s;
}

.line-4 {
    bottom: 25%;
    right: 25%;
    width: 30%;
    transform: rotate(45deg);
    animation-delay: 1.5s;
}

@keyframes line-glow {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 1; }
}

.about-mission {
    position: relative;
    z-index: 2;
}

.mission-card {
    background: linear-gradient(135deg, #00d4ff 0%, #4ecdc4 100%);
    border-radius: 30px;
    padding: 4rem;
    text-align: center;
    color: white;
    box-shadow: 0 25px 60px rgba(0, 212, 255, 0.3);
    position: relative;
    overflow: hidden;
}

.mission-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: rgba(255, 255, 255, 0.1);
    transform: rotate(45deg);
    animation: shimmer-mission 4s infinite;
}

@keyframes shimmer-mission {
    0% { transform: rotate(45deg) translateX(-100%); }
    100% { transform: rotate(45deg) translateX(100%); }
}

.mission-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
    position: relative;
    z-index: 2;
}

.mission-header h3 {
    font-size: 2.5rem;
    font-weight: 800;
    margin: 0;
}

.mission-icon {
    font-size: 3rem;
}

.mission-card p {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 2.5rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 2;
}

.mission-highlight {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
    z-index: 2;
}

.mission-highlight span {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 1rem 2rem;
    border-radius: 25px;
    font-weight: 600;
    font-size: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.mission-highlight span:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

/* Responsive для about секции */
@media (max-width: 768px) {
    .about-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .about-header h2 {
        font-size: 3rem;
    }
    
    .about-visual {
        height: 400px;
    }
    
    .main-circle {
        width: 150px;
        height: 150px;
    }
    
    .main-icon {
        font-size: 3rem;
    }
    
    .floating-element {
        padding: 1rem;
    }
    
    .floating-element span {
        font-size: 2rem;
    }
    
    .floating-element p {
        font-size: 0.8rem;
    }
    
    .mission-card {
        padding: 2.5rem;
    }
    
    .mission-header h3 {
        font-size: 2rem;
    }
    
    .mission-highlight {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .about-header h2 {
        font-size: 2.5rem;
    }
    
    .about-subtitle {
        font-size: 1.1rem;
    }
    
    .about-story {
        padding: 2rem;
    }
    
    .about-story h3 {
        font-size: 1.5rem;
    }
    
    .value-item {
        flex-direction: column;
        text-align: center;
    }
    
    .value-icon {
        margin: 0 auto 1rem;
    }
    
    .mission-card {
        padding: 2rem;
    }
    
    .mission-header h3 {
        font-size: 1.8rem;
    }
    
    .mission-card p {
        font-size: 1.1rem;
    }
}

/* Projects Section - Новый дизайн */
.projects {
    padding: 120px 0;
    background: var(--light-bg);
    position: relative;
}

.projects h2 {
    font-size: 3.5rem;
    font-weight: 800;
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 4rem;
    position: relative;
}

@media (max-width: 768px) {
    .projects h2 {
        font-size: 2rem;
    }
}

.projects h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 5px;
    background: var(--gradient-accent);
    border-radius: 3px;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
}

.project-card {
    background: var(--secondary-color);
    padding: 3rem;
    border-radius: 25px;
    box-shadow: var(--shadow-soft);
    transition: all 0.3s ease;
    border: 2px solid var(--primary-color);
    position: relative;
    overflow: hidden;
}

.project-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

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

.project-card:hover {
    transform: translateY(-15px);
    box-shadow: var(--shadow-medium);
    border-color: var(--accent-color);
}

.project-icon {
    font-size: 4rem;
    margin-bottom: 2rem;
    display: block;
    text-align: center;
}

.project-card h3 {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    text-align: center;
}

.project-card p {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 2rem;
    text-align: center;
}

.project-features {
    list-style: none;
}

.project-features li {
    color: var(--text-color);
    margin-bottom: 0.8rem;
    padding-left: 1.5rem;
    position: relative;
}

.project-features li::before {
    content: '✦';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

.featured-project {
    background: var(--gradient-primary);
    color: white;
    transform: scale(1.05);
    border-color: var(--accent-color);
}

.featured-project h3,
.featured-project p,
.featured-project li {
    color: white;
}

.featured-project li::before {
    color: var(--warning-color);
}

.challenge-example {
    background: rgba(255,255,255,0.1);
    padding: 2rem;
    border-radius: 15px;
    margin-top: 2rem;
}

.challenge-example h4 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    text-align: center;
}

.challenge-phases {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
}

.phase {
    flex: 1;
    text-align: center;
    background: rgba(255,255,255,0.2);
    padding: 1.5rem;
    border-radius: 15px;
}

.phase-number {
    display: block;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.phase-title {
    font-size: 0.9rem;
    opacity: 0.9;
}

/* Blog Section - Новый дизайн */
.blog {
    padding: 120px 0;
    background: var(--secondary-color);
    position: relative;
}

.blog h2 {
    font-size: 3.5rem;
    font-weight: 800;
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 1rem;
    position: relative;
}

.blog h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 5px;
    background: var(--gradient-secondary);
    border-radius: 3px;
}

.blog-main {
    margin-top: 4rem;
}

.blog-hero {
    background: var(--gradient-primary);
    border-radius: 30px;
    padding: 4rem;
    color: white;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    margin-bottom: 3rem;
    position: relative;
    overflow: hidden;
}

.blog-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: rgba(255,255,255,0.1);
    transform: rotate(45deg);
    animation: shimmer 3s infinite;
}

.blog-hero-badge {
    background: rgba(255,255,255,0.2);
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 2;
}

.blog-hero h3 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 2;
}

.blog-hero p {
    font-size: 1.2rem;
    line-height: 1.7;
    margin-bottom: 2rem;
    position: relative;
    z-index: 2;
}

.blog-hero-meta {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    position: relative;
    z-index: 2;
}

.blog-category {
    background: rgba(255,255,255,0.2);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 15px;
    font-size: 0.9rem;
    font-weight: 600;
}

.blog-read-time {
    background: rgba(255,255,255,0.2);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 15px;
    font-size: 0.9rem;
    font-weight: 600;
}

.blog-hero-cta {
    background: white;
    color: var(--primary-color);
    padding: 15px 30px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.blog-hero-cta:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-medium);
}

.blog-hero-image {
    height: 300px;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    z-index: 2;
}

.blog-secondary {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.blog-card {
    background: var(--light-bg);
    border-radius: 25px;
    overflow: hidden;
    border: 2px solid var(--primary-color);
    transition: all 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-medium);
}

.blog-card-image {
    height: 200px;
    background: var(--gradient-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
}

.blog-card-content {
    padding: 2rem;
}

.blog-card h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.blog-card p {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.blog-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.blog-card-footer .blog-category {
    background: rgba(0, 212, 255, 0.2);
    color: var(--primary-color);
    padding: 0.5rem 1rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    border: 1px solid var(--primary-color);
}

.blog-card-footer .read-more {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.blog-card-footer .read-more:hover {
    color: var(--primary-color);
}

.blog-newsletter {
    background: var(--gradient-primary);
    border-radius: 25px;
    padding: 3rem;
    text-align: center;
    color: white;
    margin-top: 4rem;
}

.newsletter-content h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.newsletter-content p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.newsletter-form {
    display: flex;
    gap: 1rem;
    max-width: 500px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.newsletter-form input {
    flex: 1;
    padding: 15px 20px;
    border: none;
    border-radius: 25px;
    font-size: 1rem;
    min-width: 200px;
}

.newsletter-form button {
    background: var(--gradient-secondary);
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.newsletter-form button:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-medium);
}

/* Убираю стили для stats элементов */
.hero-stats,
.stat-item,
.stat-number,
.stat-label,
.about-stats,
.stat-card {
    display: none;
}

/* Responsive для blog */
@media (max-width: 768px) {
    .blog-hero {
        grid-template-columns: 1fr;
        padding: 2rem;
        gap: 2rem;
    }
    
    .blog-hero h3 {
        font-size: 2rem;
    }
    
    .blog-hero-meta {
        flex-direction: column;
        gap: 1rem;
    }
    
    .blog-secondary {
        grid-template-columns: 1fr;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .newsletter-form input,
    .newsletter-form button {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .blog-hero {
        padding: 1.5rem;
    }
    
    .blog-hero h3 {
        font-size: 1.8rem;
    }
    
    .blog-hero p {
        font-size: 1rem;
    }
    
    .blog-card-content {
        padding: 1.5rem;
    }
}

/* Motivation Section - Новый дизайн */
.motivation {
    padding: 120px 0;
    background: var(--light-bg);
    position: relative;
}

.motivation h2 {
    font-size: 3.5rem;
    font-weight: 800;
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 4rem;
    position: relative;
}

@media (max-width: 768px) {
    .motivation h2 {
        font-size: 2rem;
    }
}

.motivation h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 5px;
    background: var(--gradient-accent);
    border-radius: 3px;
}

.motivation-content {
    max-width: 1200px;
    margin: 0 auto;
}

.testimonial-main {
    background: var(--gradient-primary);
    border-radius: 30px;
    padding: 3rem;
    color: white;
    position: relative;
    margin-bottom: 1rem;
}

.quote-icon {
    font-size: 4rem;
    color: rgba(255,255,255,0.3);
    position: absolute;
    top: 1rem;
    right: 2rem;
}

.testimonial-content p {
    font-size: 1.2rem;
    line-height: 1.7;
    margin-bottom: 2rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--gradient-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
}

.author-info h4 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.2rem;
}

.author-info span {
    opacity: 0.9;
    font-size: 0.9rem;
}

.rating {
    margin-top: 0.5rem;
}

.testimonials-grid {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.testimonial-card {
    background: var(--secondary-color);
    padding: 2rem;
    border-radius: 20px;
    border: 2px solid var(--primary-color);
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-color);
}

.testimonial-card p {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-style: italic;
}

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

.testimonial-footer .author {
    color: var(--primary-color);
    font-weight: 600;
}

.testimonial-footer .role {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* Ressources Section - Заменяет Services */
.ressources {
    padding: 120px 0;
    background: var(--secondary-color);
    position: relative;
}

.ressources h2 {
    font-size: 3.5rem;
    font-weight: 800;
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 4rem;
    position: relative;
}

.ressources h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 5px;
    background: var(--gradient-primary);
    border-radius: 3px;
}

.ressources-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
}

.ressource-card {
    background: var(--light-bg);
    padding: 3.5rem;
    border-radius: 30px;
    box-shadow: var(--shadow-soft);
    transition: all 0.3s ease;
    border: 2px solid var(--primary-color);
    position: relative;
    overflow: hidden;
    text-align: center;
}

.ressource-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

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

.ressource-card:hover {
    transform: translateY(-15px);
    box-shadow: var(--shadow-medium);
    border-color: var(--accent-color);
}

.ressource-icon {
    font-size: 5rem;
    margin-bottom: 2rem;
    display: block;
}

.ressource-card h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.ressource-badge {
    background: var(--gradient-accent);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 2rem;
}

.ressource-features {
    list-style: none;
    margin-bottom: 2.5rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    text-align: left;
}

.feature-item .check {
    color: var(--success-color);
    font-weight: bold;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.feature-item span:last-child {
    color: var(--text-color);
    font-size: 1rem;
}

.ressource-card.featured {
    background: var(--gradient-primary);
    color: white;
    transform: scale(1.05);
    border-color: var(--accent-color);
}

.ressource-card.featured h3,
.ressource-card.featured .feature-item span:last-child {
    color: white;
}

.ressource-card.featured .check {
    color: var(--warning-color);
}

.ressource-cta {
    background: var(--gradient-accent);
    color: white;
    padding: 15px 35px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-soft);
    display: inline-block;
    border: none;
}

.ressource-cta.featured {
    background: var(--gradient-secondary);
}

.ressource-cta:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-medium);
}

.ressources-guarantee {
    background: var(--light-bg);
    border-radius: 25px;
    margin-top: 4rem;
    padding: 3rem;
}

.guarantee-content h3 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
    text-align: center;
}

.guarantee-content p {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.guarantee-badge {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.guarantee-badge span {
    background: var(--gradient-primary);
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: 20px;
    font-weight: 600;
}

/* Responsive для ressources */
@media (max-width: 768px) {
    .ressources-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .ressource-card {
        padding: 2.5rem;
    }
    
    .ressource-card.featured {
        transform: none;
    }
    
    .guarantee-badge {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .ressource-card {
        padding: 2rem;
    }
    
    .ressource-icon {
        font-size: 4rem;
    }
    
    .ressource-card h3 {
        font-size: 1.5rem;
    }
    
    .guarantee-content {
        padding: 2rem;
    }
}

/* Team Section - Новый дизайн */
.team {
    padding: 120px 0;
    background: var(--light-bg);
    position: relative;
}

.team h2 {
    font-size: 3.5rem;
    font-weight: 800;
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 4rem;
    position: relative;
}

.team h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 5px;
    background: var(--gradient-secondary);
    border-radius: 3px;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-top: 4rem;
}

.team-member {
    background: var(--light-bg);
    border-radius: 25px;
    padding: 3rem;
    text-align: center;
    box-shadow: var(--shadow-soft);
    border: 2px solid var(--primary-color);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.team-member::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.team-member:hover::before {
    transform: scaleX(1);
}

.team-member:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-medium);
    border-color: var(--accent-color);
}

.team-member.featured {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    align-items: center;
    background: linear-gradient(135deg, var(--light-bg) 0%, rgba(0, 212, 255, 0.05) 100%);
}

.member-photo {
    text-align: center;
}

.photo-placeholder {
    width: 150px;
    height: 150px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    margin: 0 auto 1rem;
    box-shadow: var(--shadow-medium);
    transition: all 0.3s ease;
}

.team-member:hover .photo-placeholder {
    transform: scale(1.05);
    box-shadow: var(--shadow-strong);
}

.member-badge {
    background: var(--gradient-secondary);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 1rem;
}

.member-info h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.member-info .role {
    font-size: 1.1rem;
    color: var(--accent-color);
    font-weight: 600;
    margin-bottom: 1rem;
}

.member-info .bio {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.member-credentials {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

.credential {
    background: var(--secondary-color);
    color: var(--primary-color);
    padding: 0.5rem 1rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    border: 1px solid var(--primary-color);
    transition: all 0.3s ease;
}

.credential:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
}

/* Responsive для новых секций */
@media (max-width: 768px) {
    .projects-showcase {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .team-member.featured {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .member-credentials {
        justify-content: center;
    }
    
    .project-features-list {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .feature-card,
    .team-member {
        padding: 2rem;
    }
    
    .project-main {
        padding: 2rem;
    }
    
    .project-hero h3 {
        font-size: 1.5rem;
    }
    
    .feature-tag {
        font-size: 0.8rem;
        padding: 0.4rem 0.8rem;
    }
}

/* Features Section */
.features {
    padding: 120px 0;
    background: var(--secondary-color);
    position: relative;
}

.features h2 {
    font-size: 3.5rem;
    font-weight: 800;
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 1rem;
    position: relative;
}

.features h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 5px;
    background: var(--gradient-primary);
    border-radius: 3px;
}

.features p {
    text-align: center;
    font-size: 1.2rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto 4rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    margin-top: 4rem;
}

.feature-card {
    background: var(--light-bg);
    padding: 3rem;
    border-radius: 25px;
    text-align: center;
    box-shadow: var(--shadow-soft);
    transition: all 0.3s ease;
    border: 2px solid var(--primary-color);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

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

.feature-card:hover {
    transform: translateY(-15px);
    box-shadow: var(--shadow-medium);
    border-color: var(--accent-color);
}

.feature-icon {
    position: relative;
    margin-bottom: 2rem;
    display: flex;
    justify-content: center;
}

.icon-bg {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    position: relative;
}

.feature-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.feature-card p {
    color: #ffffff;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.feature-highlight {
    background: var(--gradient-secondary);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    display: inline-block;
}

/* Projects Section - Переделан */
.projects {
    padding: 120px 0;
    background: var(--light-bg);
    position: relative;
}


.projects h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 5px;
    background: var(--gradient-accent);
    border-radius: 3px;
}

.projects p {
    text-align: center;
    font-size: 1.2rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto 4rem;
}

.projects-showcase {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    margin-top: 4rem;
}

.project-main {
    background: var(--gradient-primary);
    border-radius: 30px;
    padding: 3rem;
    color: white;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-medium);
}

.project-main::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: rgba(255,255,255,0.1);
    transform: rotate(45deg);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% { transform: rotate(45deg) translateX(-100%); }
    100% { transform: rotate(45deg) translateX(100%); }
}

.project-badge {
    background: rgba(255,255,255,0.2);
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 2;
}

.project-hero h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 2;
}

.project-hero p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 2rem;
    position: relative;
    z-index: 2;
}

.project-features-list {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
    position: relative;
    z-index: 2;
}

.feature-tag {
    background: rgba(255,255,255,0.2);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 15px;
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

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

.project-cta {
    background: white;
    color: var(--primary-color);
    padding: 15px 30px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.project-cta:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-medium);
}

.projects-sidebar {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.projects-sidebar .project-card {
    background: var(--secondary-color);
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    border: 2px solid var(--primary-color);
    transition: all 0.3s ease;
    box-shadow: var(--shadow-soft);
}

.projects-sidebar .project-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-medium);
}

.projects-sidebar .project-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.projects-sidebar .project-card h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.projects-sidebar .project-card p {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.duration {
    background: var(--gradient-accent);
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 10px;
    font-size: 0.8rem;
    font-weight: 600;
    display: inline-block;
}

/* Team Section - Переделан */
.team {
    padding: 120px 0;
    background: var(--secondary-color);
    position: relative;
}

.team h2 {
    font-size: 3.5rem;
    font-weight: 800;
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 1rem;
    position: relative;
}

.team h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 5px;
    background: var(--gradient-secondary);
    border-radius: 3px;
}

.team p {
    text-align: center;
    font-size: 1.2rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto 4rem;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    margin-top: 4rem;
}

.team-member {
    background: var(--light-bg);
    border-radius: 25px;
    padding: 3rem;
    text-align: center;
    box-shadow: var(--shadow-soft);
    border: 2px solid var(--primary-color);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.team-member::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.team-member:hover::before {
    transform: scaleX(1);
}

.team-member:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-medium);
    border-color: var(--accent-color);
}

.team-member.featured {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    align-items: center;
    background: linear-gradient(135deg, var(--light-bg) 0%, rgba(0, 212, 255, 0.05) 100%);
}

.member-photo {
    text-align: center;
}

.photo-placeholder {
    width: 150px;
    height: 150px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    margin: 0 auto 1rem;
    box-shadow: var(--shadow-medium);
    transition: all 0.3s ease;
}

.team-member:hover .photo-placeholder {
    transform: scale(1.05);
    box-shadow: var(--shadow-strong);
}

.member-badge {
    background: var(--gradient-secondary);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 1rem;
}

.member-info h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.member-info .role {
    font-size: 1.1rem;
    color: var(--accent-color);
    font-weight: 600;
    margin-bottom: 1rem;
}

.member-info .bio {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.member-credentials {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

.credential {
    background: var(--secondary-color);
    color: var(--primary-color);
    padding: 0.5rem 1rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    border: 1px solid var(--primary-color);
    transition: all 0.3s ease;
}

.credential:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
}

/* Responsive для новых секций */
@media (max-width: 768px) {
    .projects-showcase {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .team-member.featured {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .member-credentials {
        justify-content: center;
    }
    
    .project-features-list {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .feature-card,
    .team-member {
        padding: 2rem;
    }
    
    .project-main {
        padding: 2rem;
    }
    
    .project-hero h3 {
        font-size: 1.5rem;
    }
    
    .feature-tag {
        font-size: 0.8rem;
        padding: 0.4rem 0.8rem;
    }
}

/* Features Responsive */
@media (max-width: 768px) {
    .feature-icon {
        margin-bottom: 1.5rem;
    }
    
    .icon-bg {
        width: 70px;
        height: 70px;
        font-size: 2rem;
    }
    
    .feature-card h3 {
        font-size: 1.3rem;
    }
    
    .feature-card p {
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .feature-icon {
        margin-bottom: 1.2rem;
    }
    
    .icon-bg {
        width: 60px;
        height: 60px;
        font-size: 1.8rem;
    }
    
    .feature-card h3 {
        font-size: 1.2rem;
    }
    
    .feature-card p {
        font-size: 0.9rem;
    }
    
    .feature-highlight {
        padding: 0.4rem 1.2rem;
        font-size: 0.8rem;
    }
}

/* Contact Section Updates */
.contact {
    padding: 120px 0;
    background: var(--light-bg);
    position: relative;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 1000px;
    margin: 0 auto;
    margin-top: 4rem;
}

.contact-info {
    display: grid;
    gap: 2rem;
}

.contact-card {
    background: var(--secondary-color);
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    border: 2px solid var(--primary-color);
    transition: all 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-color);
}

.contact-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.contact-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.contact-card p {
    color: var(--text-color);
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.response-time {
    color: var(--text-light);
    font-size: 0.9rem;
}

.contact-form-container {
    background: var(--secondary-color);
    padding: 3rem;
    border-radius: 25px;
    border: 2px solid var(--primary-color);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group {
    margin-bottom: 2rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-color);
    font-weight: 600;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid var(--border-color);
    border-radius: 15px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: var(--light-bg);
    color: var(--text-color);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(0, 212, 255, 0.1);
}

.submit-btn {
    background: var(--gradient-primary);
    color: white;
    padding: 15px 40px;
    border: none;
    border-radius: 25px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 1rem;
    margin: 0 auto;
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.btn-icon {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

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

/* Contact Responsive Design */
@media (max-width: 1024px) {
    .contact-content {
        gap: 3rem;
        max-width: 900px;
    }
    
    .contact-form-container {
        padding: 2.5rem;
    }
    
    .form-row {
        gap: 1.2rem;
    }
}

@media (max-width: 768px) {
    .contact {
        padding: 80px 0;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        max-width: 600px;
        margin-top: 3rem;
    }
    
    .contact-info {
        order: 1;
    }
    
    .contact-form-container {
        order: 2;
        padding: 2rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .contact-card {
        padding: 1.5rem;
    }
    
    .contact-icon {
        font-size: 2.5rem;
    }
    
    .contact-card h3 {
        font-size: 1.2rem;
    }
    
    .contact-card p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .contact {
        padding: 60px 0;
    }
    
    .contact-content {
        gap: 2rem;
        margin-top: 2rem;
        padding: 0 1rem;
    }
    
    .contact-form-container {
        padding: 1.5rem;
    }
    
    .contact-card {
        padding: 1.2rem;
    }
    
    .contact-icon {
        font-size: 2rem;
    }
    
    .contact-card h3 {
        font-size: 1.1rem;
    }
    
    .contact-card p {
        font-size: 0.9rem;
    }
    
    .form-group {
        margin-bottom: 1.5rem;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 0.8rem;
        font-size: 0.95rem;
    }
    
    .submit-btn {
        padding: 12px 30px;
        font-size: 1rem;
        width: 100%;
        justify-content: center;
    }
}

/* Footer Updates */
.footer {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: #ffffff;
    position: relative;
    overflow: hidden;
    margin-top: 4rem;
}

.footer-waves {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100px;
    overflow: hidden;
}

.footer-waves .wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 200%;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 120' preserveAspectRatio='none'%3E%3Cpath d='M0,0V46.29c47.79,22.2,103.59,32.17,158,28,70.36-5.37,136.33-33.31,206.8-37.5C438.64,32.43,512.34,53.67,583,72.05c69.27,18,138.3,24.88,209.4,13.08,36.26-6.69,69.9-9.94,104.6-9.94V0Z' opacity='.25' fill='%23ffffff'/%3E%3Cpath d='M0,0V15.81C13,36.92,27.64,56.86,47.69,72.05,99.41,111.27,165,111,224.58,91.58c31.15-10.15,60.09-26.07,89.67-39.8,40.92-19,84.73-46,130.83-49.67,36.26-2.85,70.9,9.42,98.6,31.56,31.77,25.39,62.32,62,103.63,73,40.44,10.79,81.35-6.69,119.13-24.28s75.16-39,116.92-43.05c59.73-5.85,113.28,22.88,168.9,38.84,30.2,8.66,59,6.17,87.09-7.5,22.43-10.89,48-26.93,60.65-49.24V0Z' opacity='.5' fill='%23ffffff'/%3E%3Cpath d='M0,0V5.63C149.93,59,314.09,71.32,475.83,42.57c43-7.64,84.23-20.12,127.61-26.46,59-8.63,112.48,12.24,165.56,35.4C827.93,77.22,886,95.24,951.2,90c86.53-7,172.46-45.71,248.8-84.81V0Z' fill='%23ffffff'/%3E%3C/svg%3E") repeat-x;
    animation: wave 25s cubic-bezier(.55,.5,.45,.5) infinite;
}

.footer-waves .wave-1 {
    opacity: 0.7;
    animation-delay: 0s;
}

.footer-waves .wave-2 {
    opacity: 0.5;
    animation-delay: -5s;
}

.footer-waves .wave-3 {
    opacity: 0.2;
    animation-delay: -10s;
}

@keyframes wave {
    0% { transform: translateX(0); }
    50% { transform: translateX(-25%); }
    100% { transform: translateX(-50%); }
}

.footer-main {
    position: relative;
    z-index: 2;
    padding: 4rem 0 2rem;
}

.footer-hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    margin-bottom: 3rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.brand-symbol {
    position: relative;
    width: 80px;
    height: 80px;
}

.symbol-core {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    background: linear-gradient(45deg, var(--accent-color), var(--secondary-color));
    border-radius: 50%;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
}

.symbol-rings {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.symbol-rings .ring {
    position: absolute;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    animation: ringRotate 10s linear infinite;
}

.ring-1 {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    animation-delay: 0s;
}

.ring-2 {
    top: 10px;
    left: 10px;
    width: calc(100% - 20px);
    height: calc(100% - 20px);
    animation-delay: -3s;
}

.ring-3 {
    top: 20px;
    left: 20px;
    width: calc(100% - 40px);
    height: calc(100% - 40px);
    animation-delay: -6s;
}

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

.brand-text h2 {
    font-size: 2rem;
    font-weight: 700;
    margin: 0;
    background: linear-gradient(45deg, #ffffff, var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.brand-tagline {
    font-size: 1rem;
    opacity: 0.8;
    margin: 0.5rem 0 0;
    font-style: italic;
}

.footer-cta h3 {
    font-size: 1.5rem;
    margin: 0 0 1rem;
    color: var(--accent-color);
}

.footer-cta p {
    margin: 0 0 1.5rem;
    opacity: 0.9;
    line-height: 1.6;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background: linear-gradient(45deg, var(--accent-color), var(--secondary-color));
    color: #ffffff;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.button-arrow {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

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

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

.footer-column {
    padding: 1rem;
}

.column-title {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.2rem;
    margin: 0 0 1.5rem;
    color: var(--accent-color);
    font-weight: 600;
}

.title-icon {
    font-size: 1.5rem;
}

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

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

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
}

.footer-links a:hover {
    color: var(--accent-color);
    transform: translateX(5px);
}

.footer-links a::before {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-color);
    transition: width 0.3s ease;
}

.footer-links a:hover::before {
    width: 100%;
}

.footer-social {
    text-align: center;
    margin-bottom: 3rem;
}

.footer-social h4 {
    font-size: 1.3rem;
    margin: 0 0 1.5rem;
    color: var(--accent-color);
}

.social-grid {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.social-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    text-decoration: none;
    color: #ffffff;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    min-width: 80px;
}

.social-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.2);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.social-icon {
    font-size: 1.5rem;
}

.social-item span {
    font-size: 0.8rem;
    font-weight: 500;
}

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

.footer-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
}

.divider-line {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.5), transparent);
    flex: 1;
    max-width: 100px;
}

.divider-symbol {
    margin: 0 1rem;
    font-size: 1.5rem;
    color: var(--accent-color);
}

.footer-legal {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.legal-main {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.copyright {
    margin: 0;
    font-weight: 600;
}

.location {
    margin: 0;
    opacity: 0.8;
    font-size: 0.9rem;
}

.legal-links {
    display: flex;
    gap: 1rem;
    align-items: center;
    flex-wrap: wrap;
}

.legal-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.legal-links a:hover {
    color: var(--accent-color);
}

.separator {
    color: rgba(255, 255, 255, 0.5);
}

.footer-newsletter {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.newsletter-content h4 {
    font-size: 1.3rem;
    margin: 0 0 1rem;
    color: var(--accent-color);
}

.newsletter-content p {
    margin: 0 0 1.5rem;
    opacity: 0.9;
    line-height: 1.6;
}

.newsletter-form {
    max-width: 400px;
    margin: 0 auto;
}

.form-input {
    display: flex;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    padding: 0.5rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.form-input input {
    flex: 1;
    background: transparent;
    border: none;
    color: #ffffff;
    padding: 0.8rem 1rem;
    outline: none;
    font-size: 1rem;
}

.form-input input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.newsletter-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 1.5rem;
    background: linear-gradient(45deg, var(--accent-color), var(--secondary-color));
    color: #ffffff;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.newsletter-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.btn-sparkle {
    font-size: 1rem;
    animation: sparkle 2s ease-in-out infinite;
}

@keyframes sparkle {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.7; transform: scale(1.1); }
}

/* Responsive Footer */
@media (max-width: 768px) {
    .footer-hero {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .footer-content {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 1.5rem;
    }
    
    .footer-legal {
        flex-direction: column;
        text-align: center;
    }
    
    .legal-links {
        justify-content: center;
    }
    
    .social-grid {
        gap: 0.5rem;
    }
    
    .social-item {
        min-width: 70px;
        padding: 0.8rem;
    }
    
    .form-input {
        flex-direction: column;
        border-radius: 15px;
    }
    
    .newsletter-btn {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .footer-main {
        padding: 2rem 0 1rem;
    }
    
    .footer-hero {
        padding: 1.5rem;
        margin-bottom: 2rem;
    }
    
    .brand-text h2 {
        font-size: 1.5rem;
    }
    
    .footer-cta h3 {
        font-size: 1.3rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .footer-column {
        text-align: center;
    }
}

/* Hero Buttons Responsive */
.hero-buttons {
    display: flex;
    gap: 1.5rem;
    margin-top: 2rem;
    flex-wrap: wrap;
    justify-content: center;
}

.hero-buttons .cta-button {
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    min-width: 180px;
    justify-content: center;
}

.hero-buttons .cta-button.primary {
    background: linear-gradient(45deg, var(--accent-color), var(--secondary-color));
    color: #ffffff;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.hero-buttons .cta-button.primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.4);
}

.hero-buttons .cta-button.secondary {
    background: transparent;
    color: var(--accent-color);
    border: 2px solid var(--accent-color);
    backdrop-filter: blur(10px);
}

.hero-buttons .cta-button.secondary:hover {
    background: var(--accent-color);
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 0;
        flex-direction: column;
        background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
        width: 100%;
        height: 100vh;
        text-align: center;
        transition: 0.3s;
        padding-top: 80px;
        backdrop-filter: blur(10px);
        z-index: 999;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu li {
        margin: 1.5rem 0;
    }
    
    .nav-menu .nav-link {
        font-size: 1.2rem;
        padding: 1rem 2rem;
        display: block;
        color: #ffffff;
        transition: all 0.3s ease;
    }
    
    .nav-menu .nav-link:hover {
        background: rgba(255, 255, 255, 0.1);
        border-radius: 10px;
        transform: translateX(10px);
    }
    
    /* Hero responsive */
    .hero h2 {
        font-size: 2.5rem;
        line-height: 1.2;
    }
    
    .hero p {
        font-size: 1.1rem;
        max-width: 90%;
        margin: 0 auto;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
        width: 100%;
        max-width: 300px;
        margin: 2rem auto 0;
    }
    
    .hero-buttons .cta-button {
        width: 100%;
        padding: 1.2rem 2rem;
        font-size: 1rem;
        min-width: auto;
    }
}

@media (max-width: 480px) {
    .hero h2 {
        font-size: 2rem;
        padding: 0 1rem;
    }
    
    .hero p {
        font-size: 1rem;
        padding: 0 1.5rem;
    }
    
    .hero-buttons {
        padding: 0 1rem;
    }
    
    .hero-buttons .cta-button {
        padding: 1rem 1.5rem;
        font-size: 0.95rem;
    }
    
    .nav-menu .nav-link {
        font-size: 1.1rem;
        padding: 0.8rem 1.5rem;
    }
}

/* Smooth scrolling for mobile menu */
.nav-menu {
    scroll-behavior: smooth;
}

/* Prevent body scroll when mobile menu is open */
body.menu-open {
    overflow: hidden;
}

/* Enhanced Mobile Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
}

.nav-brand {
    display: flex;
    align-items: center;
}

.brand-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: var(--primary-color);
    gap: 1rem;
}

.brand-logo {
    width: 40px;
    height: 40px;
    position: relative;
}

.logo-circle {
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, var(--accent-color), var(--secondary-color));
    border-radius: 50%;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.logo-line {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 2px;
    background: #ffffff;
    border-radius: 1px;
}

.nav-brand h1 {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0;
    background: linear-gradient(45deg, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    position: relative;
}

.nav-link:hover {
    color: var(--accent-color);
    background: rgba(0, 0, 0, 0.05);
}

.nav-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--accent-color);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

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

/* Mobile Navigation Overlay */
.nav-menu.active {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    box-shadow: 0 0 50px rgba(0, 0, 0, 0.3);
}

.nav-menu.active::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Cdefs%3E%3Cpattern id='grain' width='100' height='100' patternUnits='userSpaceOnUse'%3E%3Ccircle cx='50' cy='50' r='1' fill='%23ffffff' opacity='0.1'/%3E%3C/pattern%3E%3C/defs%3E%3Crect width='100' height='100' fill='url(%23grain)'/%3E%3C/svg%3E");
    opacity: 0.1;
    pointer-events: none;
}

/* Enhanced Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding-top: 80px;
}

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

.hero-badge {
    display: inline-block;
    background: linear-gradient(45deg, var(--accent-color), var(--secondary-color));
    color: #ffffff;
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 2rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    animation: badgeFloat 3s ease-in-out infinite;
}

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

.hero h2 {
    font-size: 3.5rem;
    font-weight: 800;
    margin: 0 0 1.5rem;
    background: linear-gradient(45deg, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
}

.hero p {
    font-size: 1.3rem;
    color: var(--text-color);
    margin: 0 0 2rem;
    line-height: 1.6;
    opacity: 0.9;
}

/* Hero Background Effects */
.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(120, 119, 198, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 119, 198, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(120, 219, 255, 0.3) 0%, transparent 50%);
    animation: particleFloat 20s ease-in-out infinite;
}

@keyframes particleFloat {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
}

.hero-grid {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    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: 50px 50px;
    animation: gridMove 30s linear infinite;
}

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

/* Loading Animation */
.hero.loaded .hero-content {
    animation: heroSlideIn 1s ease-out;
}

@keyframes heroSlideIn {
    0% {
        opacity: 0;
        transform: translateY(50px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Enhanced Responsive Design */
@media (max-width: 1024px) {
    .hero h2 {
        font-size: 3rem;
    }
    
    .hero p {
        font-size: 1.2rem;
    }
    
    .hero-buttons {
        gap: 1.2rem;
    }
}

@media (max-width: 768px) {
    .navbar .container {
        padding: 1rem;
    }
    
    .nav-brand h1 {
        font-size: 1.3rem;
    }
    
    .brand-logo {
        width: 35px;
        height: 35px;
    }
    
    .hero {
        min-height: 90vh;
        padding-top: 100px;
    }
    
    .hero-content {
        padding: 1.5rem;
    }
    
    .hero h2 {
        font-size: 2.5rem;
        padding: 0 1rem;
    }
    
    .hero p {
        font-size: 1.1rem;
        padding: 0 1.5rem;
    }
    
    .hero-badge {
        font-size: 0.8rem;
        padding: 0.4rem 1.2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
        width: 100%;
        max-width: 300px;
        margin: 2rem auto 0;
    }
    
    .hero-buttons .cta-button {
        width: 100%;
        padding: 1.2rem 2rem;
        font-size: 1rem;
        min-width: auto;
    }
}

@media (max-width: 480px) {
    .navbar .container {
        padding: 0.8rem;
    }
    
    .nav-brand h1 {
        font-size: 1.1rem;
    }
    
    .brand-logo {
        width: 30px;
        height: 30px;
    }
    
    .hero {
        min-height: 80vh;
        padding-top: 120px;
    }
    
    .hero-content {
        padding: 1rem;
    }
    
    .hero h2 {
        font-size: 2rem;
        padding: 0 0.5rem;
    }
    
    .hero p {
        font-size: 1rem;
        padding: 0 1rem;
    }
    
    .hero-buttons {
        padding: 0 0.5rem;
    }
    
    .hero-buttons .cta-button {
        padding: 1rem 1.5rem;
        font-size: 0.95rem;
    }
    
    .nav-menu .nav-link {
        font-size: 1.1rem;
        padding: 0.8rem 1.5rem;
    }
}