* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --glass-bg: rgba(255, 255, 255, 0.08);
    --glass-border: rgba(255, 255, 255, 0.15);
    --accent-blue: #76a9fa;
    --accent-blue-dark: #4f83f7;
    --accent-glow: rgba(118, 169, 250, 0.3);
    --text-primary: #ffffff;
    --text-secondary: rgba(255, 255, 255, 0.8);
    --text-tertiary: rgba(255, 255, 255, 0.6);
}

body {
    font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
    background: linear-gradient(135deg, #0a0a0f 0%, #151520 25%, #1a1a2e 50%, #16213e 75%, #0f3460 100%);
    background-attachment: fixed;
    color: var(--text-primary);
    overflow-x: hidden;
    min-height: 100vh;
    line-height: 1.6;
}

p a {
	color: #FFF;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Navigation */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 1rem 0;
    transition: all 0.3s ease;
    background: rgba(15, 25, 35, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

nav.scrolled {
    background: rgba(15, 25, 35, 0.95);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2rem;
    flex-wrap: wrap;
    gap: 1rem;
}

@media (max-width: 1000px) {
    .nav-container {
        justify-content: center;
        flex-direction: column;
        gap: 1.5rem;
        padding: 1rem 2rem;
    }
    
    .logo {
        order: 1;
    }
    
    .nav-links {
        order: 2;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .mobile-menu-btn {
        display: none !important;
    }
    
    .hero {
        padding-top: 240px;
    }
}

@media (max-width: 880px) {
    .hero {
        padding-top: 160px;
    }
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    color: inherit;
}

.logo-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--accent-blue), var(--accent-blue-dark));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px var(--accent-glow);
    font-size: 1.2rem;
}

.logo-text {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-primary);
    letter-spacing: -0.5px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 1rem;
}

.nav-links a {
    color: var(--text-secondary);
    text-decoration: none;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    transition: all 0.3s ease;
    font-weight: 500;
    letter-spacing: 0.5px;
    position: relative;
    border: 2px solid transparent;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--accent-blue);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-links a:hover {
    color: var(--accent-blue);
    border-color: var(--accent-blue);
    transform: translateY(-2px);
    background: rgba(118, 169, 250, 0.1);
}

.nav-links a:hover::after {
    width: 60%;
}

.nav-links a.active {
    color: var(--accent-blue);
    background: rgba(118, 169, 250, 0.15);
    border-color: var(--accent-blue);
    box-shadow: 0 4px 15px var(--accent-glow);
}

/* Mobile menu */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
    padding: 0.5rem;
}

.mobile-menu-btn span {
    width: 25px;
    height: 3px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

.mobile-nav {
    position: fixed;
    top: 80px;
    left: 0;
    width: 100%;
    background: rgba(15, 25, 35, 0.95);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    transform: translateY(-100%);
    transition: transform 0.3s ease;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0;
    pointer-events: none;
}

.mobile-nav.active {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
}

.mobile-nav ul {
    list-style: none;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.mobile-nav a {
    color: var(--text-secondary);
    text-decoration: none;
    padding: 1rem;
    border-radius: 15px;
    transition: all 0.3s ease;
    text-align: center;
    font-weight: 500;
    display: block;
    position: relative;
    border: 2px solid transparent;
}

.mobile-nav a:hover {
    color: var(--accent-blue);
    background: rgba(118, 169, 250, 0.1);
    border-color: var(--accent-blue);
}

.mobile-nav a.active {
    color: var(--accent-blue);
    background: rgba(118, 169, 250, 0.15);
    border-color: var(--accent-blue);
}

/* Section styling */
section {
    padding: 5rem 0;
    position: relative;
}

.section-header {
    text-align: center;
    margin-top: 4rem;
    margin-bottom: 4rem;
}

.section-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
    letter-spacing: -1px;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

/* Hero section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 160px 2rem 0;
    position: relative;
    overflow: hidden;
}

/* Animated background elements */
.hero-bg-animation {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    z-index: 1;
}

.floating-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.6;
    animation: float 25s infinite ease-in-out;
}

.shape-1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(118, 169, 250, 0.4) 0%, transparent 70%);
    top: -200px;
    left: -200px;
    animation-delay: 0s;
}

.shape-2 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(79, 131, 247, 0.3) 0%, transparent 70%);
    top: 50%;
    right: -150px;
    animation-delay: 7s;
}

.shape-3 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(118, 169, 250, 0.35) 0%, transparent 70%);
    bottom: -100px;
    left: 20%;
    animation-delay: 14s;
}

/* Geometric shapes */
.geo-shape {
    position: absolute;
    opacity: 0.1;
    animation: rotate-float 30s infinite linear;
}

.geo-1 {
    width: 300px;
    height: 300px;
    top: 20%;
    right: 10%;
    background: linear-gradient(45deg, var(--accent-blue) 0%, transparent 100%);
    clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
}

.geo-2 {
    width: 250px;
    height: 250px;
    bottom: 20%;
    left: 5%;
    background: linear-gradient(135deg, var(--accent-blue-dark) 0%, transparent 100%);
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    animation-delay: -10s;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) scale(1) rotate(0deg);
    }
    25% {
        transform: translate(100px, -80px) scale(1.1) rotate(90deg);
    }
    50% {
        transform: translate(-60px, 60px) scale(0.9) rotate(180deg);
    }
    75% {
        transform: translate(80px, 100px) scale(1.05) rotate(270deg);
    }
}

@keyframes rotate-float {
    0% {
        transform: rotate(0deg) translateY(0);
    }
    50% {
        transform: rotate(180deg) translateY(-50px);
    }
    100% {
        transform: rotate(360deg) translateY(0);
    }
}

.particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--accent-blue);
    border-radius: 50%;
    opacity: 0;
    animation: particle-rise 10s infinite ease-out;
}

@keyframes particle-rise {
    0% {
        opacity: 0;
        transform: translateY(100vh) scale(0);
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        transform: translateY(-100px) scale(1);
    }
}

/* Generate multiple particles */
.particle:nth-child(1) { left: 10%; animation-delay: 0s; }
.particle:nth-child(2) { left: 20%; animation-delay: 1s; }
.particle:nth-child(3) { left: 30%; animation-delay: 2s; }
.particle:nth-child(4) { left: 40%; animation-delay: 3s; }
.particle:nth-child(5) { left: 50%; animation-delay: 4s; }
.particle:nth-child(6) { left: 60%; animation-delay: 5s; }
.particle:nth-child(7) { left: 70%; animation-delay: 6s; }
.particle:nth-child(8) { left: 80%; animation-delay: 7s; }
.particle:nth-child(9) { left: 90%; animation-delay: 8s; }
.particle:nth-child(10) { left: 95%; animation-delay: 9s; }

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 25% 25%, var(--accent-glow) 0%, transparent 50%);
    animation: hero-glow 8s ease-in-out infinite;
    z-index: 1;
}

@keyframes hero-glow {
    0%, 100% { 
        transform: scale(1) rotate(0deg);
        opacity: 0.7;
    }
    50% { 
        transform: scale(1.1) rotate(2deg);
        opacity: 1;
    }
}

.hero-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
}

.hero h1 {
    font-size: clamp(2.5rem, 8vw, 5rem);
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
    line-height: 1.1;
    letter-spacing: -2px;
    animation: slideInUp 1s ease-out;
}

.hero .subtitle {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    color: var(--text-secondary);
    font-weight: 300;
    letter-spacing: 1px;
    animation: slideInUp 1s ease-out 0.3s both;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 2rem;
    animation: slideInUp 1s ease-out 0.6s both;
}

.cta-primary, .cta-secondary {
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    display: inline-block;
}

.cta-primary {
    background: linear-gradient(135deg, var(--accent-blue), var(--accent-blue-dark));
    color: white;
    box-shadow: 0 8px 25px var(--accent-glow);
}

.cta-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px var(--accent-glow);
}

.cta-secondary {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    color: white;
}

.cta-secondary:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: translateY(-3px);
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Stats */
.stats-section {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 4rem;
    flex-wrap: wrap;
}

.stat-card {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    min-width: 150px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-primary);
    display: block;
}

.stat-label {
    font-size: 1rem;
    color: var(--text-secondary);
    margin-top: 0.5rem;
}



@media (max-width: 768px) {
    .nav-container {
        flex-direction: row;
        justify-content: space-between;
    }
    
    .logo {
        order: 1;
    }
    
    .mobile-menu-btn {
        order: 2;
    }
    
    .nav-links {
        display: none;
    }

    .mobile-menu-btn {
        display: flex !important;
    }

    .hero {
        padding-top: 200px;
    }

    .hero {
        padding-top: 150px;
    }

    .hero h1 {
        font-size: clamp(2rem, 7vw, 3.5rem);
    }

    .hero .subtitle {
        font-size: 1.2rem;
    }

    .cta-buttons {
        width: 100%;
    }

    .cta-primary, .cta-secondary {
        width: 100%;
        text-align: center;
    }

    .stats-section {
        flex-direction: column;
        align-items: center;
        width: 100%;
    }

    .stat-card {
        width: 100%;
        max-width: 300px;
    }

}

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }

    .nav-container {
        padding: 0 1rem;
    }

    .hero h1 {
        font-size: 2rem;
    }

}

/* Scroll animations */
.fade-in {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Accessibility improvements */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Focus states for accessibility */
.nav-links a:focus,
.cta-primary:focus,
.cta-secondary:focus,
.form-input:focus,
.form-textarea:focus,
.submit-btn:focus {
    outline: 2px solid var(--accent-blue);
    outline-offset: 2px;
}
/* ============================================
   ADDITIONAL STYLES FOR NEW SECTIONS
   Добавьте эти стили в конец вашего style.css
   ============================================ */

/* About Section with Morphing Bubble - ADD TO YOUR CSS */

.about-section {
    background: linear-gradient(135deg, rgba(118, 169, 250, 0.05) 0%, transparent 100%);
    position: relative;
    overflow: hidden;
}

.about-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-content {
    position: relative;
    z-index: 2;
}

.about-content h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 1rem;
    color: var(--text-primary);
    font-weight: 700;
}

.about-divider {
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-blue), var(--accent-blue-dark));
    margin: 1.5rem 0;
}

.about-content p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    line-height: 1.9;
    margin-bottom: 1.5rem;
}

.about-btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: linear-gradient(135deg, var(--accent-blue), var(--accent-blue-dark));
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    margin-top: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px var(--accent-glow);
}

.about-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px var(--accent-glow);
}

/* Morphing Bubble Container */
.about-image-container-morph {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 500px;
}

.about-morphing-bubble {
    position: relative;
    width: 450px;
    height: 450px;
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    overflow: hidden;
    box-shadow: 
        0 30px 80px rgba(0, 0, 0, 0.5),
        inset 0 0 40px rgba(118, 169, 250, 0.1);
    animation: about-morph 10s ease-in-out infinite;
    border: 3px solid var(--accent-blue);
}

