@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@300;400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;500;600;700;800;900&display=swap');

:root {
    
    --cosmic-purple: #8B5CF6;
    --cosmic-blue: #3B82F6;
    --cosmic-cyan: #06B6D4;
    --cosmic-pink: #EC4899;
    --cosmic-orange: #F97316;
    
    
    --dark-space: #0A0A0F;
    --deep-space: #1A1A2E;
    --space-gray: #16213E;
    --nebula-dark: #0F0F23;
      
    --star-light: #FFFFFF;
    --moon-glow: #F8FAFC;
    --comet-tail: #E2E8F0;
    --galaxy-dust: #64748B;
    
    
    --dark-bg: #0F0F23;
    --darker-bg: #0A0A0F;
    --light-gray: #F8FAFC;
    --medium-gray: #E2E8F0;
    --primary-blue: #3B82F6;
    --border-radius: 10px;
    --card-bg: #1A1A2E;
    --card-border-radius: 15px;
    
    
    --neon-green: #00FF88;
    --neon-blue: #00BFFF;
    --neon-purple: #BF00FF;
    --neon-pink: #FF007F;
      
    --cosmic-gradient: linear-gradient(135deg, var(--cosmic-purple) 0%, var(--cosmic-blue) 50%, var(--cosmic-cyan) 100%);
    --gradient-primary: linear-gradient(135deg, var(--cosmic-blue) 0%, var(--cosmic-purple) 50%, var(--cosmic-pink) 100%);
    --brand-gradient: linear-gradient(135deg, var(--cosmic-pink) 0%, var(--cosmic-purple) 100%);
    --registration-gradient: linear-gradient(135deg, var(--cosmic-blue) 0%, var(--cosmic-cyan) 100%);
    --marketing-gradient: linear-gradient(135deg, var(--cosmic-orange) 0%, var(--cosmic-pink) 100%);
    --rainbow-gradient: linear-gradient(45deg, #ff0000, #ff8c00, #ffd700, #32cd32, #00bfff, #8a2be2, #ff1493);
    
    
    --glow-effect: 0 0 20px currentColor, 0 0 40px currentColor, 0 0 80px currentColor;
    --cosmic-shadow: 0 25px 50px rgba(139, 92, 246, 0.3);
    --nebula-shadow: 0 0 100px rgba(59, 130, 246, 0.2);
}

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

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

html, body {
  max-width: 100vw;
  overflow-x: hidden;
}

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

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

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

.gradient-text {
    background: var(--cosmic-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
}

.cosmic-text {
    background: var(--rainbow-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: rainbow-shift 3s ease-in-out infinite;
}

@keyframes rainbow-shift {
    0%, 100% { filter: hue-rotate(0deg); }
    50% { filter: hue-rotate(180deg); }
}


.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    background: radial-gradient(ellipse at center, rgba(139, 92, 246, 0.1) 0%, var(--dark-space) 70%);
}


.stars-field {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(2px 2px at 20% 30%, #fff, transparent),
        radial-gradient(2px 2px at 40% 70%, rgba(255,255,255,0.8), transparent),
        radial-gradient(1px 1px at 90% 40%, #fff, transparent),
        radial-gradient(1px 1px at 50% 50%, rgba(255,255,255,0.6), transparent);
    background-repeat: repeat;
    background-size: 550px 550px, 350px 350px, 250px 250px, 150px 150px;
    animation: float-stars 120s linear infinite;
}

@keyframes float-stars {
    from { transform: translateY(0); }
    to { transform: translateY(-2000px); }
}


.falling-objects {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.falling-object {
    position: absolute;
    width: 40px;
    height: 40px;
    opacity: 0.7;
    animation: fall-and-glow 15s linear infinite;
}

.falling-object.palette::before {
    content: '🎨';
    font-size: 30px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    filter: drop-shadow(0 0 10px var(--cosmic-pink));
}

.falling-object.building::before {
    content: '🏢';
    font-size: 30px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    filter: drop-shadow(0 0 10px var(--cosmic-blue));
}

.falling-object.megaphone::before {
    content: '📢';
    font-size: 30px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    filter: drop-shadow(0 0 10px var(--cosmic-orange));
}

.falling-object.rocket::before {
    content: '🚀';
    font-size: 30px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    filter: drop-shadow(0 0 10px var(--neon-green));
}

.falling-object.diamond::before {
    content: '💎';
    font-size: 30px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    filter: drop-shadow(0 0 10px var(--neon-blue));
}

.falling-object.star::before {
    content: '⭐';
    font-size: 30px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    filter: drop-shadow(0 0 10px var(--neon-purple));
}

.falling-object.circle {
    background: var(--cosmic-gradient);
    border-radius: 50%;
    filter: blur(2px);
}

.falling-object.triangle {
    width: 0;
    height: 0;
    border-left: 20px solid transparent;
    border-right: 20px solid transparent;
    border-bottom: 35px solid var(--cosmic-cyan);
    filter: drop-shadow(0 0 10px var(--cosmic-cyan));
}

@keyframes fall-and-glow {
    0% {
        transform: translateY(-100vh) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 0.7;
    }
    90% {
        opacity: 0.7;
    }
    100% {
        transform: translateY(100vh) rotate(360deg);
        opacity: 0;
    }
}


.falling-object:nth-child(1) { left: 10%; animation-delay: 0s; animation-duration: 12s; }
.falling-object:nth-child(2) { left: 20%; animation-delay: 2s; animation-duration: 14s; }
.falling-object:nth-child(3) { left: 30%; animation-delay: 4s; animation-duration: 16s; }
.falling-object:nth-child(4) { left: 40%; animation-delay: 1s; animation-duration: 13s; }
.falling-object:nth-child(5) { left: 60%; animation-delay: 3s; animation-duration: 15s; }
.falling-object:nth-child(6) { left: 70%; animation-delay: 5s; animation-duration: 11s; }
.falling-object:nth-child(7) { left: 80%; animation-delay: 2.5s; animation-duration: 17s; }
.falling-object:nth-child(8) { left: 90%; animation-delay: 4.5s; animation-duration: 12s; }


.floating-particles {
    position: absolute;
    width: 100%;
    height: 100%;
}

.floating-particles::before,
.floating-particles::after {
    content: '';
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--neon-blue);
    border-radius: 50%;
    box-shadow: var(--glow-effect);
    animation: float-particle 8s ease-in-out infinite;
}

.floating-particles::before {
    top: 20%;
    left: 15%;
    animation-delay: 0s;
}

.floating-particles::after {
    top: 60%;
    right: 20%;
    animation-delay: 4s;
}

@keyframes float-particle {
    0%, 100% { transform: translateY(0) scale(1); opacity: 0.5; }
    50% { transform: translateY(-30px) scale(1.2); opacity: 1; }
}


.cosmic-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.3) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    animation: pulse-glow 4s ease-in-out infinite;
}

@keyframes pulse-glow {
    0%, 100% { transform: translate(-50%, -50%); opacity: 0.3; }
    50% { transform: translate(-50%, -50%); opacity: 0.6; }
}


.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    padding: 2rem;
}

.hero-badge {
    display: inline-block;
    position: relative;
    background: rgba(139, 92, 246, 0.2);
    border: 1px solid var(--cosmic-purple);
    border-radius: 50px;
    padding: 0.75rem 2rem;
    margin-bottom: 2rem;
    backdrop-filter: blur(10px);
    animation: float-badge 3s ease-in-out infinite;
}

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

.badge-text {
    font-weight: 600;
    color: var(--star-light);
}

.badge-glow {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--cosmic-gradient);
    border-radius: 50px;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.hero-badge:hover .badge-glow {
    opacity: 0.3;
}

.hero-title {
    font-family: 'Orbitron', monospace;
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 2rem;
    letter-spacing: -0.02em;
}

.word-animation {
    display: inline-block;
    animation: word-appear 1s ease-out forwards;
    opacity: 0;
    transform: translateY(50px);
}

.word-animation:nth-child(1) { animation-delay: 0.2s; }
.word-animation:nth-child(2) { animation-delay: 0.4s; }
.word-animation:nth-child(3) { animation-delay: 0.6s; }
.word-animation:nth-child(4) { animation-delay: 0.8s; }

@keyframes word-appear {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--comet-tail);
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}


