
:root {
   
    --bg-primary: #0F0E17;
    --bg-secondary: #1A1A2E;
    --bg-tertiary: #2E2C4D;
    --bg-blur: rgba(255, 255, 255, 0.06);
    
 
    --text-primary: #EDEDED;
    --text-secondary: #A1A1AA;
    --text-white: #FFFFFF;
    --text-heading: #F8F9FC;
    --text-accent: #6EE7B7;
    

    --accent-cyan: #22D3EE;
    --accent-gold: #FACC15;
    --accent-indigo: #818CF8;
    --accent-teal: #14B8A6;
    --accent-orange: #D97706;
    
 
    --font-primary: 'Inter', 'Poppins', 'Manrope', sans-serif;
    --font-weight-light: 300;
    --font-weight-normal: 400;
    --font-weight-medium: 500;
    --font-weight-semibold: 600;
    --font-weight-bold: 700;
    
   
    --section-padding: 80px 0;
    --container-padding: 24px;
    
 
    --border-radius-sm: 8px;
    --border-radius-md: 12px;
    --border-radius-lg: 20px;
    
  
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.15);
    --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.2);
    --shadow-glow: 0 0 30px rgba(34, 211, 238, 0.3);
    
   
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
}


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

html, body {
    width: 100%;
    min-width: 0;
    padding: 0;
    margin: 0;
    overflow-x: hidden;
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-primary);
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    font-weight: var(--font-weight-normal);
}


::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-secondary);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(45deg, var(--accent-cyan), var(--accent-teal));
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(45deg, var(--accent-teal), var(--accent-cyan));
}


::selection {
    background: var(--accent-cyan);
    color: var(--text-white);
}


#loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--bg-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.loading-content {
    text-align: center;
}

.loading-logo .loading-text {
    font-size: 2.5rem;
    font-weight: var(--font-weight-bold);
    color: var(--text-heading);
    background: linear-gradient(45deg, var(--accent-cyan), var(--accent-teal));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.loading-dots {
    display: flex;
    gap: 8px;
    justify-content: center;
    margin-top: 20px;
}

.loading-dots span {
    width: 8px;
    height: 8px;
    background: var(--accent-cyan);
    border-radius: 50%;
    animation: loadingPulse 1.5s infinite ease-in-out;
}

.loading-dots span:nth-child(2) {
    animation-delay: 0.3s;
}

.loading-dots span:nth-child(3) {
    animation-delay: 0.6s;
}

@keyframes loadingPulse {
    0%, 80%, 100% {
        opacity: 0.3;
        transform: scale(0.8);
    }
    40% {
        opacity: 1;
        transform: scale(1);
    }
}


.header-main {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(15, 14, 23, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: all var(--transition-normal);
}

.header-main.scrolled {
    background: rgba(15, 14, 23, 0.98);
    box-shadow: var(--shadow-md);
}


.logo-row {
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.logo-container .logo {
    display: flex;
    flex-direction: column;
    gap: 2px;
}


.header-actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 20px;
}

.language-selector {
    padding: 8px 16px;
    background: var(--bg-blur);
    backdrop-filter: blur(10px);
    border-radius: var(--border-radius-sm);
    font-size: 0.9rem;
    font-weight: var(--font-weight-medium);
    color: var(--text-secondary);
}


.navigation-row {
    padding: 12px 0;
}

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

.main-nav {
    display: flex;
    list-style: none;
    margin: 0;
    gap: 30px;
}

.nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: var(--font-weight-medium);
    position: relative;
    transition: all var(--transition-normal);
    display: flex;
    align-items: center;
    gap: 5px;
}

.nav-link:hover {
    color: var(--accent-cyan);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--accent-cyan), var(--accent-teal));
    transition: width var(--transition-normal);
}

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


.mega-menu {
    background: rgba(26, 26, 46, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius-md);
    padding: 30px;
    margin-top: 10px;
    box-shadow: var(--shadow-lg);
    min-width: 600px;
}

