* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg: #0a0a0f;
    --surface: #141420;
    --accent: #1a1a2e;
    --primary: #e94560;
    --text: #ffffff;
    --text-muted: rgba(255, 255, 255, 0.6);
    --text-light: rgba(255, 255, 255, 0.9);
    --border: rgba(255, 255, 255, 0.1);
    --shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(10, 10, 15, 0.85);
    backdrop-filter: blur(20px);
    z-index: 1000;
    padding: 1.2rem 0;
    border-bottom: 1px solid var(--border);
}

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

.logo {
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: 1px;
    background: linear-gradient(135deg, #fff 0%, var(--primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-block;
}

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

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

.nav-menu a {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    transform: translateY(0);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width 0.3s ease;
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 100%;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--primary);
    transform: translateY(-2px);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
    padding: 5px;
    z-index: 1001;
    position: relative;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--text);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 2px;
    display: block;
}

.hamburger:hover span {
    background: var(--primary);
}

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

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

.hero-media video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.1);
    transition: transform 20s ease;
}

.hero:hover .hero-media video {
    transform: scale(1.15);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(10, 10, 15, 0.85) 0%, rgba(26, 26, 46, 0.75) 100%);
}

.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--primary);
    border-radius: 50%;
    opacity: 0.6;
    animation: float-particle 15s infinite ease-in-out;
}

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

.particle:nth-child(2) {
    left: 80%;
    top: 40%;
    animation-delay: 2s;
    animation-duration: 18s;
}

.particle:nth-child(3) {
    left: 30%;
    top: 70%;
    animation-delay: 4s;
    animation-duration: 22s;
}

.particle:nth-child(4) {
    left: 70%;
    top: 10%;
    animation-delay: 6s;
    animation-duration: 16s;
}

.particle:nth-child(5) {
    left: 50%;
    top: 60%;
    animation-delay: 8s;
    animation-duration: 19s;
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
    padding: 8rem 0 4rem;
}

.hero-badge {
    display: inline-block;
    padding: 0.7rem 2rem;
    background: rgba(233, 69, 96, 0.2);
    border: 1px solid rgba(233, 69, 96, 0.4);
    border-radius: 50px;
    color: var(--primary);
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 2px;
    margin-bottom: 2.5rem;
    text-transform: uppercase;
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 30px rgba(233, 69, 96, 0.2);
}

.hero-title {
    font-size: clamp(3.5rem, 8vw, 7rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 2rem;
    font-family: 'Space Grotesk', sans-serif;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
}

.title-word {
    display: inline-block;
    opacity: 0;
    transform: translateY(100px) rotateX(90deg);
}

.gradient-text {
    background: linear-gradient(135deg, #ffffff 0%, var(--primary) 50%, #ffffff 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradient-shift 3s ease infinite;
}

.hero-subtitle {
    font-size: clamp(1.3rem, 3vw, 2rem);
    font-weight: 300;
    color: var(--text-light);
    margin-bottom: 2.5rem;
    opacity: 0;
    transform: translateY(30px);
}

.hero-description {
    max-width: 900px;
    margin: 0 auto 3rem;
    opacity: 0;
    transform: translateY(30px);
}

.hero-description p {
    font-size: 1.15rem;
    line-height: 1.9;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

.hero-highlight-text {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--primary);
    line-height: 1.6;
    margin-top: 1.5rem;
}

.hero-actions {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-bottom: 4rem;
    opacity: 0;
    transform: translateY(30px);
}

.hero-btn-primary,
.hero-btn-secondary {
    display: inline-block;
    padding: 1.2rem 3rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.05rem;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.hero-btn-primary {
    background: var(--primary);
    color: var(--text);
    box-shadow: 0 10px 30px rgba(233, 69, 96, 0.4);
}

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

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

.hero-btn-primary:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 20px 50px rgba(233, 69, 96, 0.5);
}

.hero-btn-secondary {
    background: transparent;
    color: var(--text-light);
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.hero-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--primary);
    transform: translateY(-5px);
    color: var(--text);
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 4rem;
    opacity: 0;
    transform: translateY(30px);
}

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

.stat-number {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--primary);
    font-family: 'Space Grotesk', sans-serif;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, var(--primary) 0%, #ffffff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 0.95rem;
    color: var(--text-muted);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.scroll-down {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
    opacity: 0;
    animation: fadeInUp 1s ease 1.5s forwards;
}

.scroll-arrow {
    width: 30px;
    height: 50px;
    border: 2px solid var(--text-light);
    border-radius: 25px;
    position: relative;
}

.scroll-arrow::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 10px;
    background: var(--text-light);
    border-radius: 2px;
    animation: scroll-bounce 2s infinite;
}

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

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

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