.typewriter {
    overflow: hidden;
    border-right: 3px solid var(--cosmic-purple);
    white-space: nowrap;
    animation: typewriter 4s steps(40) 1s forwards, blink-cursor 1s infinite;
    width: 0;
}

@keyframes typewriter {
    to { width: 100%; }
}

@keyframes blink-cursor {
    0%, 50% { border-color: var(--cosmic-purple); }
    51%, 100% { border-color: transparent; }
}


@media (max-width: 768px) {
    .typewriter {
        animation: none;
        border-right: none;
        white-space: normal;
        width: auto;
        overflow: visible;
        opacity: 1;
    }
}


.hero-services-preview {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.service-bubble {
    background: rgba(26, 26, 46, 0.8);
    border: 1px solid rgba(139, 92, 246, 0.3);
    border-radius: 50px;
    padding: 1rem 2rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.service-bubble::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--cosmic-gradient);
    z-index: -1;
}

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

.service-bubble i {
    font-size: 1.5rem;
    color: var(--cosmic-purple);
}


.service-bubble:hover i {
    color: var(--cosmic-purple);
    text-shadow: none;
}

.service-bubble span {
    font-weight: 600;
    color: var(--star-light);
}


.cosmic-btn {
    background: var(--cosmic-gradient);
    border: none;
    border-radius: 50px;
    padding: 1.25rem 3rem;
    font-size: 1.1rem;
    font-weight: 700;
    color: white;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
    font-family: inherit;
    transition: transform 0.18s cubic-bezier(0.4,0,0.2,1), box-shadow 0.18s cubic-bezier(0.4,0,0.2,1);
}

.cosmic-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    transition: left 0.5s cubic-bezier(0.4,0,0.2,1);
}

.cosmic-btn:hover::before {
    left: 100%;
}

.cosmic-btn:hover, .cosmic-btn:focus {
  transform: translateY(-3px) scale(1.045);
  box-shadow: 0 6px 24px 0 rgba(139,92,246,0.18), 0 1.5px 6px 0 rgba(59,130,246,0.10);
  outline: none;
}


.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    color: var(--comet-tail);
    font-size: 0.9rem;
    font-weight: 500;
    animation: float-scroll 2s ease-in-out infinite;
}

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

.scroll-dot {
    width: 12px;
    height: 12px;
    background: var(--cosmic-purple);
    border-radius: 50%;
    position: relative;
    animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.2); opacity: 0.8; }
}

.scroll-line {
    width: 2px;
    height: 30px;
    background: linear-gradient(to bottom, var(--cosmic-purple), transparent);
    animation: line-flow 2s ease-in-out infinite;
}

@keyframes line-flow {
    0% { transform: scaleY(0); }
    50% { transform: scaleY(1); }
    100% { transform: scaleY(0); }
}


.service-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 6rem 0;
}

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

.service-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 10;
}

.service-content.reverse {
    direction: rtl;
}

.service-content.reverse > * {
    direction: ltr;
}

.service-number {
    font-family: 'Orbitron', monospace;
    font-size: 8rem;
    font-weight: 900;
    opacity: 0.1;
    position: absolute;
    top: -2rem;
    left: -2rem;
    line-height: 1;
    pointer-events: none;
}

.service-category {
    color: var(--cosmic-purple);
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 0.2em;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.service-title {
    font-family: 'Orbitron', monospace;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 2rem;
}

.title-word {
    display: block;
}

.title-subtitle {
    font-size: 1.25rem;
    color: var(--comet-tail);
    font-weight: 400;
    font-family: 'Inter', sans-serif;
}


.services {
    padding: var(--section-padding);
    background: var(--darker-bg);
}

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

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

.service-card {
    background: var(--card-bg);
    padding: 3rem;
    border-radius: var(--card-border-radius);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

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

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

.service-card.featured {
    border-color: var(--primary-blue);
    box-shadow: 0 20px 40px rgba(59, 130, 246, 0.2);
}

.featured-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--gradient-primary);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
}

.service-card:hover {
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
}

.service-icon {
    position: relative;
    margin-bottom: 2rem;
}

.service-icon i {
    font-size: 3rem;
    color: var(--primary-blue);
    padding: 1.5rem;
    background: rgba(59, 130, 246, 0.1);
    border-radius: 20px;
    display: inline-block;
}

.icon-glow {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-primary);
    border-radius: 20px;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.service-card:hover .icon-glow {
    opacity: 0.2;
}

.service-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--light-gray);
}

.service-description {
    color: var(--medium-gray);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.service-features ul {
    list-style: none;
    margin-bottom: 2rem;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    color: var(--medium-gray);
}

.service-features li i {
    color: var(--accent-emerald);
    font-size: 0.9rem;
}

.service-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--gradient-primary);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
}


.process {
    padding: var(--section-padding);
    background: var(--dark-bg);
}

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

.timeline-item {
    text-align: center;
    position: relative;
}

.timeline-item::after {
    content: '';
    position: absolute;
    top: 50px;
    right: -1rem;
    width: 2rem;
    height: 2px;
    background: var(--gradient-primary);
    opacity: 0.3;
}

.timeline-item:last-child::after {
    display: none;
}

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

.timeline-icon::before {
    content: attr(data-step);
    position: absolute;
    top: -10px;
    right: -10px;
    width: 30px;
    height: 30px;
    background: var(--accent-emerald);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 700;
    color: white;
}

.timeline-icon i {
    font-size: 2rem;
    color: white;
}

.timeline-content h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--light-gray);
}

.timeline-content p {
    color: var(--medium-gray);
    line-height: 1.6;
}


.why-choose {
    padding: var(--section-padding);
    background: var(--darker-bg);
}

.why-choose-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.benefits-list {
    display: grid;
    gap: 2rem;
}

.benefit-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.benefit-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.benefit-icon i {
    font-size: 1.5rem;
    color: white;
}

.benefit-content h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--light-gray);
}

.benefit-content p {
    color: var(--medium-gray);
    line-height: 1.6;
}

.stats-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.stat-item {
    text-align: center;
    padding: 2rem;
    background: var(--card-bg);
    border-radius: var(--card-border-radius);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-item:hover {
    border-color: var(--primary-blue);
}

.stat-number {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 3rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: var(--medium-gray);
    font-weight: 600;
}


.contact-section {
    background: var(--dark-space);
    position: relative;
}


.contact-network {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 400px;
    opacity: 0.1;
}

.contact-node {
    position: absolute;
    width: 80px;
    height: 80px;
    background: var(--cosmic-gradient);
    border-radius: 50%;
    animation: pulse-network 3s ease-in-out infinite;
}

.contact-node.node-1 {
    top: 0;
    left: 0;
    animation-delay: 0s;
}

.contact-node.node-2 {
    top: 0;
    right: 0;
    animation-delay: 0.5s;
}

.contact-node.node-3 {
    bottom: 0;
    left: 0;
    animation-delay: 1s;
}

.contact-node.node-4 {
    bottom: 0;
    right: 0;
    animation-delay: 1.5s;
}

.contact-connection {
    position: absolute;
    height: 2px;
    background: var(--cosmic-gradient);
    opacity: 0.3;
    animation: connection-flow 4s ease-in-out infinite;
}

.contact-connection.conn-1 {
    top: 40px;
    left: 80px;
    right: 80px;
    animation-delay: 0s;
}

.contact-connection.conn-2 {
    bottom: 40px;
    left: 80px;
    right: 80px;
    animation-delay: 1s;
}

.contact-connection.conn-3 {
    top: 80px;
    bottom: 80px;
    left: 40px;
    width: 2px;
    height: auto;
    animation-delay: 2s;
}

.communication-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.communication-particles::before,
.communication-particles::after {
    content: '';
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--cosmic-cyan);
    border-radius: 50%;
    animation: particle-float 6s ease-in-out infinite;
}