.mega-menu-content {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.service-group .service-link {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: var(--bg-blur);
    border-radius: var(--border-radius-sm);
    text-decoration: none;
    transition: all var(--transition-normal);
}

.service-group .service-link:hover {
    background: rgba(34, 211, 238, 0.1);
    transform: translateY(-2px);
}

.service-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(45deg, var(--accent-cyan), var(--accent-teal));
    border-radius: var(--border-radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-white);
    font-size: 1.2rem;
    flex-shrink: 0;
}

.service-info h4 {
    color: var(--text-heading);
    font-size: 1rem;
    font-weight: var(--font-weight-semibold);
    margin: 0;
}

.service-info p {
    color: var(--text-secondary);
    font-size: 0.85rem;
    margin: 2px 0 0 0;
}


.mobile-menu-toggle {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 24px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}

.mobile-menu-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: var(--text-primary);
    transition: all var(--transition-normal);
    border-radius: 2px;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: translateY(11px) rotate(45deg);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: translateY(-11px) rotate(-45deg);
}

.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background: var(--bg-primary);
    z-index: 1000;
    transition: right var(--transition-normal);
    padding: 80px 20px 20px;
    overflow-y: auto;
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu-content {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.mobile-nav {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 30px;
}

.mobile-nav-link {
    color: var(--text-primary);
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: var(--font-weight-medium);
    padding: 10px 0;
    transition: color var(--transition-normal);
}

.mobile-nav-link:hover {
    color: var(--accent-cyan);
}

.mobile-dropdown-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    background: none;
    border: none;
    color: var(--text-primary);
    font-size: 1.2rem;
    font-weight: var(--font-weight-medium);
    padding: 10px 0;
    cursor: pointer;
    transition: color var(--transition-normal);
}

.mobile-dropdown-toggle:hover {
    color: var(--accent-cyan);
}

.mobile-dropdown-content {
    display: none;
    padding-left: 20px;
    margin-top: 10px;
}

.mobile-dropdown.active .mobile-dropdown-content {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.mobile-cta {
    margin-top: auto;
    padding: 20px 0;
}

/* Page Progress */
.page-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    z-index: 1001;
}

.progress-bar {
    height: 100%;
    background: linear-gradient(90deg, var(--accent-cyan), var(--accent-teal));
    width: 0%;
    transition: width 0.1s ease;
}


.btn {
    padding: 12px 24px;
    border-radius: var(--border-radius-sm);
    font-weight: var(--font-weight-semibold);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all var(--transition-normal);
    border: none;
    cursor: pointer;
    font-size: 0.95rem;
}

.btn-primary-glow {
    background: linear-gradient(45deg, var(--accent-cyan), var(--accent-teal));
    color: var(--text-white);
    box-shadow: 0 4px 15px rgba(34, 211, 238, 0.3);
}

.btn-primary-glow:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(34, 211, 238, 0.4);
    color: var(--text-white);
}

.btn-outline-glow {
    background: transparent;
    color: var(--accent-cyan);
    border: 2px solid var(--accent-cyan);
}

.btn-outline-glow:hover {
    background: var(--accent-cyan);
    color: var(--text-white);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(34, 211, 238, 0.3);
}