@keyframes slide-up {
    from {
        opacity: 0;
        transform: translateY(100px) rotateX(90deg);
    }
    to {
        opacity: 1;
        transform: translateY(0) rotateX(0);
    }
}

@keyframes gradient-shift {
    0%, 100% {
        background-position: 0% center;
    }
    50% {
        background-position: 100% center;
    }
}

@keyframes float-particle {
    0%, 100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.6;
    }
    25% {
        transform: translate(30px, -50px) scale(1.2);
        opacity: 0.8;
    }
    50% {
        transform: translate(-20px, -100px) scale(0.8);
        opacity: 0.4;
    }
    75% {
        transform: translate(40px, -30px) scale(1.1);
        opacity: 0.7;
    }
}

@keyframes scroll-bounce {
    0%, 100% {
        transform: translateX(-50%) translateY(0);
        opacity: 1;
    }
    50% {
        transform: translateX(-50%) translateY(20px);
        opacity: 0.3;
    }
}

.animate-fade-in {
    opacity: 0;
    animation: fadeInUp 1s ease forwards;
}

.animate-slide-up {
    opacity: 0;
    animation: slide-up 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

/* About Section */
.about {
    padding: 8rem 0;
    background: var(--surface);
}

.about-layout {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 5rem;
    align-items: center;
}

.about-media {
    border-radius: 25px;
    overflow: hidden;
    box-shadow: var(--shadow);
    opacity: 0;
    transform: translateX(-100px) scale(0.9);
    transition: all 1.2s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.about-media::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(233, 69, 96, 0.2) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: 1;
    pointer-events: none;
}

.about-media.visible {
    opacity: 1;
    transform: translateX(0) scale(1);
}

.about-media:hover::before {
    opacity: 1;
}

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

.about-media:hover img {
    transform: scale(1.15) rotate(2deg);
}

.about-content {
    opacity: 0;
    transform: translateX(100px) scale(0.95);
    transition: all 1.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.about-content.visible {
    opacity: 1;
    transform: translateX(0) scale(1);
}

.section-tag {
    display: inline-block;
    padding: 0.5rem 1.2rem;
    background: rgba(233, 69, 96, 0.15);
    border-left: 3px solid var(--primary);
    color: var(--primary);
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
}

.about-content h2 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 800;
    margin-bottom: 1.5rem;
    font-family: 'Space Grotesk', sans-serif;
    line-height: 1.2;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease 0.2s;
}

.about-content.visible h2 {
    opacity: 1;
    transform: translateY(0);
}

.about-intro {
    font-size: 1.3rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    font-weight: 400;
}

.about-content p {
    font-size: 1.05rem;
    line-height: 1.9;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

.mission-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid var(--border);
    padding: 2rem;
    border-radius: 20px;
    margin: 2rem 0;
    border-left: 4px solid var(--primary);
    opacity: 0;
    transform: translateY(30px) scale(0.95);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.mission-card.visible {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.mission-card:hover {
    transform: translateY(-5px) scale(1.02);
    border-left-width: 6px;
    box-shadow: 0 15px 40px rgba(233, 69, 96, 0.2);
}

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

.mission-card p {
    color: var(--text-light);
    margin: 0;
    font-size: 1.05rem;
}

.values-compact {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 2rem;
}

.value-compact {
    padding: 0.7rem 1.5rem;
    background: rgba(233, 69, 96, 0.12);
    border: 1px solid rgba(233, 69, 96, 0.3);
    border-radius: 25px;
    color: var(--text-light);
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    transform: scale(0.8) translateY(20px);
    animation: pop-in 0.5s ease forwards;
}

.value-compact:nth-child(1) { animation-delay: 0.1s; }
.value-compact:nth-child(2) { animation-delay: 0.2s; }
.value-compact:nth-child(3) { animation-delay: 0.3s; }
.value-compact:nth-child(4) { animation-delay: 0.4s; }

.value-compact:hover {
    background: rgba(233, 69, 96, 0.25);
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 10px 30px rgba(233, 69, 96, 0.3);
}

/* Services Section */
.services {
    position: relative;
    padding: 8rem 0;
    overflow: hidden;
}

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

.services-media video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.media-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(10, 10, 15, 0.92) 0%, rgba(26, 26, 46, 0.88) 100%);
}

.services-intro {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    z-index: 1;
    opacity: 0;
    transform: translateY(50px);
    transition: all 1s ease;
}

.services-intro.visible {
    opacity: 1;
    transform: translateY(0);
}

.services-intro h2 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 800;
    margin-top: 1rem;
    font-family: 'Space Grotesk', sans-serif;
}