.about-morphing-bubble::before {
    content: '';
    position: absolute;
    top: -15px;
    left: -15px;
    right: -15px;
    bottom: -15px;
    border-radius: inherit;
    background: linear-gradient(135deg, var(--accent-blue), var(--accent-blue-dark));
    opacity: 0.2;
    z-index: -1;
    animation: about-morph 10s ease-in-out infinite;
    filter: blur(20px);
}

.about-morphing-bubble::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(118, 169, 250, 0.3) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.about-morphing-bubble:hover::after {
    opacity: 1;
}

.about-morphing-bubble img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.about-morphing-bubble:hover img {
    transform: scale(1.15) rotate(2deg);
}

/* Glowing effect behind bubble */
.about-bubble-glow {
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, var(--accent-glow) 0%, transparent 70%);
    border-radius: 50%;
    animation: about-pulse 5s ease-in-out infinite;
    z-index: -1;
}

/* Morphing Animation */
@keyframes about-morph {
    0%, 100% {
        border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
        transform: rotate(0deg) scale(1);
    }
    20% {
        border-radius: 58% 42% 75% 25% / 76% 46% 54% 24%;
        transform: rotate(3deg) scale(1.02);
    }
    40% {
        border-radius: 50% 50% 33% 67% / 55% 27% 73% 45%;
        transform: rotate(-3deg) scale(0.98);
    }
    60% {
        border-radius: 33% 67% 58% 42% / 63% 68% 32% 37%;
        transform: rotate(2deg) scale(1.01);
    }
    80% {
        border-radius: 67% 33% 47% 53% / 37% 20% 80% 63%;
        transform: rotate(-2deg) scale(0.99);
    }
}

@keyframes about-pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.5;
    }
    50% {
        transform: scale(1.15);
        opacity: 0.7;
    }
}

/* Floating decorative elements */
.about-image-container-morph::before,
.about-image-container-morph::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, var(--accent-blue) 0%, transparent 70%);
    opacity: 0.15;
    animation: float-around 15s ease-in-out infinite;
}

.about-image-container-morph::before {
    width: 150px;
    height: 150px;
    top: 10%;
    right: -50px;
    animation-delay: 0s;
}

.about-image-container-morph::after {
    width: 100px;
    height: 100px;
    bottom: 15%;
    left: -30px;
    animation-delay: 7s;
}

@keyframes float-around {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    25% {
        transform: translate(20px, -30px) scale(1.1);
    }
    50% {
        transform: translate(-15px, 20px) scale(0.9);
    }
    75% {
        transform: translate(25px, 15px) scale(1.05);
    }
}

/* Responsive Design */
@media (max-width: 968px) {
    .about-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .about-image-container-morph {
        height: 400px;
    }
    
    .about-morphing-bubble {
        width: 380px;
        height: 380px;
    }
    
    .about-bubble-glow {
        width: 420px;
        height: 420px;
    }
}

@media (max-width: 768px) {
    .about-morphing-bubble {
        width: 320px;
        height: 320px;
    }
    
    .about-bubble-glow {
        width: 360px;
        height: 360px;
    }
    
    .about-image-container-morph {
        height: 350px;
    }
}

@media (max-width: 480px) {
    .about-morphing-bubble {
        width: 280px;
        height: 280px;
    }
    
    .about-bubble-glow {
        width: 320px;
        height: 320px;
    }
    
    .about-image-container-morph {
        height: 300px;
    }
}
/* MAIN LAYOUT */
.fancy-split-section {
    padding: 6rem 0;
}

.fancy-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

/* ----------------------- */
/* LEFT PHOTO WITH LAYERS  */
/* ----------------------- */

.fancy-photo-box {
    position: relative;
    width: 100%;
    height: 450px;
}

/* glowing layers */
.fancy-layer {
    position: absolute;
    inset: 0;
    border-radius: 40% 60% 55% 45% / 45% 35% 65% 55%;
    filter: blur(40px);
    z-index: -2;
}

.fancy-layer.layer-1 {
    background: radial-gradient(circle, rgba(118,169,250,0.5), transparent 70%);
    transform: scale(1.15);
}

.fancy-layer.layer-2 {
    background: radial-gradient(circle, rgba(118,169,250,0.25), transparent 70%);
    transform: scale(1.35);
}

/* mask shape */
.fancy-photo-mask {
    width: 100%;
    height: 100%;
    overflow: hidden;

    border-radius: 40% 60% 55% 45% / 45% 35% 65% 55%;

    box-shadow:
        0 30px 50px rgba(0,0,0,0.5),
        inset 0 0 50px rgba(255,255,255,0.1);

    border: 3px solid rgba(118,169,250,0.35);
    background: rgba(255,255,255,0.04);
    backdrop-filter: blur(6px);

    transition: transform .6s ease;
}

.fancy-photo-mask:hover {
    transform: scale(1.04) rotate(1deg);
}

.fancy-photo-mask img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.1);
    transition: 0.6s ease;
}

.fancy-photo-mask:hover img {
    transform: scale(1.18);
}

/* ----------------------- */
/* RIGHT TEXT + ARROWS     */
/* ----------------------- */

.fancy-title {
    font-size: 2.3rem;
    font-weight: 700;
    color: var(--text-primary);
}

.fancy-divider {
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-blue), var(--accent-blue-dark));
    margin: 1rem 0 2rem;
}