.btn-secondary {
    background: var(--bg-secondary);
    color: var(--text-primary);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-secondary:hover {
    background: var(--bg-tertiary);
    color: var(--text-primary);
    transform: translateY(-2px);
}

.btn-lg {
    padding: 16px 32px;
    font-size: 1.1rem;
}

.btn-sm {
    padding: 8px 16px;
    font-size: 0.85rem;
}


.hero-section {
    width: 100vw;
    min-width: 0;
    margin-left: calc(-50vw + 50%);
    left: 0;
    right: 0;
    position: relative;
    box-sizing: border-box;
    min-height: 100vh;
    padding: 120px 0;
    background: var(--bg-primary);
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 80%, rgba(34, 211, 238, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(20, 184, 166, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding-right: 30px;
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: var(--font-weight-bold);
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--text-heading);
}

.accent-text {
    color: var(--accent-cyan);
}

.highlight {
    background: linear-gradient(45deg, var(--accent-cyan), var(--accent-teal));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: var(--text-secondary);
    margin-bottom: 2rem;
    max-width: 500px;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-visual {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.floating-elements {
    position: relative;
    width: 100%;
    height: clamp(300px, 50vh, 500px);
}

.float-item {
    position: absolute;
    transition: transform var(--transition-normal);
}

.float-item[data-float="1"] {
    top: 0;
    left: 0;
    width: 60%;
    z-index: 2;
}

.float-item[data-float="2"] {
    top: 20%;
    right: 0;
    width: 40%;
    z-index: 3;
}

.float-item[data-float="3"] {
    bottom: 0;
    left: 20%;
    width: 30%;
    z-index: 1;
}

.glassmorphism-card {
    background: var(--bg-blur);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius-md);
    padding: 20px;
    text-align: center;
    width: 100%;
    max-width: 180px;
}

.glassmorphism-card i {
    font-size: 2rem;
    color: var(--accent-cyan);
    margin-bottom: 10px;
}

.glassmorphism-card h4 {
    color: var(--text-heading);
    font-size: 1rem;
    margin: 0;
}

.metric-card {
    background: linear-gradient(45deg, var(--accent-indigo), var(--accent-cyan));
    border-radius: var(--border-radius-md);
    padding: 20px;
    text-align: center;
    width: 100%;
    max-width: 120px;
    box-shadow: var(--shadow-glow);
}

.metric-number {
    display: block;
    font-size: 1.8rem;
    font-weight: var(--font-weight-bold);
    color: var(--text-white);
}

.metric-label {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.8);
}

.rounded-custom {
    border-radius: var(--border-radius-md);
    max-width: 100%;
    height: auto;
}

@media (max-width: 1199.98px) {
    .hero-content {
        padding-right: 15px;
    }
}

@media (max-width: 991.98px) {
    .hero-section {
        padding: 100px 0;
    }
    
    .hero-content {
        padding-right: 0;
        margin-bottom: 40px;
        text-align: center;
    }
    
    .hero-description {
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .hero-visual {
        height: 400px;
    }
}

@media (max-width: 767.98px) {
    .hero-section {
        padding: 80px 0;
    }
    
    .hero-buttons {
        flex-direction: column;
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }
    
    .hero-buttons .btn {
        width: 100%;
    }
    
    .hero-visual {
        height: 300px;
    }
    
    .float-item[data-float="2"] {
        display: none;
    }
}

@media (max-width: 575.98px) {
    .hero-section {
        padding: 60px 0;
    }
    
    .hero-visual {
        height: 250px;
    }
    
    .float-item[data-float="3"] {
        display: none;
    }
}


section {
    padding: var(--section-padding);
    position: relative;
}

.section-header {
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: var(--font-weight-bold);
    color: var(--text-heading);
    margin-bottom: 15px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}


.services-overview {
    background: radial-gradient(circle at 30% 70%, rgba(129, 140, 248, 0.05) 0%, transparent 50%);
}

.service-card {
    background: var(--bg-blur);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius-md);
    padding: 30px;
    height: 100%;
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-cyan), var(--accent-teal));
    transform: scaleX(0);
    transition: transform var(--transition-normal);
}

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

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(34, 211, 238, 0.3);
}

.service-card .card-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.service-card .service-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(45deg, var(--accent-cyan), var(--accent-teal));
    border-radius: var(--border-radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-white);
    font-size: 1.5rem;
}

.service-card h3 {
    color: var(--text-heading);
    font-size: 1.3rem;
    font-weight: var(--font-weight-semibold);
    margin: 0;
}

.service-card .card-body p {
    color: var(--text-secondary);
    margin-bottom: 20px;
}

.service-features {
    list-style: none;
    margin-bottom: 20px;
}

.service-features li {
    color: var(--text-secondary);
    font-size: 0.9rem;
    padding: 5px 0;
    position: relative;
    padding-left: 20px;
}

.service-features li::before {
    content: '•';
    color: var(--accent-cyan);
    position: absolute;
    left: 0;
}