.services-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.service-compact {
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(20px);
    border: 1px solid var(--border);
    padding: 2.5rem;
    border-radius: 20px;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    transform: translateY(60px) rotateY(-10deg);
    position: relative;
    overflow: visible;
    min-height: auto;
    height: auto;
}

.service-compact::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(233, 69, 96, 0.1), transparent);
    transition: left 0.6s ease;
    pointer-events: none;
    z-index: 0;
    border-radius: 20px;
}

.service-compact:hover::before {
    left: 100%;
}

.service-compact.visible {
    opacity: 1;
    transform: translateY(0) rotateY(0);
}

.service-compact:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: var(--primary);
    transform: translateY(-10px) rotateY(5deg) scale(1.02);
    box-shadow: 0 25px 60px rgba(233, 69, 96, 0.25);
}

.service-header-compact {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.service-num {
    font-size: 3rem;
    font-weight: 900;
    color: var(--primary);
    opacity: 0.3;
    font-family: 'Space Grotesk', sans-serif;
    line-height: 1;
    transition: all 0.4s ease;
}

.service-compact:hover .service-num {
    opacity: 0.5;
    transform: scale(1.2) rotate(5deg);
}

.service-compact h3 {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--text);
}

.service-desc {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 1rem;
    line-height: 1.7;
    position: relative;
    z-index: 1;
}

.service-text {
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    opacity: 0.9;
    position: relative;
    z-index: 1;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.service-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.service-features span {
    padding: 0.6rem 1.2rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border);
    border-radius: 20px;
    color: var(--text-light);
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    transform: scale(0.8);
    animation: pop-in 0.5s ease forwards;
}

.service-features span:nth-child(1) { animation-delay: 0.1s; }
.service-features span:nth-child(2) { animation-delay: 0.2s; }
.service-features span:nth-child(3) { animation-delay: 0.3s; }
.service-features span:nth-child(4) { animation-delay: 0.4s; }
.service-features span:nth-child(5) { animation-delay: 0.5s; }

.service-features span:hover {
    background: rgba(233, 69, 96, 0.2);
    border-color: var(--primary);
    transform: scale(1.1) translateY(-3px);
    box-shadow: 0 5px 15px rgba(233, 69, 96, 0.3);
}

.service-outcome-compact {
    background: rgba(233, 69, 96, 0.12);
    border-left: 4px solid var(--primary);
    padding: 1rem 1.5rem;
    border-radius: 10px;
    color: var(--text-light);
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    transform: translateX(-20px);
    animation: slide-in-left 0.6s ease forwards;
    position: relative;
    z-index: 1;
}

.service-compact.visible .service-outcome-compact {
    animation-delay: 0.3s;
}

.service-outcome-compact:hover {
    background: rgba(233, 69, 96, 0.2);
    border-left-width: 6px;
    transform: translateX(5px);
}

/* Pricing Section */
.pricing {
    position: relative;
    padding: 8rem 0;
    background: var(--bg);
    overflow: hidden;
}