.communication-particles::before {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.communication-particles::after {
    bottom: 30%;
    right: 15%;
    animation-delay: 3s;
}


.contact-showcase {
    background: rgba(26, 26, 46, 0.4);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(139, 92, 246, 0.3);
    border-radius: 20px;
    padding: 2rem;
    position: relative;
    overflow: hidden;
}

.contact-showcase::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(139, 92, 246, 0.1), transparent);
    animation: showcase-shimmer 3s ease-in-out infinite;
}

@keyframes showcase-shimmer {
    0% { left: -100%; }
    50% { left: 100%; }
    100% { left: 100%; }
}

.cosmic-form {
    position: relative;
    z-index: 2;
}

.cosmic-form .form-group {
    position: relative;
    margin-bottom: 1.5rem;
}

.cosmic-form label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--star-light);
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.cosmic-form input,
.cosmic-form select,
.cosmic-form textarea {
    width: 100%;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(139, 92, 246, 0.3);
    border-radius: 10px;
    color: var(--star-light);
    font-family: inherit;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.cosmic-form input:focus,
.cosmic-form select:focus,
.cosmic-form textarea:focus {
    outline: none;
    border-color: var(--cosmic-cyan);
    box-shadow: 0 0 20px rgba(6, 182, 212, 0.3);
    background: rgba(255, 255, 255, 0.08);
}


.cosmic-form select option {
    background: rgba(26, 26, 46, 0.95);
    color: var(--star-light);
    padding: 0.5rem;
    border: none;
    min-height: 40px;
    line-height: 1.4;
}


.cosmic-form select option:hover,
.cosmic-form select option:focus {
    background: var(--cosmic-cyan);
    color: white;
}

.input-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(6, 182, 212, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.3s ease;
    pointer-events: none;
    z-index: 1;
}

.cosmic-form .form-group:focus-within .input-glow {
    width: 120%;
    height: 120%;
}


.contact-btn {
    background: var(--cosmic-gradient);
    position: relative;
    overflow: hidden;
}

.submit-cosmic {
    background: var(--marketing-gradient);
    width: 100%;
    margin-top: 1rem;
}


.form {
    background: var(--card-bg);
    padding: 3rem;
    border-radius: var(--card-border-radius);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    background: var(--dark-bg);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius);
    color: var(--light-gray);
    font-family: inherit;
    transition: all 0.3s ease;
}


.form-group select {
    cursor: pointer;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23E2E8F0'><path d='M7 10l5 5 5-5z'/></svg>");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 20px;
    padding-right: 3rem;
}

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


.form-group select option {
    background: var(--dark-bg);
    color: var(--light-gray);
    padding: 0.5rem;
    border: none;
    min-height: 40px;
    line-height: 1.4;
}


.form-group select option:hover,
.form-group select option:focus {
    background: var(--cosmic-purple);
    color: white;
}

.submit-btn {
    width: 100%;
    background: var(--gradient-primary);
    color: white;
    border: none;
    padding: 1.25rem;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}


.footer {
    background: var(--darker-bg);
    padding: 4rem 0 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-logo img {
    height: 50px;
    filter: brightness(0) invert(1);
    margin-bottom: 1rem;
}

.footer-logo p {
    color: var(--medium-gray);
    max-width: 300px;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.footer-section h4 {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--light-gray);
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.75rem;
}

.footer-section ul li a {
    color: var(--medium-gray);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: var(--primary-blue);
}


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

.social-links a {
    width: 45px;
    height: 45px;
    background: linear-gradient(145deg, 
        rgba(255, 255, 255, 0.05) 0%, 
        rgba(59, 130, 246, 0.1) 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--medium-gray);
    font-size: 1.2rem;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.social-links a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-primary);
    opacity: 0;
    z-index: -1;
    border-radius: 12px;
}

.social-links a:hover::before {
    opacity: 0;
}

.social-links a:hover {
    color: var(--medium-gray);
}


.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--medium-gray);
}


@media (max-width: 768px) {
    .footer {
        overflow-x: hidden;
        padding: 3rem 0 2rem;
    }
    
    .footer .container {
        padding: 0 1.5rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        margin-bottom: 2rem;
    }
    
    .footer-logo {
        text-align: center;
    }
    
    .footer-logo img {
        height: 40px;
        margin-bottom: 0.75rem;
    }
    
    .footer-logo p {
        margin: 0 auto;
        text-align: center;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        text-align: center;
    }
    
    .footer-section h4 {
        margin-bottom: 1rem;
        font-size: 1.1rem;
    }
    
    .footer-section ul li {
        margin-bottom: 0.5rem;
    }
    
    .social-links {
        justify-content: center;
        gap: 0.75rem;
        flex-wrap: wrap;
        max-width: 100%;
    }
    
    .social-links a {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
    }
    
    .footer-bottom {
        padding-top: 1.5rem;
        padding-left: 1rem;
        padding-right: 1rem;
        font-size: 0.9rem;
        line-height: 1.4;
    }
}

@media (max-width: 480px) {
    .footer {
        padding: 2.5rem 0 1.5rem;
    }
    
    .footer .container {
        padding: 0 1rem;
    }
    
    .footer-content {
        gap: 2rem;
        margin-bottom: 1.5rem;
    }
    
    .footer-logo img {
        height: 35px;
    }
    
    .footer-logo p {
        font-size: 0.9rem;
        max-width: 280px;
    }
    
    .footer-links {
        gap: 1.25rem;
    }
    
    .footer-section h4 {
        font-size: 1rem;
        margin-bottom: 0.75rem;
    }
    
    .footer-section ul li {
        margin-bottom: 0.4rem;
    }
    
    .footer-section ul li a {
        font-size: 0.9rem;
    }
    
    .social-links {
        gap: 0.6rem;
        margin-top: 0.5rem;
    }
    
    .social-links a {
        width: 36px;
        height: 36px;
        font-size: 1rem;
        border-radius: 10px;
    }
    
    .footer-bottom {
        padding-top: 1.25rem;
        font-size: 0.85rem;
        padding-left: 0.75rem;
        padding-right: 0.75rem;
    }
}




.brand-section {
    background: radial-gradient(ellipse at center, rgba(236, 72, 153, 0.08) 0%, var(--dark-space) 70%);
    position: relative;
}

.brand-section .section-background {
    background: 
        radial-gradient(circle at 20% 80%, rgba(139, 92, 246, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(59, 130, 246, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(236, 72, 153, 0.06) 0%, transparent 50%);
}


.morphing-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.morph-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(1px);
    opacity: 0.6;
    animation: morphing 20s ease-in-out infinite;
}

.morph-shape.shape-1 {
    width: 300px;
    height: 300px;
    background: linear-gradient(45deg, var(--cosmic-purple), var(--cosmic-pink));
    top: 10%;
    left: 5%;
    animation-delay: 0s;
    animation-duration: 25s;
}

.morph-shape.shape-2 {
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, var(--cosmic-blue), var(--cosmic-cyan));
    top: 60%;
    right: 10%;
    animation-delay: -8s;
    animation-duration: 30s;
}

.morph-shape.shape-3 {
    width: 150px;
    height: 150px;
    background: linear-gradient(225deg, var(--cosmic-orange), var(--cosmic-pink));
    bottom: 20%;
    left: 15%;
    animation-delay: -15s;
    animation-duration: 35s;
}

@keyframes morphing {
    0%, 100% {
        transform: scale(1) rotate(0deg);
        border-radius: 50%;
        opacity: 0.6;
    }
    25% {
        transform: scale(1.2) rotate(90deg);
        border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
        opacity: 0.8;
    }
    50% {
        transform: scale(0.8) rotate(180deg);
        border-radius: 70% 30% 30% 70% / 70% 70% 30% 30%;
        opacity: 0.4;
    }
    75% {
        transform: scale(1.1) rotate(270deg);
        border-radius: 40% 60% 60% 40% / 60% 40% 40% 60%;
        opacity: 0.7;
    }
}