/* ACCORDION */
.fancy-accordion {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.acc-item {
    background: rgba(255,255,255,0.05);
    border-radius: 12px;
    padding: 0.5rem 1rem;
    backdrop-filter: blur(6px);
    border: 1px solid rgba(255,255,255,0.1);
}

.acc-btn {
    width: 100%;
    background: none;
    border: none;
    padding: 1rem 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.2rem;
    color: var(--text-primary);
    cursor: pointer;
}

.acc-btn .arrow {
    transition: transform 0.3s ease;
}

.acc-content {
    max-height: 0;
    overflow: hidden;
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.7;
    transition: max-height 0.4s ease;
    padding-right: 1rem;
}

/* open */
.acc-item.active .acc-content {
    max-height: 200px;
}

.acc-item.active .arrow {
    transform: rotate(90deg);
}

/* ----------------------- */
/*      RESPONSIVE         */
/* ----------------------- */

@media (max-width: 992px) {
    .fancy-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .fancy-photo-box {
        width: 320px;
        height: 330px;
        margin: 0 auto;
    }

    .fancy-title {
        text-align: center;
    }

    .acc-btn {
        justify-content: center;
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .fancy-photo-box {
        width: 260px;
        height: 260px;
    }
}


/* Services/Features Grid */
.features-section {
    background: rgba(0, 0, 0, 0.2);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
    max-width: 900px;
    margin: 0 auto;
}

.feature-card {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 2.5rem;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--accent-blue), var(--accent-blue-dark));
    opacity: 0;
    transition: all 0.4s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
    border-color: var(--accent-blue);
}

.feature-card:hover::before {
    opacity: 0.1;
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(118, 169, 250, 0.3), rgba(79, 131, 247, 0.3));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: 1.5rem;
    border: 2px solid var(--accent-blue);
    position: relative;
    z-index: 1;
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
    position: relative;
    z-index: 1;
}

.feature-card p {
    color: var(--text-secondary);
    line-height: 1.7;
    position: relative;
    z-index: 1;
}

/* Portfolio with Circular Images */
.portfolio-section {
    overflow: hidden;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.portfolio-item {
    margin-bottom: 4rem;
}

.portfolio-images {
    position: relative;
    height: 600px;
}

.circle-image {
    position: absolute;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid var(--accent-blue);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    transition: all 0.5s ease;
}

.circle-image::before {
    content: '';
    position: absolute;
    inset: -10px;
    border-radius: 50%;
    border: 3px solid var(--accent-blue);
    opacity: 0.5;
    animation: pulse-ring 3s ease-in-out infinite;
}

@keyframes pulse-ring {
    0%, 100% {
        transform: scale(1);
        opacity: 0.5;
    }
    50% {
        transform: scale(1.05);
        opacity: 0.8;
    }
}

.circle-image.large {
    width: 380px;
    height: 380px;
    top: 50px;
    left: 0;
    z-index: 2;
}

.circle-image.small {
    width: 300px;
    height: 300px;
    bottom: 0;
    right: 0;
    z-index: 1;
}

.circle-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.circle-image:hover img {
    transform: scale(1.15);
}

.circle-image:hover {
    border-color: var(--accent-blue-dark);
    box-shadow: 0 25px 70px var(--accent-glow);
}

.portfolio-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.portfolio-content p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    line-height: 1.9;
    margin-bottom: 1.5rem;
}

.view-more-btn {
    display: inline-block;
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 600;
    font-style: italic;
    border-bottom: 2px solid var(--accent-blue);
    padding-bottom: 5px;
    transition: all 0.3s ease;
}

.view-more-btn:hover {
    color: var(--accent-blue);
    transform: translateX(5px);
}

/* Services Grid with Dark Background */
.services-dark {
    background: rgba(0, 0, 0, 0.4);
    position: relative;
}

.services-dark::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><rect width="100" height="100" fill="none" stroke="rgba(118,169,250,0.05)" stroke-width="1"/></svg>');
    opacity: 0.3;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    position: relative;
    z-index: 1;
}

.service-card {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    transition: all 0.4s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    background: rgba(118, 169, 250, 0.1);
    border-color: var(--accent-blue);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

.service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, #ffeb3b, #ffc107);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    box-shadow: 0 10px 30px rgba(255, 235, 59, 0.3);
}

.service-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.service-card p {
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: 0.95rem;
}

/* Testimonials Slider */
.testimonials-section {
    background: linear-gradient(135deg, rgba(118, 169, 250, 0.05) 0%, transparent 100%);
    position: relative;
    overflow: hidden;
}

.testimonials-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../images/images2.webp') center/cover;
    opacity: 0.1;
    filter: grayscale(100%);
}

.testimonials-content {
    position: relative;
    z-index: 1;
}

.testimonials-slider {
    overflow: hidden;
    position: relative;
}

.testimonials-track {
    display: flex;
    transition: transform 0.5s ease;
}