.service-link {
    color: var(--accent-cyan);
    text-decoration: none;
    font-weight: var(--font-weight-semibold);
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: all var(--transition-normal);
}

.service-link:hover {
    color: var(--accent-teal);
    transform: translateX(5px);
}


.branding-card:hover {
    box-shadow: 0 10px 30px rgba(250, 204, 21, 0.2);
}

.presentation-card:hover {
    box-shadow: 0 10px 30px rgba(129, 140, 248, 0.2);
}

.ux-card:hover {
    box-shadow: 0 10px 30px rgba(34, 211, 238, 0.2);
}

.consulting-card:hover {
    box-shadow: 0 10px 30px rgba(20, 184, 166, 0.2);
}

.motion-card:hover {
    box-shadow: 0 10px 30px rgba(217, 119, 6, 0.2);
}

.packaging-card:hover {
    box-shadow: 0 10px 30px rgba(110, 231, 183, 0.2);
}


.process-section {
    background: radial-gradient(circle at 70% 30%, rgba(20, 184, 166, 0.05) 0%, transparent 50%);
}

.process-timeline {
    max-width: 800px;
    margin: 0 auto;
}

.process-step {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-bottom: 50px;
    position: relative;
}

.process-step:not(:last-child)::after {
    content: '';
    position: absolute;
    left: 25px;
    top: 80px;
    width: 2px;
    height: 50px;
    background: linear-gradient(180deg, var(--accent-cyan), transparent);
}

.step-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(45deg, var(--accent-cyan), var(--accent-teal));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-white);
    font-weight: var(--font-weight-bold);
    font-size: 1.1rem;
    flex-shrink: 0;
}

.step-content {
    flex: 1;
}

.step-content h3 {
    color: var(--text-heading);
    font-size: 1.3rem;
    font-weight: var(--font-weight-semibold);
    margin-bottom: 10px;
}

.step-content p {
    color: var(--text-secondary);
    margin: 0;
}

.step-icon {
    width: 60px;
    height: 60px;
    background: var(--bg-blur);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-cyan);
    font-size: 1.5rem;
}


.why-choose-us {
    background: radial-gradient(circle at 80% 20%, rgba(250, 204, 21, 0.05) 0%, transparent 50%);
}

.content-block .lead {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 40px;
}

.feature-list {
    margin-bottom: 30px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 30px;
}

.feature-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(45deg, var(--accent-gold), var(--accent-orange));
    border-radius: var(--border-radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-white);
    font-size: 1.3rem;
    flex-shrink: 0;
}

.feature-content h4 {
    color: var(--text-heading);
    font-size: 1.1rem;
    font-weight: var(--font-weight-semibold);
    margin-bottom: 5px;
}

.feature-content p {
    color: var(--text-secondary);
    margin: 0;
}


.visual-block {
    position: relative;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}

.stat-item {
    background: var(--bg-blur);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius-md);
    padding: 25px 20px;
    text-align: center;
    transition: all var(--transition-normal);
}

.stat-item:hover {
    transform: translateY(-5px);
    border-color: rgba(34, 211, 238, 0.3);
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: var(--font-weight-bold);
    color: var(--accent-cyan);
    margin-bottom: 5px;
}

.stat-label {
    color: var(--text-secondary);
    font-size: 0.9rem;
    font-weight: var(--font-weight-medium);
}


.cta-section {
    background: linear-gradient(135deg, 
                rgba(34, 211, 238, 0.1) 0%, 
                rgba(20, 184, 166, 0.1) 50%, 
                rgba(129, 140, 248, 0.1) 100%);
    text-align: center;
}

.cta-content h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: var(--font-weight-bold);
    color: var(--text-heading);
    margin-bottom: 20px;
}

.cta-description {
    font-size: 1.2rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto 40px auto;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}