.pricing-media {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}

.pricing-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(233, 69, 96, 0.15) 0%,
        rgba(139, 69, 193, 0.2) 25%,
        rgba(30, 144, 255, 0.15) 50%,
        rgba(233, 69, 96, 0.2) 75%,
        rgba(139, 69, 193, 0.15) 100%);
    background-size: 400% 400%;
    animation: gradientShift 15s ease infinite;
}

@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

.pricing-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.pricing-particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--primary);
    border-radius: 50%;
    box-shadow: 0 0 20px rgba(233, 69, 96, 0.8),
                0 0 40px rgba(233, 69, 96, 0.4);
    animation: floatParticle 20s infinite ease-in-out;
}

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

.pricing-particle:nth-child(2) {
    left: 30%;
    top: 60%;
    animation-delay: 2s;
    animation-duration: 22s;
}

.pricing-particle:nth-child(3) {
    left: 60%;
    top: 30%;
    animation-delay: 4s;
    animation-duration: 20s;
}

.pricing-particle:nth-child(4) {
    left: 80%;
    top: 70%;
    animation-delay: 6s;
    animation-duration: 19s;
}

.pricing-particle:nth-child(5) {
    left: 50%;
    top: 10%;
    animation-delay: 8s;
    animation-duration: 21s;
}

.pricing-particle:nth-child(6) {
    left: 20%;
    top: 80%;
    animation-delay: 10s;
    animation-duration: 23s;
}

@keyframes floatParticle {
    0%, 100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.6;
    }
    25% {
        transform: translate(30px, -50px) scale(1.2);
        opacity: 1;
    }
    50% {
        transform: translate(-20px, -100px) scale(0.8);
        opacity: 0.8;
    }
    75% {
        transform: translate(40px, -30px) scale(1.1);
        opacity: 0.9;
    }
}

.pricing-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, 
        transparent 0%,
        rgba(10, 10, 20, 0.4) 50%,
        rgba(10, 10, 20, 0.8) 100%);
    z-index: 1;
}

.pricing .container {
    position: relative;
    z-index: 2;
}

.pricing-intro {
    text-align: center;
    margin-bottom: 4rem;
    opacity: 0;
    transform: translateY(50px);
    transition: all 1s ease;
}

.pricing-intro.visible {
    opacity: 1;
    transform: translateY(0);
}

.pricing-intro h2 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 800;
    margin: 1rem 0;
    font-family: 'Space Grotesk', sans-serif;
}

.pricing-intro p {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 700px;
    margin: 0 auto;
}

.pricing-compact {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.price-compact {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 2.5rem;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    transform: translateX(-80px) scale(0.95);
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.price-compact::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(233, 69, 96, 0.1), transparent);
    transition: left 0.6s ease;
}

.price-compact:hover::after {
    left: 100%;
}

.price-compact.visible {
    opacity: 1;
    transform: translateX(0) scale(1);
}

.price-compact:hover {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border-color: var(--primary);
    transform: translateX(15px) scale(1.02);
    box-shadow: 0 20px 50px rgba(233, 69, 96, 0.4),
                0 0 30px rgba(233, 69, 96, 0.2);
}

.price-compact.featured {
    background: rgba(233, 69, 96, 0.2);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border-color: var(--primary);
    border-width: 2px;
    box-shadow: 0 10px 40px rgba(233, 69, 96, 0.3),
                0 0 40px rgba(233, 69, 96, 0.2);
    animation: featuredPulse 3s ease-in-out infinite;
}

@keyframes featuredPulse {
    0%, 100% {
        box-shadow: 0 10px 40px rgba(233, 69, 96, 0.3),
                    0 0 40px rgba(233, 69, 96, 0.2);
    }
    50% {
        box-shadow: 0 15px 50px rgba(233, 69, 96, 0.5),
                    0 0 60px rgba(233, 69, 96, 0.4);
    }
}

.price-name {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-light);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.price-compact:hover .price-name {
    color: var(--primary);
    transform: translateX(5px);
}