.testimonial-card {
    min-width: calc(25% - 1.5rem);
    margin: 0 1rem;
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 2.5rem;
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

.quote-icon {
    font-size: 3rem;
    color: var(--accent-blue);
    opacity: 0.3;
    line-height: 0.5;
}

.testimonial-text {
    font-style: italic;
    color: var(--text-secondary);
    margin: 1.5rem 0;
    line-height: 1.8;
}

.testimonial-author {
    font-weight: 600;
    color: var(--text-primary);
    margin-top: 1.5rem;
}

.slider-controls {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 3rem;
}

.slider-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    color: var(--text-primary);
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-btn:hover {
    background: var(--accent-blue);
    transform: scale(1.1);
}

/* Stats Section Full */
.stats-section-full {
    background: rgba(0, 0, 0, 0.2);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.stat-card-full {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 3rem 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.stat-card-full:hover {
    transform: translateY(-10px);
    border-color: var(--accent-blue);
    box-shadow: 0 15px 40px var(--accent-glow);
}

/* Blog Section */
.blog-section {
    background: linear-gradient(180deg, rgba(118, 169, 250, 0.05) 0%, transparent 100%);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

.blog-card {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s ease;
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

.blog-image {
    width: 100%;
    height: 220px;
    overflow: hidden;
    position: relative;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-card:hover .blog-image img {
    transform: scale(1.15);
}

.blog-content {
    padding: 2rem;
}

.blog-content h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.blog-content p {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.read-more {
    color: var(--accent-blue);
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.read-more:hover {
    text-decoration: underline;
}

.view-all-btn {
    display: block;
    width: fit-content;
    margin: 3rem auto 0;
    padding: 1rem 2.5rem;
    background: linear-gradient(135deg, #5e72e4, #825ee4);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(94, 114, 228, 0.4);
}

.view-all-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(94, 114, 228, 0.6);
}

/* Contact Section */
.contact-section {
    background: rgba(0, 0, 0, 0.3);
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info h3 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: var(--text-primary);
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--accent-blue), var(--accent-blue-dark));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.contact-form {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 2.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    border-radius: 10px;
    color: var(--text-primary);
    font-family: inherit;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-blue);
    box-shadow: 0 0 20px var(--accent-glow);
}

.form-group textarea {
    min-height: 150px;
    resize: vertical;
}

.submit-btn {
    width: 100%;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, var(--accent-blue), var(--accent-blue-dark));
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px var(--accent-glow);
}

/* Footer */
footer {
    background: rgba(10, 10, 15, 0.95);
    backdrop-filter: blur(20px);
    border-top: 1px solid var(--glass-border);
    padding: 4rem 0 2rem;
    position: relative;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--accent-blue), transparent);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.footer-section p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-links a:hover {
    color: var(--accent-blue);
    transform: translateX(5px);
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-link {
    width: 45px;
    height: 45px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-primary);
    text-decoration: none;
    font-size: 1.3rem;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--accent-blue);
    transform: translateY(-5px);
    box-shadow: 0 10px 25px var(--accent-glow);
}

.newsletter-form {
    margin-top: 1rem;
}

.newsletter-form input {
    width: 100%;
    padding: 0.75rem;
    border-radius: 10px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    color: white;
    margin-bottom: 0.75rem;
}

.newsletter-form button {
    width: 100%;
    padding: 0.75rem;
    background: linear-gradient(135deg, var(--accent-blue), var(--accent-blue-dark));
    color: white;
    border: none;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.newsletter-form button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px var(--accent-glow);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--glass-border);
    color: var(--text-tertiary);
}

/* Responsive Design */
@media (max-width: 968px) {
    .about-container,
    .portfolio-grid,
    .contact-container {
        grid-template-columns: 1fr;
    }

    .about-image-wrapper {
        position: relative;
        right: 0;
        width: 100%;
        clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
        margin-top: 2rem;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .portfolio-images {
        height: 450px;
        margin-bottom: 2rem;
    }

    .circle-image.large {
        width: 300px;
        height: 300px;
    }

    .circle-image.small {
        width: 250px;
        height: 250px;
    }

    .footer-content {
        grid-template-columns: 1fr 1fr;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .blog-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .features-grid,
    .services-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }

    .testimonial-card {
        min-width: calc(100% - 2rem);
    }
}
.logo {
    display: flex;
    align-items: center;
    gap: 10px; /* расстояние между картинкой и текстом */
}

.logo-img {
    height: 45px;
    width: 45px;
    border-radius: 50%;
    object-fit: cover;
}




.about-premium-section {
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(118, 169, 250, 0.05) 0%, transparent 100%);
}

.about-premium-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

/* Left Side - Morphing Image */
.about-premium-image-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 500px;
}

.about-premium-morph-bubble {
    position: relative;
    width: 450px;
    height: 450px;
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    overflow: hidden;
    box-shadow: 
        0 30px 80px rgba(0, 0, 0, 0.5),
        inset 0 0 40px rgba(118, 169, 250, 0.1);
    animation: premium-morph 10s ease-in-out infinite;
    border: 3px solid var(--accent-blue);
}

.about-premium-morph-bubble::before {
    content: '';
    position: absolute;
    top: -15px;
    left: -15px;
    right: -15px;
    bottom: -15px;
    border-radius: inherit;
    background: linear-gradient(135deg, var(--accent-blue), var(--accent-blue-dark));
    opacity: 0.2;
    z-index: -1;
    animation: premium-morph 10s ease-in-out infinite;
    filter: blur(20px);
}

.about-premium-morph-bubble::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(118, 169, 250, 0.3) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.about-premium-morph-bubble:hover::after {
    opacity: 1;
}

.about-premium-morph-bubble img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.about-premium-morph-bubble:hover img {
    transform: scale(1.15) rotate(2deg);
}

.premium-bubble-glow {
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, var(--accent-glow) 0%, transparent 70%);
    border-radius: 50%;
    animation: premium-pulse 5s ease-in-out infinite;
    z-index: -1;
}

@keyframes premium-morph {
    0%, 100% {
        border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
        transform: rotate(0deg) scale(1);
    }
    20% {
        border-radius: 58% 42% 75% 25% / 76% 46% 54% 24%;
        transform: rotate(3deg) scale(1.02);
    }
    40% {
        border-radius: 50% 50% 33% 67% / 55% 27% 73% 45%;
        transform: rotate(-3deg) scale(0.98);
    }
    60% {
        border-radius: 33% 67% 58% 42% / 63% 68% 32% 37%;
        transform: rotate(2deg) scale(1.01);
    }
    80% {
        border-radius: 67% 33% 47% 53% / 37% 20% 80% 63%;
        transform: rotate(-2deg) scale(0.99);
    }
}

@keyframes premium-pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.5;
    }
    50% {
        transform: scale(1.15);
        opacity: 0.7;
    }
}