.footer-main {
    background: var(--bg-secondary);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.newsletter-section {
    padding: 60px 0;
    background: linear-gradient(135deg, 
                rgba(34, 211, 238, 0.05) 0%, 
                rgba(20, 184, 166, 0.05) 100%);
}

.newsletter-content h3 {
    font-size: 2rem;
    font-weight: var(--font-weight-bold);
    color: var(--text-heading);
    margin-bottom: 15px;
}

.newsletter-content p {
    color: var(--text-secondary);
    margin-bottom: 30px;
}

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

.newsletter-input {
    background: var(--bg-blur);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-primary);
    padding: 15px 20px;
    border-radius: var(--border-radius-sm) 0 0 var(--border-radius-sm);
}

.newsletter-input:focus {
    background: var(--bg-blur);
    border-color: var(--accent-cyan);
    color: var(--text-primary);
    box-shadow: 0 0 0 0.2rem rgba(34, 211, 238, 0.25);
}

.newsletter-input::placeholder {
    color: var(--text-secondary);
}

.newsletter-btn {
    border-radius: 0 var(--border-radius-sm) var(--border-radius-sm) 0;
}

.newsletter-privacy {
    display: block;
    margin-top: 15px;
    color: var(--text-secondary);
}

.newsletter-privacy a {
    color: var(--accent-cyan);
    text-decoration: none;
}

.newsletter-privacy a:hover {
    text-decoration: underline;
}


.footer-content {
    padding: 60px 0 40px 0;
}

.footer-widget {
    margin-bottom: 30px;
}

.footer-logo {
    margin-bottom: 20px;
}

.footer-logo .logo-text {
    font-size: 1.5rem;
    font-weight: var(--font-weight-bold);
}

.footer-logo .logo-subtitle {
    font-size: 0.7rem;
    color: var(--text-secondary);
    font-weight: var(--font-weight-medium);
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.footer-description {
    color: var(--text-secondary);
    margin-bottom: 20px;
    line-height: 1.6;
}

.footer-location {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: var(--text-secondary);
}

.footer-location i {
    color: var(--accent-cyan);
    margin-top: 2px;
    flex-shrink: 0;
}

.footer-title {
    color: var(--text-heading);
    font-size: 1.1rem;
    font-weight: var(--font-weight-semibold);
    margin-bottom: 20px;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color var(--transition-normal);
}

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

.footer-contact .contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    color: var(--text-secondary);
}

.footer-contact i {
    color: var(--accent-cyan);
    flex-shrink: 0;
}


.footer-bottom {
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.copyright {
    color: var(--text-secondary);
    margin: 0;
}

.footer-bottom-links {
    display: flex;
    gap: 20px;
    justify-content: flex-end;
}

.footer-bottom-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color var(--transition-normal);
}

.footer-bottom-links a:hover {
    color: var(--accent-cyan);
}

.cookie-consent {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    max-width: 600px;
    margin: 0 auto;
    background: var(--bg-secondary);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius-md);
    padding: 25px;
    z-index: 1001;
    transform: translateY(100px);
    opacity: 0;
    transition: all var(--transition-normal);
    box-shadow: var(--shadow-lg);
}

.cookie-consent.show {
    transform: translateY(0);
    opacity: 1;
}

.cookie-content {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.cookie-text {
    flex: 1;
}

.cookie-text h4 {
    color: var(--text-heading);
    font-size: 1.1rem;
    font-weight: var(--font-weight-semibold);
    margin-bottom: 10px;
}

.cookie-text p {
    color: var(--text-secondary);
    margin: 0;
    font-size: 0.9rem;
}

.cookie-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(45deg, var(--accent-cyan), var(--accent-teal));
    border: none;
    border-radius: 50%;
    color: var(--text-white);
    font-size: 1.2rem;
    cursor: pointer;
    transition: all var(--transition-normal);
    opacity: 0;
    visibility: hidden;
    z-index: 999;
    box-shadow: var(--shadow-md);
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}


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

.text-left {
    text-align: left;
}

.text-right {
    text-align: right;
}

.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.mb-5 { margin-bottom: 3rem; }

.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-bottom: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mt-5 { margin-top: 3rem; }


@media (max-width: 1199.98px) {
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-content {
        padding-right: 15px;
    }
    
    .floating-elements {
        height: 400px;
    }
}