.price-value {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary);
    white-space: nowrap;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.price-compact:hover .price-value {
    transform: scale(1.1);
    text-shadow: 0 0 20px rgba(233, 69, 96, 0.5);
}

/* Info Section */
.info {
    position: relative;
    padding: 8rem 0;
    background: var(--surface);
}

.info-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    position: relative;
}

.info-section-left,
.info-section-right {
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(20px);
    border: 1px solid var(--border);
    padding: 2rem;
    border-radius: 25px;
    opacity: 1;
    transform: translateY(0);
    transition: all 0.8s ease;
    min-height: auto;
    height: auto;
    overflow: visible;
}

/* Optional animation on scroll */
.info-section-left:not(.visible),
.info-section-right:not(.visible) {
    opacity: 0.3;
    transform: translateY(20px);
}

.info-section-left.visible,
.info-section-right.visible {
    opacity: 1;
    transform: translateY(0);
}

.info-section-left.visible,
.info-section-right.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Ensure child elements are visible when parent is visible */
.info-section-left.visible .benefit-item,
.info-section-right.visible .industry-item {
    opacity: 1 !important;
    visibility: visible !important;
    display: block !important;
}

.info-section-left h2,
.info-section-right h2 {
    font-size: 1.8rem;
    font-weight: 800;
    margin: 0.8rem 0 1.5rem;
    font-family: 'Space Grotesk', sans-serif;
}

.benefits-list,
.industries-compact {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    width: 100%;
    overflow: visible;
}

.benefit-item,
.industry-item {
    padding: 1rem;
    background: rgba(255, 255, 255, 0.04);
    border-left: 3px solid var(--primary);
    border-radius: 10px;
    color: var(--text-light);
    font-size: 0.95rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 1 !important;
    transform: translateX(0);
    word-wrap: break-word;
    overflow-wrap: break-word;
    white-space: normal;
    line-height: 1.6;
    min-height: auto;
    height: auto;
    display: block !important;
    visibility: visible !important;
    position: relative;
    z-index: 1;
}

/* Optional: Animate items when parent section becomes visible (for smooth entrance effect) */
.info-section-left.visible .benefit-item,
.info-section-right.visible .industry-item {
    /* Items are already visible, animation is optional enhancement */
}

.benefit-item:hover,
.industry-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(15px) scale(1.02);
    border-left-width: 5px;
    box-shadow: 0 5px 20px rgba(233, 69, 96, 0.2);
}

/* Contact Section */
.contact {
    position: relative;
    padding: 8rem 0;
    overflow: hidden;
}

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

.contact-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.contact-layout {
    position: relative;
    z-index: 1;
    max-width: 1000px;
    margin: 0 auto;
}

.contact-header {
    text-align: center;
    margin-bottom: 4rem;
    opacity: 0;
    transform: translateY(50px);
    transition: all 1s ease;
}

.contact-header.visible {
    opacity: 1;
    transform: translateY(0);
}

.contact-header h2 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 800;
    margin: 1rem 0;
    font-family: 'Space Grotesk', sans-serif;
}

.contact-header p {
    font-size: 1.1rem;
    color: var(--text-muted);
}

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

.contact-box {
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(20px);
    border: 1px solid var(--border);
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    transform: translateY(50px) rotateX(20deg);
    position: relative;
    overflow: hidden;
}

.contact-box::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(233, 69, 96, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.contact-box:hover::before {
    opacity: 1;
}

.contact-box.visible {
    opacity: 1;
    transform: translateY(0) rotateX(0);
}

.contact-box:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: var(--primary);
    transform: translateY(-15px) rotateX(0) scale(1.05);
    box-shadow: 0 20px 50px rgba(233, 69, 96, 0.3);
}

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

.contact-box p {
    color: var(--text-light);
    line-height: 1.8;
    font-size: 1.05rem;
}

.contact-box a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 700;
    font-size: 1.2rem;
    transition: color 0.3s ease;
    cursor: pointer;
    display: inline-block;
}

.contact-box a:hover {
    color: var(--text);
}

.contact-box a:active {
    transform: scale(0.98);
}