.about-premium-image-wrapper::before,
.about-premium-image-wrapper::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, var(--accent-blue) 0%, transparent 70%);
    opacity: 0.15;
    animation: premium-float 15s ease-in-out infinite;
}

.about-premium-image-wrapper::before {
    width: 150px;
    height: 150px;
    top: 10%;
    right: -50px;
    animation-delay: 0s;
}

.about-premium-image-wrapper::after {
    width: 100px;
    height: 100px;
    bottom: 15%;
    left: -30px;
    animation-delay: 7s;
}

@keyframes premium-float {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    25% {
        transform: translate(20px, -30px) scale(1.1);
    }
    50% {
        transform: translate(-15px, 20px) scale(0.9);
    }
    75% {
        transform: translate(25px, 15px) scale(1.05);
    }
}

/* Right Side - Content */
.about-premium-content {
    position: relative;
    z-index: 2;
}

.premium-badge {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: rgba(118, 169, 250, 0.15);
    border: 1px solid var(--accent-blue);
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--accent-blue);
    margin-bottom: 1.5rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.about-premium-content h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 1rem;
    color: var(--text-primary);
    font-weight: 700;
    line-height: 1.2;
}

.premium-divider {
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-blue), var(--accent-blue-dark));
    margin: 1.5rem 0;
    border-radius: 2px;
}

.about-premium-content p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    line-height: 1.9;
    margin-bottom: 1.5rem;
}

.premium-highlights {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin: 2rem 0;
}

.premium-highlight-item {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 15px;
    padding: 1.5rem;
    transition: all 0.3s ease;
}

.premium-highlight-item:hover {
    transform: translateY(-5px);
    border-color: var(--accent-blue);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.premium-highlight-icon {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.premium-highlight-item h4 {
    font-size: 1.1rem;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.premium-highlight-item p {
    font-size: 0.95rem;
    color: var(--text-tertiary);
    margin: 0;
}

.premium-cta-btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: linear-gradient(135deg, var(--accent-blue), var(--accent-blue-dark));
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    margin-top: 1.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px var(--accent-glow);
}

.premium-cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px var(--accent-glow);
}

/* Responsive Design */
@media (max-width: 968px) {
    .about-premium-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .about-premium-image-wrapper {
        height: 400px;
        order: 2;
    }
    
    .about-premium-morph-bubble {
        width: 380px;
        height: 380px;
    }
    
    .premium-bubble-glow {
        width: 420px;
        height: 420px;
    }

    .about-premium-content {
        order: 1;
    }

    .premium-highlights {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .about-premium-morph-bubble {
        width: 320px;
        height: 320px;
    }
    
    .premium-bubble-glow {
        width: 360px;
        height: 360px;
    }
    
    .about-premium-image-wrapper {
        height: 350px;
    }
}

@media (max-width: 480px) {
    .about-premium-section {
        padding: 3rem 0;
    }

    .about-premium-morph-bubble {
        width: 280px;
        height: 280px;
    }
    
    .premium-bubble-glow {
        width: 320px;
        height: 320px;
    }
    
    .about-premium-image-wrapper {
        height: 300px;
    }
}


/* СЕКЦИЯ 1: Главные услуги */
.services-hero-section {
    padding: 5rem 0;
    background: rgba(0, 0, 0, 0.2);
    position: relative;
}

.services-main-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin-top: 3rem;
}

.service-main-card {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 2.5rem;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.service-main-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--accent-blue), var(--accent-blue-dark));
    opacity: 0;
    transition: all 0.4s ease;
}

.service-main-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
    border-color: var(--accent-blue);
}

.service-main-card:hover::before {
    opacity: 0.1;
}

.service-main-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(118, 169, 250, 0.3), rgba(79, 131, 247, 0.3));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: 1.5rem;
    border: 2px solid var(--accent-blue);
    position: relative;
    z-index: 1;
}

.service-main-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
    position: relative;
    z-index: 1;
}

.service-main-card > p {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.service-features-list {
    list-style: none;
    margin: 1.5rem 0;
    position: relative;
    z-index: 1;
}

.service-features-list li {
    color: var(--text-tertiary);
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    font-size: 0.95rem;
}

.service-features-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-blue);
    font-weight: bold;
}

.service-learn-more {
    color: var(--accent-blue);
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    margin-top: 1rem;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.service-learn-more:hover {
    transform: translateX(5px);
}

/* СЕКЦИЯ 2: Процесс работы */
.services-process-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, rgba(118, 169, 250, 0.05) 0%, transparent 100%);
    position: relative;
}

.process-timeline {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin-top: 3rem;
    position: relative;
}