.brand-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.brand-particles::before,
.brand-particles::after {
    content: '';
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--cosmic-purple);
    border-radius: 50%;
    box-shadow: 
        10px 10px 0 var(--cosmic-blue),
        25px 5px 0 var(--cosmic-pink),
        40px 15px 0 var(--cosmic-cyan),
        55px 25px 0 var(--cosmic-orange),
        70px 35px 0 var(--neon-green),
        85px 45px 0 var(--cosmic-purple),
        100px 55px 0 var(--cosmic-blue),
        115px 65px 0 var(--cosmic-pink);
    animation: particleFloat 8s ease-in-out infinite;
}

.brand-particles::after {
    animation-delay: -4s;
    transform: translateX(50px);
}

@keyframes particleFloat {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
        opacity: 0.7;
    }
    25% {
        transform: translateY(-20px) rotate(90deg);
        opacity: 1;
    }
    50% {
        transform: translateY(-10px) rotate(180deg);
        opacity: 0.5;
    }
    75% {
        transform: translateY(-30px) rotate(270deg);
        opacity: 0.8;
    }
}


.brand-showcase {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 2rem;
    width: 100%;
    max-width: 600px;
    position: relative;
}

.showcase-item {
    background: rgba(26, 26, 46, 0.6);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(139, 92, 246, 0.2);
    border-radius: 20px;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.showcase-item::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: var(--cosmic-gradient);
    border-radius: 20px;
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
}

.showcase-item:hover::before {
    opacity: 1;
}

.showcase-item:hover {
    box-shadow: var(--cosmic-shadow);
    border-color: transparent;
}

.showcase-item span {
    color: var(--moon-glow);
    font-weight: 600;
    font-size: 0.9rem;
    text-align: center;
    letter-spacing: 0.05em;
}


.logo-animation {
    grid-column: 1 / 2;
    grid-row: 1 / 2;
}

.animated-logo {
    width: 80px;
    height: 80px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-element {
    position: absolute;
    border-radius: 50%;
    animation: logoSpin 4s ease-in-out infinite;
}

.logo-element.element-1 {
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, var(--cosmic-purple), var(--cosmic-pink));
    animation-delay: 0s;
}

.logo-element.element-2 {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--cosmic-blue), var(--cosmic-cyan));
    animation-delay: -1.3s;
}

.logo-element.element-3 {
    width: 20px;
    height: 20px;
    background: linear-gradient(225deg, var(--neon-green), var(--cosmic-orange));
    animation-delay: -2.6s;
}

@keyframes logoSpin {
    0%, 100% {
        transform: rotate(0deg) scale(1);
        opacity: 0.8;
    }
    33% {
        transform: rotate(120deg) scale(1.1);
        opacity: 1;
    }
    66% {
        transform: rotate(240deg) scale(0.9);
        opacity: 0.6;
    }
}

.showcase-item:hover .logo-element {
    animation-duration: 2s;
}


.color-palette {
    grid-column: 2 / 3;
    grid-row: 1 / 2;
}

.color-swatches {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
    width: 80px;
    height: 80px;
}

.swatch {
    border-radius: 12px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

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

.showcase-item:hover .swatch::before {
    width: 40px;
    height: 40px;
}

.swatch.color-1 {
    background: var(--cosmic-purple);
}

.swatch.color-2 {
    background: var(--cosmic-blue);
}

.swatch.color-3 {
    background: var(--cosmic-pink);
}

.swatch.color-4 {
    background: var(--cosmic-cyan);
}

.showcase-item:hover .swatch {
    transform: scale(1.1);
    box-shadow: 0 0 20px currentColor;
}


.typography {
    grid-column: 1 / 3;
    grid-row: 2 / 3;
}

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

.font-line {
    font-family: 'Orbitron', monospace;
    font-size: 2rem;
    font-weight: 700;
    background: var(--cosmic-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: all 0.4s ease;
    position: relative;
}

.font-line::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    background: var(--brand-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.showcase-item:hover .font-line {
    transform: scale(1.1);
    filter: drop-shadow(0 0 10px var(--cosmic-purple));
}

.showcase-item:hover .font-line::after {
    opacity: 1;
}


.brand-btn {
    background: var(--brand-gradient);
    width: 70%;
    margin-bottom: 2rem;
}


.brand-section .usp-container {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin: 2rem 0;
}

.brand-section .usp-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(26, 26, 46, 0.4);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(139, 92, 246, 0.2);
    border-radius: 15px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.brand-section .usp-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(139, 92, 246, 0.1), transparent);
    transition: left 0.6s ease;
}

.brand-section .usp-item:hover::before {
    left: 100%;
}

.brand-section .usp-item:hover {
    border-color: var(--cosmic-purple);
    box-shadow: 0 10px 30px rgba(139, 92, 246, 0.2);
}

.brand-section .usp-icon {
    width: 50px;
    height: 50px;
    background: var(--brand-gradient);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    flex-shrink: 0;
    position: relative;
}

.brand-section .usp-icon::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: var(--brand-gradient);
    border-radius: 14px;
    opacity: 0;
    z-index: -1;
    transition: opacity 0.3s ease;
}

.brand-section .usp-item:hover .usp-icon::after {
    opacity: 0.5;
}

.brand-section .usp-content h3 {
    color: var(--moon-glow);
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    font-family: 'Space Grotesk', sans-serif;
}

.brand-section .usp-content p {
    color: var(--comet-tail);
    font-size: 0.95rem;
    line-height: 1.6;
}


.registration-section {
    background: linear-gradient(135deg, var(--space-gray) 0%, #0f1629 100%);
    position: relative;
    overflow: hidden;
}

.registration-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 20%, rgba(59, 130, 246, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 70% 80%, rgba(6, 182, 212, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 20% 70%, rgba(139, 92, 246, 0.1) 0%, transparent 40%);
    animation: registrationPulse 8s ease-in-out infinite alternate;
}

@keyframes registrationPulse {
    0% { opacity: 0.4; transform: scale(1); }
    100% { opacity: 0.9; transform: scale(1.02); }
}




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

.document {
    position: absolute;
    width: 60px;
    height: 80px;
    background: linear-gradient(145deg, 
        rgba(255, 255, 255, 0.1) 0%, 
        rgba(139, 92, 246, 0.1) 50%, 
        rgba(59, 130, 246, 0.1) 100%);
    border-radius: 8px;
    border: 1px solid rgba(139, 92, 246, 0.3);
    backdrop-filter: blur(10px);
    animation: floatDocument 8s ease-in-out infinite;
}

.document::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 10px;
    right: 10px;
    height: 4px;
    background: var(--cosmic-blue);
    border-radius: 2px;
    opacity: 0.6;
}

.document::after {
    content: '';
    position: absolute;
    top: 20px;
    left: 10px;
    right: 20px;
    height: 2px;
    background: var(--cosmic-cyan);
    border-radius: 1px;
    opacity: 0.4;
}

.doc-1 {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.doc-2 {
    top: 60%;
    right: 15%;
    animation-delay: 3s;
}

.doc-3 {
    top: 40%;
    left: 80%;
    animation-delay: 6s;
}

@keyframes floatDocument {
    0%, 100% { 
        transform: translateY(0) rotate(0deg); 
        opacity: 0.3; 
    }
    25% { 
        transform: translateY(-20px) rotate(2deg); 
        opacity: 0.7; 
    }
    50% { 
        transform: translateY(-10px) rotate(-1deg); 
        opacity: 0.5; 
    }
    75% { 
        transform: translateY(-30px) rotate(1deg); 
        opacity: 0.8; 
    }
}


.registration-showcase {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    padding: 2rem;
    background: linear-gradient(145deg, 
        rgba(255, 255, 255, 0.05) 0%, 
        rgba(139, 92, 246, 0.1) 100%);
    border-radius: 20px;
    border: 1px solid rgba(139, 92, 246, 0.2);
    backdrop-filter: blur(20px);
    position: relative;
    overflow: hidden;
}

.registration-showcase::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(from 0deg, 
        transparent, 
        rgba(139, 92, 246, 0.1), 
        transparent);
    animation: registrationRotate 10s linear infinite;
    z-index: -1;
}

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