@media (max-width: 991.98px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-content {
        padding-right: 0;
        margin-bottom: 40px;
    }
    
    .hero-visual {
        height: 400px;
    }
    
    .floating-elements {
        height: 350px;
    }
    
    .slider-arrow {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    
    .slider-arrow.prev {
        left: 15px;
    }
    
    .slider-arrow.next {
        right: 15px;
    }
}

@media (max-width: 767.98px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-description {
        font-size: 1.1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .hero-buttons .btn {
        width: 100%;
    }
    
    .hero-visual {
        height: 300px;
    }
    
    .floating-elements {
        height: 300px;
    }
    
    .slider-arrow {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
}

@media (max-width: 575.98px) {
    .hero-title {
        font-size: 1.8rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .hero-visual {
        height: 250px;
    }
    
    .floating-elements {
        height: 250px;
    }
    
    .slider-nav {
        bottom: 20px;
    }
    
    .nav-dot {
        width: 10px;
        height: 10px;
    }
}


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

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

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

@keyframes glow {
    0%, 100% {
        box-shadow: 0 0 20px rgba(34, 211, 238, 0.3);
    }
    50% {
        box-shadow: 0 0 30px rgba(34, 211, 238, 0.5);
    }
}


@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
    
    .floating-elements .float-item {
        animation: none;
    }
}


@media print {
    .header-main,
    .footer-main,
    .cookie-consent,
    .back-to-top,
    .page-progress {
        display: none !important;
    }
    
    body {
        background: white !important;
        color: black !important;
    }
}

.container-fluid {
    width: 100vw !important;
    min-width: 0;
    padding-left: 0 !important;
    padding-right: 0 !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    box-sizing: border-box;
}

@media (max-width: 1199.98px) {
    .about-hero .row.align-items-center,
    .uiux-hero .row.align-items-center,
    .presentation-hero .row.align-items-center,
    .services-hero .row.align-items-center {
        flex-direction: column;
        align-items: stretch !important;
    }
    .about-hero .col-lg-6,
    .uiux-hero .col-lg-6,
    .presentation-hero .col-lg-6,
    .services-hero .col-lg-6 {
        max-width: 100%;
        flex: 0 0 100%;
    }
    .about-hero .hero-visual,
    .uiux-hero .hero-visual,
    .presentation-hero .hero-visual,
    .services-hero .hero-visual {
        margin-top: 40px;
        margin-bottom: 0;
        min-height: unset;
        height: auto;
        justify-content: center;
        align-items: center;
    }
}

@media (max-width: 767.98px) {
    .about-hero .hero-visual,
    .uiux-hero .hero-visual,
    .presentation-hero .hero-visual,
    .services-hero .hero-visual {
        margin-top: 24px;
    }
}


.presentation-hero .row.align-items-center {
    display: flex;
    flex-wrap: wrap;
}
.presentation-hero .col-lg-6 {
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.presentation-hero .hero-visual {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    min-height: unset;
    margin-top: 0;
}
.presentation-preview {
    width: 100%;
    max-width: 420px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.slide-stack {
    width: 100%;
    min-height: 180px;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 24px;
}
.presentation-stats {
    display: flex;
    gap: 24px;
    justify-content: center;
    margin-top: 0;
}
@media (max-width: 1199.98px) {
    .presentation-hero .row.align-items-center {
        flex-direction: column;
        align-items: stretch !important;
    }
    .presentation-hero .col-lg-6 {
        max-width: 100%;
        flex: 0 0 100%;
        align-items: center;
    }
    .presentation-hero .hero-visual {
        margin-top: 32px;
        margin-bottom: 0;
        height: auto;
    }
    .presentation-preview {
        max-width: 100%;
    }
    .slide-stack {
        min-height: 120px;
    }
}
@media (max-width: 767.98px) {
    .presentation-hero .hero-visual {
        margin-top: 20px;
    }
    .slide-stack {
        min-height: 80px;
    }
    .presentation-stats {
        flex-direction: column;
        gap: 12px;
    }
}