.process-step {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.process-number {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--accent-blue), var(--accent-blue-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1.5rem;
    box-shadow: 0 10px 30px var(--accent-glow);
    position: relative;
    z-index: 2;
}

.process-content {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 2rem;
    transition: all 0.3s ease;
    width: 100%;
}

.process-content:hover {
    transform: translateY(-5px);
    border-color: var(--accent-blue);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.process-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.process-content h3 {
    font-size: 1.3rem;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.process-content p {
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: 0.95rem;
}

.process-line {
    position: absolute;
    top: 40px;
    left: calc(50% + 40px);
    width: calc(100% - 80px);
    height: 2px;
    background: linear-gradient(90deg, var(--accent-blue), transparent);
    z-index: 1;
}

.process-step:nth-child(3n) .process-line,
.process-step:last-child .process-line {
    display: none;
}

.process-cta {
    text-align: center;
    margin-top: 5rem;
    padding: 3rem;
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
}

.process-cta h3 {
    font-size: 2rem;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.process-cta p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

/* Responsive Design */
@media (max-width: 968px) {
    .services-main-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    .process-timeline {
        grid-template-columns: repeat(2, 1fr);
        gap: 2.5rem;
    }

    .process-step:nth-child(2n) .process-line {
        display: none;
    }

    .process-step:nth-child(3n) .process-line {
        display: block;
    }
}

@media (max-width: 768px) {
    .services-main-grid {
        grid-template-columns: 1fr;
    }

    .process-timeline {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .process-line {
        display: none !important;
    }

    .process-step {
        margin-bottom: 1rem;
    }
}

@media (max-width: 480px) {
    .service-main-card,
    .process-content {
        padding: 1.5rem;
    }

    .process-cta {
        padding: 2rem 1rem;
    }
}

.portfolio-showcase-section {
    padding: 5rem 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.2) 0%, transparent 100%);
    position: relative;
}

.portfolio-project-block {
    margin-top: 4rem;
    margin-bottom: 6rem;
}

/* Визуальная часть с изображениями */
.project-visual-wrapper {
    position: relative;
    margin-bottom: 4rem;
}

.project-main-image {
    position: relative;
    width: 100%;
    height: 600px;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
    border: 3px solid var(--glass-border);
}

.project-main-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.project-main-image:hover img {
    transform: scale(1.05);
}

.project-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.3) 0%,
        transparent 50%,
        rgba(0, 0, 0, 0.6) 100%
    );
    z-index: 1;
    pointer-events: none;
}

.project-tags {
    position: absolute;
    top: 2rem;
    left: 2rem;
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    z-index: 2;
}

.project-tag {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    color: var(--text-primary);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
}

/* Плавающие статистики */
.floating-stat {
    position: absolute;
    background: var(--glass-bg);
    backdrop-filter: blur(30px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
    z-index: 2;
    animation: float-stat 4s ease-in-out infinite;
}

.stat-1 {
    top: 20%;
    right: 5%;
    animation-delay: 0s;
}

.stat-2 {
    bottom: 30%;
    left: 5%;
    animation-delay: 1.5s;
}

.stat-3 {
    bottom: 10%;
    right: 8%;
    animation-delay: 3s;
}

@keyframes float-stat {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-15px);
    }
}

.stat-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--accent-blue), var(--accent-blue-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.stat-info {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
}

.stat-label {
    font-size: 0.85rem;
    color: var(--text-tertiary);
}

/* Мини изображения */
.project-mini-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 2rem;
    position: relative;
}

.mini-image {
    height: 300px;
    border-radius: 20px;
    overflow: hidden;
    border: 2px solid var(--glass-border);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    transition: all 0.4s ease;
    position: relative;
}

.mini-image::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--accent-blue), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
}

.mini-image:hover {
    transform: translateY(-10px);
    border-color: var(--accent-blue);
}

.mini-image:hover::before {
    opacity: 0.2;
}

.mini-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.mini-image:hover img {
    transform: scale(1.1);
}

.mini-1 {
    transform: rotate(-2deg);
}

.mini-2 {
    transform: rotate(2deg);
}

/* Описание проекта */
.project-description {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 30px;
    padding: 3rem;
}

.project-header-info {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    margin-bottom: 2rem;
}

.project-number {
    font-size: 4rem;
    font-weight: 700;
    color: var(--accent-blue);
    opacity: 0.3;
    line-height: 1;
}

.project-title-block h3 {
    font-size: 2.5rem;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.project-client {
    color: var(--text-tertiary);
    font-size: 1rem;
}

.project-divider {
    height: 2px;
    background: linear-gradient(90deg, var(--accent-blue), transparent);
    margin: 2rem 0;
}

.project-content-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.project-description-text h4,
.project-details-box h4,
.project-results h4 {
    color: var(--accent-blue);
    font-size: 1.2rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.project-description-text p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.project-details-box {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 15px;
    padding: 1.5rem;
}

.project-detail-item {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--glass-border);
}

.project-detail-item:last-child {
    border-bottom: none;
}

.detail-label {
    color: var(--text-tertiary);
    font-weight: 600;
}

.detail-value {
    color: var(--text-primary);
}

/* Результаты */
.project-results {
    margin-bottom: 2rem;
}

.results-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.result-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--glass-border);
    border-radius: 15px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
}

.result-item:hover {
    border-color: var(--accent-blue);
    transform: translateY(-5px);
}

.result-value {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-blue);
    margin-bottom: 0.5rem;
}

.result-label {
    display: block;
    color: var(--text-tertiary);
    font-size: 0.9rem;
}

/* Действия */
.project-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.project-btn-primary,
.project-btn-secondary {
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
}

.project-btn-primary {
    background: linear-gradient(135deg, var(--accent-blue), var(--accent-blue-dark));
    color: white;
    box-shadow: 0 8px 25px var(--accent-glow);
}

.project-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px var(--accent-glow);
}

.project-btn-secondary {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    color: var(--text-primary);
}

.project-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--accent-blue);
    transform: translateY(-3px);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .project-main-image {
        height: 500px;
    }

    .project-content-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .results-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .project-main-image {
        height: 400px;
    }

    .floating-stat {
        padding: 1rem;
        font-size: 0.85rem;
    }

    .stat-icon {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }

    .stat-number {
        font-size: 1.2rem;
    }

    .project-mini-images {
        grid-template-columns: 1fr;
    }

    .mini-image {
        height: 250px;
    }

    .project-description {
        padding: 2rem;
    }

    .project-header-info {
        flex-direction: column;
        gap: 1rem;
    }

    .project-number {
        font-size: 3rem;
    }

    .project-title-block h3 {
        font-size: 1.8rem;
    }

    .results-grid {
        grid-template-columns: 1fr;
    }

    .project-actions {
        flex-direction: column;
    }

    .project-btn-primary,
    .project-btn-secondary {
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .project-main-image {
        height: 300px;
        border-radius: 20px;
    }

    .floating-stat {
        display: none;
    }

    .project-tags {
        top: 1rem;
        left: 1rem;
    }

    .project-tag {
        padding: 0.4rem 1rem;
        font-size: 0.8rem;
    }
}