.legal-process {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    position: relative;
}

.process-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    position: relative;
    z-index: 2;
}

.step-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(145deg, 
        var(--cosmic-blue) 0%, 
        var(--cosmic-cyan) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    position: relative;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.3);
}

.step-icon::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: var(--registration-gradient);
    border-radius: 50%;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.process-step.active .step-icon::before {
    opacity: 1;
    animation: stepGlow 2s ease-in-out infinite alternate;
}

@keyframes stepGlow {
    0% { box-shadow: 0 0 20px rgba(59, 130, 246, 0.5); }
    100% { box-shadow: 0 0 40px rgba(59, 130, 246, 0.8); }
}

.process-step span {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--comet-tail);
    text-align: center;
    max-width: 80px;
}

.process-step.active span {
    color: var(--cosmic-cyan);
}

.process-connector {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, 
        var(--cosmic-blue) 0%, 
        var(--cosmic-cyan) 100%);
    position: relative;
    border-radius: 2px;
}

.process-connector::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 100%;
    background: var(--neon-green);
    border-radius: 2px;
    animation: progressFill 3s ease-in-out infinite;
}

@keyframes progressFill {
    0% { width: 0%; }
    50% { width: 100%; }
    100% { width: 0%; }
}


.certificate-animation {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 2rem;
}

.certificate {
    width: 200px;
    height: 150px;
    background: linear-gradient(145deg, 
        rgba(255, 255, 255, 0.15) 0%, 
        rgba(139, 92, 246, 0.1) 100%);
    border-radius: 15px;
    border: 2px solid var(--cosmic-blue);
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding: 1rem;
    animation: certificateFloat 4s ease-in-out infinite;
    box-shadow: 0 20px 40px rgba(59, 130, 246, 0.2);
}

@keyframes certificateFloat {
    0%, 100% { 
        transform: translateY(0) rotate(0deg) scale(1); 
        box-shadow: 0 20px 40px rgba(59, 130, 246, 0.2); 
    }
    50% { 
        transform: translateY(-10px) rotate(1deg) scale(1.05); 
        box-shadow: 0 30px 60px rgba(59, 130, 246, 0.4); 
    }
}

.cert-seal {
    width: 40px;
    height: 40px;
    background: radial-gradient(circle, 
        var(--cosmic-cyan) 0%, 
        var(--cosmic-blue) 100%);
    border-radius: 50%;
    position: relative;
    border: 3px solid var(--neon-green);
    animation: sealSpin 6s linear infinite;
}

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

.cert-lines {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    width: 100%;
}

.cert-lines::before,
.cert-lines::after {
    content: '';
    height: 3px;
    background: var(--cosmic-blue);
    border-radius: 2px;
    opacity: 0.6;
}

.cert-lines::before {
    width: 80%;
    margin: 0 auto;
}

.cert-lines::after {
    width: 60%;
    margin: 0 auto;
}


.usp-container {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin: 3rem 0;
}

.usp-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 2rem;
    background: linear-gradient(145deg, 
        rgba(255, 255, 255, 0.05) 0%, 
        rgba(139, 92, 246, 0.08) 100%);
    border-radius: 15px;
    border: 1px solid rgba(139, 92, 246, 0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.usp-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(139, 92, 246, 0.1), 
        transparent);
    transition: left 0.6s ease;
}

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

.usp-item:hover {
    padding-left: 2rem;
    padding-right: 2rem;
    border-color: var(--cosmic-purple);
    box-shadow: 0 10px 30px rgba(139, 92, 246, 0.2);
}

.usp-icon {
    min-width: 60px;
    height: 60px;
    background: var(--registration-gradient);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.3);
}

.usp-content h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--star-light);
    margin-bottom: 0.5rem;
    font-family: 'Orbitron', monospace;
}

.usp-content p {
    color: var(--comet-tail);
    line-height: 1.6;
    font-size: 1rem;
}


.registration-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
}

.modal-content {
    background: linear-gradient(145deg, 
        var(--space-gray) 0%, 
        var(--deep-space) 100%);
    border-radius: 20px;
    border: 1px solid rgba(139, 92, 246, 0.3);
    width: 90%;
    max-width: 600px;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    z-index: 1;
    box-shadow: 0 25px 50px rgba(139, 92, 246, 0.3);
}

.modal-header {
    padding: 2rem;
    border-bottom: 1px solid rgba(139, 92, 246, 0.2);
    display: flex;
    justify-content: between;
    align-items: center;
}

.modal-header h2 {
    font-family: 'Orbitron', monospace;
    font-size: 1.5rem;
    margin: 0;
}

.modal-close {
    background: none;
    border: none;
    color: var(--star-light);
    font-size: 2rem;
    cursor: pointer;
    padding: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.modal-close:hover {
    background: rgba(139, 92, 246, 0.1);
}

.modal-body {
    padding: 2rem;
}

.step-indicator {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.step {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(139, 92, 246, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    color: var(--comet-tail);
    transition: all 0.3s ease;
}

.step.active {
    background: var(--cosmic-gradient);
    color: white;
    box-shadow: 0 0 20px rgba(139, 92, 246, 0.5);
}

.form-section {
    display: none;
}

.form-section.active {
    display: block;
    animation: fadeInUp 0.3s ease;
}

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

.form-section h3 {
    font-family: 'Orbitron', monospace;
    color: var(--cosmic-cyan);
    margin-bottom: 1.5rem;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    background: var(--dark-bg);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius);
    color: var(--light-gray);
    font-family: inherit;
    transition: all 0.3s ease;
}


.form-group select {
    cursor: pointer;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23FFFFFF'><path d='M7 10l5 5 5-5z'/></svg>");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 20px;
    padding-right: 3rem;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--cosmic-cyan);
    box-shadow: 0 0 20px rgba(6, 182, 212, 0.3);
    background: rgba(255, 255, 255, 0.08);
}


.form-group select option {
    background: var(--dark-space);
    color: var(--star-light);
    padding: 0.5rem;
    border: none;
    min-height: 40px;
    line-height: 1.4;
}


.form-group select option:hover,
.form-group select option:focus {
    background: var(--cosmic-cyan);
    color: white;
}

.package-options {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.package-option {
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border:  1px solid rgba(139, 92, 246,  0.2);
    border-radius: 15px;
    cursor: pointer;
    text-align: center;
}

.package-option:hover {
    border-color: var(--cosmic-cyan);
}

.package-option.selected {
    border-color: var(--cosmic-cyan);
    background: rgba(6, 182, 212, 0.1);
    box-shadow: 0 10px 30px rgba(6, 182, 212, 0.2);
}

.package-option h4 {
    color: var(--cosmic-cyan);
    margin-bottom: 0.5rem;
    font-family: 'Orbitron', monospace;
}

.package-option .price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--star-light);
    margin-bottom: 1rem;
}

.package-option ul {
    list-style: none;
    padding: 0;
    text-align: left;
}

.package-option li {
    padding: 0.25rem 0;
    color: var(--comet-tail);
    font-size: 0.9rem;
}

.package-option li::before {
    content: '✓';
    color: var(--neon-green);
    font-weight: bold;
    margin-right: 0.5rem;
}

.form-navigation {
    display: flex;
    justify-content: space-between;
    margin-top: 2rem;
    gap: 1rem;
}

.btn-prev,
.btn-next {
    padding: 1rem 2rem;
    background: rgba(139, 92, 246, 0.2);
    border: 1px solid var(--cosmic-purple);
    border-radius: 50px;
    color: var(--star-light);
    cursor: pointer;
    font-family: inherit;
    font-weight: 600;
}

.btn-prev:hover,
.btn-next:hover {
    background: var(--cosmic-purple);
}

.btn-prev {
    display: none;
}

@media (max-width: 600px) {
  
  .registration-section {
    padding: 1.5rem 0 !important;
  }
  .registration-showcase {
    padding: 1rem !important;
    gap: 1rem !important;
  }
  
  .modal-content {
    max-height: 90vh !important;
    overflow-y: auto !important;
  }
  .modal-body {
    padding: 0.5rem !important;
  }
  
  .form-group {
    margin-bottom: 0.8rem !important;
  }
}