.contact-link {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    color: var(--primary);
    text-decoration: none;
    font-weight: 700;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    cursor: pointer;
    user-select: none;
    -webkit-tap-highlight-color: transparent;
}

.contact-link:hover {
    color: var(--text);
    transform: translateX(5px);
}

.contact-link:active {
    transform: translateX(3px) scale(0.98);
}

.contact-icon {
    width: 24px;
    height: 24px;
    transition: all 0.3s ease;
    cursor: pointer;
    pointer-events: auto;
    flex-shrink: 0;
    user-select: none;
}

.contact-link:hover .contact-icon {
    transform: rotate(15deg) scale(1.15);
    color: var(--text);
}

.contact-link:active .contact-icon {
    transform: rotate(15deg) scale(1.05);
}

.contact-link:focus {
    outline: 2px solid var(--primary);
    outline-offset: 4px;
    border-radius: 4px;
}

.contact-social {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
}

.social-link {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.8rem 1.5rem;
    background: rgba(233, 69, 96, 0.1);
    border: 1px solid rgba(233, 69, 96, 0.3);
    border-radius: 50px;
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    user-select: none;
    -webkit-tap-highlight-color: transparent;
    position: relative;
}

.social-link::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(233, 69, 96, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.4s ease, height 0.4s ease;
    pointer-events: none;
}

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

.social-link:hover {
    background: rgba(233, 69, 96, 0.2);
    border-color: var(--primary);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 10px 30px rgba(233, 69, 96, 0.3);
    color: var(--text);
}

.social-link:active {
    transform: translateY(-1px) scale(1.02);
}

.social-link:focus {
    outline: 2px solid var(--primary);
    outline-offset: 4px;
}

.social-icon {
    width: 20px;
    height: 20px;
    transition: all 0.3s ease;
    cursor: pointer;
    pointer-events: auto;
    flex-shrink: 0;
    user-select: none;
    position: relative;
    z-index: 1;
}

.social-link:hover .social-icon {
    transform: scale(1.25) rotate(5deg);
}

.social-link:active .social-icon {
    transform: scale(1.15) rotate(3deg);
}

/* Footer */
.footer {
    background: var(--surface);
    padding: 4rem 0 2rem;
    border-top: 1px solid var(--border);
}

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

.footer-brand h3 {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, #fff 0%, var(--primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-brand p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.footer-nav {
    display: flex;
    gap: 2.5rem;
}

.footer-nav a {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.footer-nav a:hover {
    color: var(--primary);
}

.footer-copyright {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--border);
    color: var(--text-muted);
}