.reviews-faq-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, rgba(118, 169, 250, 0.05) 0%, transparent 100%);
    position: relative;
}

.reviews-faq-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 3rem;
}

/* Общие стили для колонок */
.column-badge {
    display: inline-block;
    margin-bottom: 2rem;
}

.column-badge span {
    background: rgba(118, 169, 250, 0.15);
    border: 1px solid var(--accent-blue);
    color: var(--accent-blue);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.5px;
}

/* ============================================
   TESTIMONIALS (Левая колонка)
   ============================================ */

.testimonials-column {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.testimonial-card {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 2rem;
    transition: all 0.3s ease;
    position: relative;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-blue);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.testimonial-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 2px solid var(--accent-blue);
    object-fit: cover;
}

.testimonial-author-info h4 {
    color: var(--text-primary);
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
}

.testimonial-author-info p {
    color: var(--text-tertiary);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.testimonial-rating {
    font-size: 0.9rem;
    letter-spacing: 2px;
}

.testimonial-text {
    position: relative;
    padding-left: 1rem;
}

.quote-icon {
    position: absolute;
    left: -10px;
    top: -10px;
    font-size: 4rem;
    color: var(--accent-blue);
    opacity: 0.2;
    font-family: Georgia, serif;
}

.testimonial-text p {
    color: var(--text-secondary);
    line-height: 1.7;
    font-style: italic;
    font-size: 0.95rem;
}

.testimonial-date {
    margin-top: 1rem;
    color: var(--text-tertiary);
    font-size: 0.85rem;
}

/* Статистика отзывов */
.testimonials-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-top: 1rem;
}

.stat-mini {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 15px;
    padding: 1.5rem 1rem;
    text-align: center;
    transition: all 0.3s ease;
}

.stat-mini:hover {
    transform: translateY(-3px);
    border-color: var(--accent-blue);
}

.stat-mini-number {
    display: block;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--accent-blue);
    margin-bottom: 0.5rem;
}

.stat-mini-label {
    display: block;
    font-size: 0.85rem;
    color: var(--text-tertiary);
}

/* ============================================
   FAQ (Правая колонка)
   ============================================ */

.faq-column {
    display: flex;
    flex-direction: column;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: var(--accent-blue);
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    color: var(--text-primary);
    font-size: 1.05rem;
    font-weight: 600;
    text-align: left;
    transition: all 0.3s ease;
}

.faq-question:hover {
    color: var(--accent-blue);
}

.faq-arrow {
    font-size: 1.5rem;
    transition: transform 0.3s ease;
    color: var(--accent-blue);
}

.faq-item.active .faq-arrow {
    transform: rotate(90deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-item.active .faq-answer {
    max-height: 300px;
    padding: 0 1.5rem 1.5rem 1.5rem;
}

.faq-answer p {
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: 0.95rem;
}

/* FAQ CTA */
.faq-cta {
    margin-top: 2rem;
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
}

.faq-cta p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

/* Responsive Design */
@media (max-width: 968px) {
    .reviews-faq-container {
        grid-template-columns: 1fr;
        gap: 4rem;
    }

    .testimonials-stats {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .testimonial-card,
    .faq-item {
        padding: 1.5rem;
    }

    .testimonial-header {
        flex-direction: column;
        text-align: center;
    }

    .testimonial-text {
        padding-left: 0;
    }

    .quote-icon {
        left: 50%;
        transform: translateX(-50%);
    }
}

@media (max-width: 480px) {
    .reviews-faq-section {
        padding: 3rem 0;
    }

    .testimonial-avatar {
        width: 50px;
        height: 50px;
    }

    .faq-question {
        font-size: 0.95rem;
        padding: 1rem;
    }

    .faq-item.active .faq-answer {
        padding: 0 1rem 1rem 1rem;
    }
}

.privacy-policy-section {
    padding: 8rem 0 5rem;
    background: rgba(0, 0, 0, 0.1);
}

.privacy-policy-section h1 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    color: var(--text-primary);
    margin-bottom: 1rem;
    font-weight: 700;
}

.privacy-policy-section h1 + p {
    color: var(--text-tertiary);
    font-size: 1rem;
    margin-bottom: 3rem;
    font-style: italic;
}

.privacy-policy-section h2 {
    font-size: clamp(1.8rem, 3vw, 2.2rem);
    color: var(--text-primary);
    margin-top: 3rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--accent-blue);
}

.privacy-policy-section h3 {
    font-size: clamp(1.3rem, 2.5vw, 1.6rem);
    color: var(--text-primary);
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.privacy-policy-section h4 {
    font-size: clamp(1.1rem, 2vw, 1.3rem);
    color: var(--accent-blue);
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.privacy-policy-section p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
}

.privacy-policy-section ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 1.5rem;
}

.privacy-policy-section ul li {
    color: var(--text-secondary);
    line-height: 1.8;
    padding: 0.5rem 0;
    padding-left: 2rem;
    position: relative;
    font-size: 1.05rem;
}

.privacy-policy-section ul li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-blue);
    font-weight: bold;
    font-size: 1.2rem;
}

.privacy-policy-section i {
    color: var(--text-tertiary);
}

.privacy-policy-section strong {
    color: var(--text-primary);
    font-weight: 600;
}