@media (max-width: 768px) {
    .service-section {
        overflow: visible !important; 
        min-height: auto !important; 
        padding: 4rem 0 !important; 
    }
    
    .service-section .service-content,
    .service-section .service-content.reverse {
        display: flex !important;
        flex-direction: column !important;
        gap: 2rem !important;
        direction: ltr !important;
    }
    .service-section .service-content > *,
    .service-section .service-content.reverse > * {
        width: 100%;
        max-width: 100%;
        direction: ltr !important;
        text-align: left;
    }
    
    .service-section .service-content {
        flex-direction: column !important;
    }
    .service-section .service-content.reverse {
        flex-direction: column !important;
    }
    
    
    .contact-section .container {
        padding: 0 1.5rem !important;
        margin: 0 auto !important;
        max-width: 100% !important;
    }
    
    .contact-section .service-content {
        align-items: center !important;
        text-align: center !important;
    }
    
    .contact-section .service-info {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        text-align: center !important;
        width: 100% !important;
        max-width: 500px !important;
        margin: 0 auto !important;
    }
    
    .contact-section .service-visual {
        width: 100% !important;
        max-width: 500px !important;
        margin: 0 auto !important;
    }
    
    .contact-section .usp-container {
        width: 100% !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        gap: 1.5rem !important;
    }
    
    .contact-section .usp-item {
        width: 100% !important;
        max-width: 400px !important;
        text-align: center !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
    }
}

@media (max-width: 768px) {
    .registration-section {
        overflow-x: hidden !important;
    }
}

@media (max-width: 480px) {
    .registration-section {
        overflow-x: hidden !important;
    }
}


@media (max-width: 768px) {
    .registration-section {
        padding: 4rem 0;
    }
    
    .registration-section .service-number {
        font-size: 4rem;
        margin-bottom: 1rem;
    }
    
    .registration-section .service-title {
        font-size: 2.5rem;
        margin-bottom: 1.5rem;
    }
    
    .registration-section .title-subtitle {
        font-size: 1rem;
    }
    
    
    .legal-grid .grid-line {
        opacity: 0.3;
    }
    
    
    .floating-documents .document {
        width: 40px;
        height: 55px;
    }
    
    .document.doc-3 {
        display: none; 
    }
    
    
    .registration-showcase {
        padding: 2rem;
        gap: 2rem;
    }
    
    .legal-process {
        gap: 1rem;
    }
    
    .process-step {
        padding: 1rem;
        min-width: 120px;
    }
    
    .step-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
        margin-bottom: 0.5rem;
    }
    
    .process-step span {
        font-size: 0.8rem;
    }
    
    .process-connector {
        height: 20px;
    }
    
    
    .certificate-animation {
        margin-top: 1rem;
    }
    
    .certificate {
        width: 120px;
        height: 90px;
    }
    
    .cert-seal {
        width: 30px;
        height: 30px;
        top: 15px;
        right: 15px;
    }
    
    
    .usp-container {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin: 2rem 0;
    }
    
    .usp-item {
        padding: 1.5rem;
        text-align: left;
    }
    
    .usp-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
        margin-bottom: 1rem;
    }
    
    .usp-content h3 {
        font-size: 1.1rem;
        margin-bottom: 0.5rem;
    }
    
    .usp-content p {
        font-size: 0.9rem;
        line-height: 1.5;
    }
    
    
    .cosmic-btn {
        padding: 1rem 2rem;
        font-size: 1rem;
    }
    
    .cosmic-btn i {
        font-size: 1.2rem;
    }
    
    .cta-note {
        font-size: 0.85rem;
        margin-top: 1rem;
    }
}


@media (max-width: 480px) {
    .contact-section .container {
        padding: 0 1rem !important;
    }
    
    .contact-section .service-content {
        gap: 1.5rem !important;
    }
    
    .contact-section .service-info,
    .contact-section .service-visual {
        max-width: 100% !important;
        padding: 0 0.5rem !important;
    }
    
    .contact-section .usp-item {
        max-width: 100% !important;
        padding: 1.5rem 1rem !important;
    }
    
    .contact-section .contact-showcase {
        margin: 0 auto !important;
        max-width: 100% !important;
    }
    
    .contact-section .cosmic-form {
        width: 100% !important;
    }
}


@media (max-width: 480px) {
    .registration-section {
        padding: 3rem 0;
    }
    
    .container {
        padding: 0 1rem;
    }
    
    .registration-section .service-number {
        font-size: 3rem;
        margin-bottom: 0.5rem;
    }
    
    .registration-section .service-category {
        font-size: 0.8rem;
    }
    
    .registration-section .service-title {
        font-size: 2rem;
        line-height: 1.2;
        margin-bottom: 1rem;
    }
    
    .registration-section .title-subtitle {
        font-size: 0.9rem;
        margin-top: 0.5rem;
    }
    
    
    .floating-documents .document {
        width: 35px;
        height: 45px;
    }
    
    .document::before {
        top: 8px;
        left: 8px;
        right: 8px;
        height: 3px;
    }
    
    .document::after {
        top: 15px;
        left: 8px;
        right: 15px;
        height: 2px;
    }
    
    
    .registration-showcase {
        padding: 1.5rem;
        gap: 1.5rem;
        border-radius: 15px;
    }
    
    .legal-process {
        gap: 0.8rem;
    }
    
    .process-step {
        padding: 0.8rem;
        min-width: 100px;
        border-radius: 10px;
    }
    
    .step-icon {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
        margin-bottom: 0.3rem;
    }
    
    .process-step span {
        font-size: 0.7rem;
        line-height: 1.2;
    }
    
    .process-connector {
        height: 15px;
    }
    
    
    .certificate {
        width: 100px;
        height: 75px;
    }
    
    .cert-seal {
        width: 25px;
        height: 25px;
        top: 12px;
        right: 12px;
    }
    
    .cert-lines {
        gap: 3px;
    }
    
    .cert-lines::before,
    .cert-lines::after {
        height: 2px;
    }
    
    
    .usp-container {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin: 2rem 0;
    }
    
    .usp-item {
        padding: 1.5rem;
        text-align: left;
    }
    
    .usp-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
        margin-bottom: 1rem;
    }
    
    .usp-content h3 {
        font-size: 1.1rem;
        margin-bottom: 0.5rem;
    }
    
    .usp-content p {
        font-size: 0.9rem;
        line-height: 1.4;
    }
    
    
    .cosmic-btn {
        padding: 0.9rem 1.8rem;
        font-size: 0.9rem;
        border-radius: 25px;
    }
    
    .btn-glow {
        border-radius: 25px;
    }
    
    .cosmic-btn i {
        font-size: 1.1rem;
    }
    
    .cta-note {
        font-size: 0.8rem;
        margin-top: 0.8rem;
    }
}


@media (max-width: 360px) {
    .registration-section .service-title {
        font-size: 1.8rem;
    }
    
    .legal-process {
        flex-direction: column;
        align-items: center;
    }
    
    .process-connector {
        width: 1px;
        height: 20px;
        transform: none;
    }
    
    .process-step {
        min-width: 90px;
        padding: 0.7rem;
    }
    
    .step-icon {
        width: 30px;
        height: 30px;
        font-size: 0.8rem;
    }
    
    .process-step span {
        font-size: 0.65rem;
    }
    
    .usp-item {
        padding: 1rem;
    }
    
    .cosmic-btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.85rem;
    }
}