/* Animations */
@keyframes slideInLeft {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slide-in-left {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

/* Media Count Info - Added to HTML as comment */
/* На сайте: 3 видео (Hero, Services, Info) и 2 фото (About, Contact) */

/* Responsive */
@media (max-width: 1200px) {
    .container {
        padding: 0 30px;
    }

    .hero-title {
        font-size: clamp(3rem, 7vw, 6rem);
    }

    .about-layout {
        gap: 3rem;
    }

    .info-layout {
        gap: 3rem;
    }

    .service-compact {
        padding: 2rem;
    }
}

@media (max-width: 968px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: rgba(10, 10, 15, 0.98);
        width: 100%;
        height: calc(100vh - 70px);
        text-align: center;
        transition: left 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        padding: 2rem 0;
        backdrop-filter: blur(20px);
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
        overflow-y: auto;
        z-index: 1000;
    }

    .nav-menu.active {
        left: 0;
    }

    body.menu-open {
        overflow: hidden;
    }

    .hamburger {
        display: flex;
        z-index: 1001;
        position: relative;
    }

    .hamburger span {
        background: var(--text);
        transition: all 0.3s ease;
    }

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

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

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

    .nav-menu li {
        margin: 0.5rem 0;
    }

    .nav-menu a {
        font-size: 1.1rem;
        padding: 0.8rem 0;
        display: block;
    }

    .hero-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .hero-stats {
        flex-direction: column;
        gap: 2rem;
    }

    .hero-actions {
        flex-direction: column;
        align-items: center;
    }

    .hero-btn-primary,
    .hero-btn-secondary {
        width: 100%;
        max-width: 300px;
    }

    .about-layout,
    .info-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .info-section-left,
    .info-section-right {
        padding: 1.5rem;
    }

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

    .contact-box {
        padding: 2rem;
    }

    .footer-wrapper {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }

    .footer-nav {
        flex-direction: column;
        gap: 1rem;
    }

    .price-compact {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .price-value {
        font-size: 1.3rem;
    }

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

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

    .navbar {
        padding: 1rem 0;
    }

    .logo {
        font-size: 1.2rem;
    }

    .hero-content {
        padding: 5rem 0 3rem;
    }

    .hero-title {
        font-size: clamp(2.2rem, 7vw, 4rem);
        gap: 0.5rem;
        flex-direction: column;
        align-items: center;
    }

    .hero-subtitle {
        font-size: 1rem;
        padding: 0 1rem;
    }

    .hero-description {
        padding: 0 1rem;
    }

    .hero-description p {
        font-size: 0.95rem;
    }

    .hero-highlight-text {
        font-size: 1rem;
    }

    .hero-actions {
        flex-direction: column;
        gap: 1rem;
        width: 100%;
        padding: 0 1rem;
    }

    .hero-btn-primary,
    .hero-btn-secondary {
        width: 100%;
        max-width: 100%;
        padding: 1rem 2rem;
    }

    .hero-stats {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: 2rem;
        padding: 0 1rem;
    }

    .stat-item {
        flex: 0 0 auto;
    }

    .about,
    .services,
    .pricing,
    .info,
    .contact {
        padding: 4rem 0;
    }

    .about-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .about-media {
        order: 2;
    }

    .about-content {
        order: 1;
    }

    .section-tag {
        font-size: 0.75rem;
        padding: 0.5rem 1.2rem;
    }

    .about-content h2,
    .services-intro h2,
    .pricing-intro h2,
    .contact-header h2 {
        font-size: clamp(1.8rem, 6vw, 2.5rem);
    }

    .info-section-left h2,
    .info-section-right h2 {
        font-size: 1.4rem;
        margin: 0.5rem 0 1rem;
    }

    .benefit-item,
    .industry-item {
        padding: 0.9rem;
        font-size: 0.9rem;
    }

    .contact-box {
        padding: 1.5rem;
    }

    .contact-box h4 {
        font-size: 1.1rem;
    }

    .contact-box p {
        font-size: 0.9rem;
    }

    .contact-link {
        font-size: 0.95rem;
        flex-direction: column;
        gap: 0.5rem;
    }

    .contact-icon {
        width: 20px;
        height: 20px;
    }

    .social-link {
        padding: 0.7rem 1.2rem;
        font-size: 0.9rem;
    }

    .service-compact {
        padding: 1.8rem;
    }

    .service-compact h3 {
        font-size: 1.2rem;
    }

    .service-desc {
        font-size: 0.95rem;
    }

    .service-text {
        font-size: 0.9rem;
    }

    .service-features span {
        font-size: 0.85rem;
        padding: 0.5rem 1rem;
    }

    .price-compact {
        padding: 1.3rem;
        flex-direction: column;
        align-items: flex-start;
        gap: 0.8rem;
    }

    .price-name {
        font-size: 0.95rem;
    }

    .price-value {
        font-size: 1.1rem;
    }

    .pricing-compact {
        gap: 1rem;
    }

    .mission-card {
        padding: 1.5rem;
    }

    .mission-card h3 {
        font-size: 1.2rem;
    }

    .mission-card p {
        font-size: 0.95rem;
    }

    .values-compact {
        flex-wrap: wrap;
        gap: 0.8rem;
    }

    .value-compact {
        font-size: 0.85rem;
        padding: 0.6rem 1.2rem;
    }

    .footer {
        padding: 3rem 0 1.5rem;
    }

    .footer-brand h3 {
        font-size: 1.5rem;
    }

    .scroll-down {
        bottom: 20px;
    }
}

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

    .navbar {
        padding: 0.8rem 0;
    }

    .logo {
        font-size: 1rem;
    }

    .hero-content {
        padding: 4rem 0 2rem;
    }

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

    .hero-title {
        font-size: clamp(1.8rem, 8vw, 3rem);
        gap: 0.3rem;
    }

    .hero-subtitle {
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
    }

    .hero-description {
        margin-bottom: 2rem;
    }

    .hero-description p {
        font-size: 0.85rem;
        margin-bottom: 1rem;
    }

    .hero-highlight-text {
        font-size: 0.9rem;
    }

    .hero-stats {
        gap: 1.2rem;
        margin-bottom: 2rem;
    }

    .stat-number {
        font-size: 1.8rem;
    }

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

    .hero-actions {
        gap: 0.8rem;
        margin-bottom: 2rem;
    }

    .hero-btn-primary,
    .hero-btn-secondary {
        padding: 0.9rem 1.5rem;
        font-size: 0.9rem;
    }

    .about,
    .services,
    .pricing,
    .info,
    .contact {
        padding: 3rem 0;
    }

    .about-layout,
    .info-layout {
        gap: 1.5rem;
    }

    .about-content h2,
    .services-intro h2,
    .pricing-intro h2,
    .contact-header h2 {
        font-size: clamp(1.5rem, 6vw, 2rem);
        margin: 0.5rem 0 1rem;
    }

    .info-section-left,
    .info-section-right {
        padding: 1rem;
    }

    .info-section-left h2,
    .info-section-right h2 {
        font-size: 1.2rem;
        margin: 0.3rem 0 0.8rem;
    }

    .benefit-item,
    .industry-item {
        padding: 0.8rem;
        font-size: 0.85rem;
    }

    .contact-box {
        padding: 1rem;
    }

    .contact-box h4 {
        font-size: 1rem;
        margin-bottom: 0.8rem;
    }

    .contact-box p {
        font-size: 0.85rem;
    }

    .contact-link {
        font-size: 0.9rem;
    }

    .contact-icon {
        width: 18px;
        height: 18px;
    }

    .social-link {
        flex-direction: column;
        gap: 0.4rem;
        padding: 0.7rem 1rem;
        font-size: 0.85rem;
    }

    .social-icon {
        width: 18px;
        height: 18px;
    }

    .service-compact {
        padding: 1.5rem;
    }

    .service-compact h3 {
        font-size: 1.1rem;
    }

    .service-desc {
        font-size: 0.9rem;
        margin-bottom: 0.8rem;
    }

    .service-text {
        font-size: 0.85rem;
        margin-bottom: 1rem;
    }

    .service-features {
        gap: 0.6rem;
        margin-bottom: 1rem;
    }

    .service-features span {
        font-size: 0.8rem;
        padding: 0.4rem 0.8rem;
    }

    .service-outcome-compact {
        padding: 0.8rem 1rem;
        font-size: 0.85rem;
    }

    .price-compact {
        padding: 1rem;
    }

    .price-name {
        font-size: 0.9rem;
    }

    .price-value {
        font-size: 1rem;
    }

    .mission-card {
        padding: 1.2rem;
        margin: 1.5rem 0;
    }

    .mission-card h3 {
        font-size: 1.1rem;
        margin-bottom: 0.8rem;
    }

    .mission-card p {
        font-size: 0.9rem;
    }

    .value-compact {
        font-size: 0.8rem;
        padding: 0.5rem 1rem;
    }

    .footer {
        padding: 2rem 0 1rem;
    }

    .footer-brand h3 {
        font-size: 1.3rem;
    }

    .footer-brand p {
        font-size: 0.85rem;
    }

    .footer-nav {
        gap: 0.8rem;
    }

    .footer-nav a {
        font-size: 0.9rem;
    }

    .scroll-down {
        display: none;
    }
}

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

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

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

    .hero-description p {
        font-size: 0.8rem;
    }

    .stat-number {
        font-size: 1.5rem;
    }

    .service-compact {
        padding: 1.2rem;
    }

    .info-section-left,
    .info-section-right {
        padding: 0.8rem;
    }

    .contact-box {
        padding: 0.8rem;
    }
}