@media (max-width: 768px) {
    .modal-content {
        width: 95%;
        margin: 1rem;
        max-height: 95vh;
        border-radius: 15px;
    }
    
    .modal-header {
        padding: 1.5rem;
    }
    
    .modal-header h2 {
        font-size: 1.3rem;
    }
    
    .modal-body {
        padding: 1.5rem;
    }
    
    .step-indicator {
        gap: 0.5rem;
        margin-bottom: 1.5rem;
    }
    
    .step {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }
    
    .form-section h3 {
        font-size: 1.2rem;
        margin-bottom: 1rem;
    }
    
    .form-group {
        margin-bottom: 1.2rem;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 0.8rem;
        font-size: 1rem; 
    }
    
    .package-options {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .package-option {
        padding: 1.2rem;
    }
    
    .package-option .price {
        font-size: 1.3rem;
    }
    
    .form-navigation {
        flex-direction: column;
        gap: 0.8rem;
    }
    
    .btn-prev,
    .btn-next {
        padding: 0.8rem 1.5rem;
        width: 100%;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .modal-content {
        width: 98%;
        margin: 0.5rem;
        border-radius: 12px;
    }
    
    .modal-header {
        padding: 1rem;
    }
    
    .modal-header h2 {
        font-size: 1.1rem;
    }
    
    .modal-close {
        width: 35px;
        height: 35px;
        font-size: 1.5rem;
    }
    
    .modal-body {
        padding: 1rem;
    }
    
    .step {
        width: 30px;
        height: 30px;
        font-size: 0.8rem;
    }
    
    .form-section h3 {
        font-size: 1.1rem;
    }
    
    .package-option {
        padding: 1rem;
    }
    
    .package-option h4 {
        font-size: 1rem;
    }
    
    .package-option .price {
        font-size: 1.2rem;
    }
    
    .package-option li {
        font-size: 0.8rem;
    }
}


.marketing-section {
    background: radial-gradient(ellipse at center, rgba(59, 130, 246, 0.08) 0%, var(--dark-space) 70%);
    position: relative;
    overflow: hidden;
}


.social-network {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.network-node {
    position: absolute;
    width: 20px;
    height: 20px;
    background: var(--primary-blue);
    border-radius: 50%;
    opacity: 0.6;
    animation: pulseNetwork 3s ease-in-out infinite;
}

.network-node.node-1 {
    top: 20%;
    left: 15%;
    animation-delay: 0s;
}

.network-node.node-2 {
    top: 30%;
    right: 20%;
    animation-delay: 1s;
}

.network-node.node-3 {
    bottom: 40%;
    left: 25%;
    animation-delay: 2s;
}

.network-node.node-4 {
    bottom: 20%;
    right: 15%;
    animation-delay: 0.5s;
}

.network-connection {
    position: absolute;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary-blue), transparent);
    opacity: 0.3;
    animation: dataFlow 4s ease-in-out infinite;
}

.network-connection.conn-1 {
    top: 25%;
    left: 15%;
    width: 200px;
    transform: rotate(15deg);
    animation-delay: 0s;
}

.network-connection.conn-2 {
    top: 35%;
    right: 20%;
    width: 150px;
    transform: rotate(-25deg);
    animation-delay: 1.5s;
}

.network-connection.conn-3 {
    bottom: 25%;
    left: 25%;
    width: 180px;
    transform: rotate(45deg);
    animation-delay: 3s;
}

@keyframes pulseNetwork {
    0%, 100% {
        transform: scale(1);
        opacity: 0.6;
        box-shadow: 0 0 20px rgba(59, 130, 246, 0.3);
    }
    50% {
        transform: scale(1.5);
        opacity: 1;
        box-shadow: 0 0 40px rgba(59, 130, 246, 0.6);
    }
}

@keyframes dataFlow {
    0%, 100% {
        opacity: 0.3;
        transform: scaleX(0);
    }
    50% {
        opacity: 0.8;
        transform: scaleX(1);
    }
}


.engagement-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.engagement-particles::before,
.engagement-particles::after {
    content: '';
    position: absolute;
    width: 8px;
    height: 8px;
    background: var(--accent-emerald);
    border-radius: 50%;
    animation: floatParticles 6s ease-in-out infinite;
}

.engagement-particles::before {
    top: 15%;
    left: 80%;
    animation-delay: 0s;
}

.engagement-particles::after {
    bottom: 15%;
    left: 10%;
    animation-delay: 3s;
}

@keyframes floatParticles {
    0%, 100% {
        transform: translateY(0) scale(1);
        opacity: 0.4;
    }
    50% {
        transform: translateY(-30px) scale(1.2);
        opacity: 0.8;
    }
}


.social-showcase {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    padding: 2rem;
    background: linear-gradient(145deg, 
        rgba(255, 255, 255, 0.05) 0%, 
        rgba(59, 130, 246, 0.1) 100%);
    border-radius: 20px;
    border: 1px solid rgba(59, 130, 246, 0.2);
    backdrop-filter: blur(20px);
    position: relative;
    overflow: hidden;
}

.social-showcase::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(from 0deg, 
        transparent, 
        rgba(59, 130, 246, 0.1), 
        transparent);
    animation: socialRotate 12s linear infinite;
    z-index: -1;
}

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


.social-metrics {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 2rem;
}

.metric {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.metric::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.1), transparent);
    transition: left 0.6s ease;
}

.metric:hover::before {
    left: 100%;
}

.metric:hover {
    transform: translateY(-5px);
    border-color: rgba(59, 130, 246, 0.4);
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.2);
}

.metric-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    border: 2px solid transparent;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
}

.platform-icons {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    justify-items: center;
}

.platform-icon {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    border: 2px solid transparent;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
}

.platform-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 20px;
    padding: 2px;
    background: linear-gradient(45deg, transparent, var(--primary-blue), transparent);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.platform-icon:hover::before {
    opacity: 0;
}

.platform-icon.instagram {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.platform-icon.facebook {
    background: linear-gradient(45deg, #1877f2 0%, #42a5f5 100%);
}

.platform-icon.linkedin {
    background: linear-gradient(45deg, #0077b5 0%, #00a0dc 100%);
}

.platform-icon.youtube {
    background: linear-gradient(45deg, #ff0000 0%, #ff4444 100%);
}


.marketing-btn {
    background: var(--marketing-gradient);
    position: relative;
    overflow: hidden;
}

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

.marketing-btn:hover::before {
    width: 0;
    height: 0;
}


@media (max-width: 768px) {
    .social-metrics {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .platform-icons {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .platform-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .metric-value {
        font-size: 1.5rem;
    }
    
    .social-showcase {
        padding: 1.5rem;
        gap: 2rem;
    }
}

@media (max-width: 480px) {
    .platform-icons {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.8rem;
    }
    
    .platform-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
        border-radius: 15px;
    }
    
    .metric {
        padding: 1rem;
    }
    
    .metric-icon {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    
    .metric-value {
        font-size: 1.2rem;
    }
}


@media (max-width: 768px) {
  
  .registration-section {
    overflow-x: hidden !important;
    padding: 4rem 0 !important;
  }
  
  .registration-section .container {
    padding: 0 1.5rem !important;
    max-width: 100% !important;
    overflow-x: hidden !important;
  }
  
  .registration-section .service-content {
    display: flex !important;
    flex-direction: column !important;
    gap: 2rem !important;
    width: 100% !important;
    max-width: 100% !important;
  }
  
  
  .registration-section .usp-container {
    display: flex !important;
    flex-direction: column !important;
    gap: 1.5rem !important;
    width: 100% !important;
    max-width: 100% !important;
    margin: 2rem 0 !important;
    overflow-x: hidden !important;
  }
  
  
  .registration-section .usp-item {
    display: flex !important;
    align-items: flex-start !important;
    gap: 1rem !important;
    width: 100% !important;
    min-width: 0 !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    padding: 1.5rem 1rem !important;
    word-break: break-word !important;
    overflow-wrap: break-word !important;
    flex-wrap: nowrap !important;
  }
  
  
  .registration-section .usp-icon {
    flex-shrink: 0 !important;
    width: 50px !important;
    height: 50px !important;
    min-width: 50px !important;
  }
  
  
  .registration-section .usp-content {
    flex: 1 !important;
    width: 100% !important;
    min-width: 0 !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    word-break: break-word !important;
    overflow-wrap: break-word !important;
    overflow-x: hidden !important;
  }
  
  
  .registration-section .usp-content h3 {
    font-size: 1.1rem !important;
    line-height: 1.3 !important;
    margin-bottom: 0.5rem !important;
    word-break: break-word !important;
    overflow-wrap: break-word !important;
    hyphens: auto !important;
  }
  
  .registration-section .usp-content p {
    font-size: 0.95rem !important;
    line-height: 1.5 !important;
    word-break: break-word !important;
    overflow-wrap: break-word !important;
    hyphens: auto !important;
    margin: 0 !important;
  }
}

@media (max-width: 480px) {
  
  .registration-section {
    padding: 3rem 0 !important;
  }
  
  .registration-section .container {
    padding: 0 1rem !important;
  }
  
  .registration-section .usp-item {
    padding: 1.2rem 0.8rem !important;
    gap: 0.8rem !important;
  }
  
  .registration-section .usp-icon {
    width: 45px !important;
    height: 45px !important;
    min-width: 45px !important;
    font-size: 1.1rem !important;
  }
  
  .registration-section .usp-content h3 {
    font-size: 1rem !important;
    line-height: 1.3 !important;
  }
  
  .registration-section .usp-content p {
    font-size: 0.9rem !important;
    line-height: 1.4 !important;
  }
}

@media (max-width: 360px) {
  
  .registration-section .container {
    padding: 0 0.8rem !important;
  }
  
  .registration-section .usp-item {
    padding: 1rem 0.5rem !important;
    gap: 0.6rem !important;
  }
  
  .registration-section .usp-icon {
    width: 40px !important;
    height: 40px !important;
    min-width: 40px !important;
    font-size: 1rem !important;
  }
  
  .registration-section .usp-content h3 {
    font-size: 0.95rem !important;
  }
  
  .registration-section .usp-content p {
    font-size: 0.85rem !important;
  }
}


@media (max-width: 768px) {
    .modal-content {
        width: 95%;
        margin: 1rem;
        max-height: 95vh;
        border-radius: 15px;
    }
    
    .modal-header {
        padding: 1.5rem;
    }
    
    .modal-header h2 {
        font-size: 1.3rem;
    }
    
    .modal-body {
        padding: 1.5rem;
    }
    
    .step-indicator {
        gap: 0.5rem;
        margin-bottom: 1.5rem;
    }
    
    .step {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }
    
    .form-section h3 {
        font-size: 1.2rem;
        margin-bottom: 1rem;
    }
    
    .form-group {
        margin-bottom: 1.2rem;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 0.8rem;
        font-size: 1rem; 
    }
    
    .package-options {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .package-option {
        padding: 1.2rem;
    }
    
    .package-option .price {
        font-size: 1.3rem;
    }
    
    .form-navigation {
        flex-direction: column;
        gap: 0.8rem;
    }
    
    .btn-prev,
    .btn-next {
        padding: 0.8rem 1.5rem;
        width: 100%;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .modal-content {
        width: 98%;
        margin: 0.5rem;
        border-radius: 12px;
    }
    
    .modal-header {
        padding: 1rem;
    }
    
    .modal-header h2 {
        font-size: 1.1rem;
    }
    
    .modal-close {
        width: 35px;
        height: 35px;
        font-size: 1.5rem;
    }
    
    .modal-body {
        padding: 1rem;
    }
    
    .step {
        width: 30px;
        height: 30px;
        font-size: 0.8rem;
    }
    
    .form-section h3 {
        font-size: 1.1rem;
    }
    
    .package-option {
        padding: 1rem;
    }
    
    .package-option h4 {
        font-size: 1rem;
    }
    
    .package-option .price {
        font-size: 1.2rem;
    }
    
    .package-option li {
        font-size: 0.8rem;
    }
}


.marketing-section {
    background: radial-gradient(ellipse at center, rgba(59, 130, 246, 0.08) 0%, var(--dark-space) 70%);
    position: relative;
    overflow: hidden;
}


.social-network {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.network-node {
    position: absolute;
    width: 20px;
    height: 20px;
    background: var(--primary-blue);
    border-radius: 50%;
    opacity: 0.6;
    animation: pulseNetwork 3s ease-in-out infinite;
}

.network-node.node-1 {
    top: 20%;
    left: 15%;
    animation-delay: 0s;
}

.network-node.node-2 {
    top: 30%;
    right: 20%;
    animation-delay: 1s;
}

.network-node.node-3 {
    bottom: 40%;
    left: 25%;
    animation-delay: 2s;
}

.network-node.node-4 {
    bottom: 20%;
    right: 15%;
    animation-delay: 0.5s;
}

.network-connection {
    position: absolute;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary-blue), transparent);
    opacity: 0.3;
    animation: dataFlow 4s ease-in-out infinite;
}

.network-connection.conn-1 {
    top: 25%;
    left: 15%;
    width: 200px;
    transform: rotate(15deg);
    animation-delay: 0s;
}

.network-connection.conn-2 {
    top: 35%;
    right: 20%;
    width: 150px;
    transform: rotate(-25deg);
    animation-delay: 1.5s;
}

.network-connection.conn-3 {
    bottom: 25%;
    left: 25%;
    width: 180px;
    transform: rotate(45deg);
    animation-delay: 3s;
}

@keyframes pulseNetwork {
    0%, 100% {
        transform: scale(1);
        opacity: 0.6;
        box-shadow: 0 0 20px rgba(59, 130, 246, 0.3);
    }
    50% {
        transform: scale(1.5);
        opacity: 1;
        box-shadow: 0 0 40px rgba(59, 130, 246, 0.6);
    }
}

@keyframes dataFlow {
    0%, 100% {
        opacity: 0.3;
        transform: scaleX(0);
    }
    50% {
        opacity: 0.8;
        transform: scaleX(1);
    }
}


.engagement-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.engagement-particles::before,
.engagement-particles::after {
    content: '';
    position: absolute;
    width: 8px;
    height: 8px;
    background: var(--accent-emerald);
    border-radius: 50%;
    animation: floatParticles 6s ease-in-out infinite;
}

.engagement-particles::before {
    top: 15%;
    left: 80%;
    animation-delay: 0s;
}

.engagement-particles::after {
    bottom: 15%;
    left: 10%;
    animation-delay: 3s;
}

@keyframes floatParticles {
    0%, 100% {
        transform: translateY(0) scale(1);
        opacity: 0.4;
    }
    50% {
        transform: translateY(-30px) scale(1.2);
        opacity: 0.8;
    }
}


.social-showcase {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    padding: 2rem;
    background: linear-gradient(145deg, 
        rgba(255, 255, 255, 0.05) 0%, 
        rgba(59, 130, 246, 0.1) 100%);
    border-radius: 20px;
    border: 1px solid rgba(59, 130, 246, 0.2);
    backdrop-filter: blur(20px);
    position: relative;
    overflow: hidden;
}

.social-showcase::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(from 0deg, 
        transparent, 
        rgba(59, 130, 246, 0.1), 
        transparent);
    animation: socialRotate 12s linear infinite;
    z-index: -1;
}

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


.social-metrics {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 2rem;
}

.metric {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.metric::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.1), transparent);
    transition: left 0.6s ease;
}

.metric:hover::before {
    left: 100%;
}

.metric:hover {
    transform: translateY(-5px);
    border-color: rgba(59, 130, 246, 0.4);
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.2);
}

.metric-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    border: 2px solid transparent;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
}

.platform-icons {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    justify-items: center;
}

.platform-icon {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    border: 2px solid transparent;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
}

.platform-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 20px;
    padding: 2px;
    background: linear-gradient(45deg, transparent, var(--primary-blue), transparent);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.platform-icon:hover::before {
    opacity: 0;
}

.platform-icon.instagram {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.platform-icon.facebook {
    background: linear-gradient(45deg, #1877f2 0%, #42a5f5 100%);
}

.platform-icon.linkedin {
    background: linear-gradient(45deg, #0077b5 0%, #00a0dc 100%);
}

.platform-icon.youtube {
    background: linear-gradient(45deg, #ff0000 0%, #ff4444 100%);
}


.marketing-btn {
    background: var(--marketing-gradient);
    position: relative;
    overflow: hidden;
}

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

.marketing-btn:hover::before {
    width: 0;
    height: 0;
}
