:root {
    --primary: #8b5cf6;
    --primary-light: #a78bfa;
    --primary-dark: #6d28d9;
    --secondary: #3b82f6;
    --secondary-light: #60a5fa;
    --accent: #c4b5fd;
    --bg-dark: #0a0a1a;
    --bg-darker: #050510;
    --bg-card: rgba(20, 20, 40, 0.65);
    --bg-card-hover: rgba(30, 30, 60, 0.85);
    --text-primary: #f8fafc;
    --text-secondary: #a1a1aa;
    --text-muted: #71717a;
    --gradient-primary: linear-gradient(135deg, #8b5cf6 0%, #3b82f6 100%);
    --gradient-glow: linear-gradient(135deg, rgba(139, 92, 246, 0.4) 0%, rgba(59, 130, 246, 0.4) 100%);
    --shadow-glow: 0 0 60px rgba(139, 92, 246, 0.3), 0 0 120px rgba(59, 130, 246, 0.2);
    --shadow-card: 0 8px 32px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(255, 255, 255, 0.05);
    --shadow-card-hover: 0 20px 60px rgba(139, 92, 246, 0.3), 0 0 0 1px rgba(139, 92, 246, 0.2);
    --radius-sm: 12px;
    --radius-md: 20px;
    --radius-lg: 24px;
    --nav-height: 80px;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: var(--nav-height);
}

body {
    background: var(--bg-darker);
    color: var(--text-primary);
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    overflow-x: hidden;
    min-height: 100vh;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

body.menu-open { overflow: hidden; }

::selection {
    background: rgba(139, 92, 246, 0.4);
    color: var(--text-primary);
}

/* Scroll progress */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    background: var(--gradient-primary);
    z-index: 10001;
    width: 0%;
    transition: width 0.1s linear;
    box-shadow: 0 0 10px rgba(139, 92, 246, 0.8);
}

/* Background layers */
.mesh-bg {
    position: fixed;
    inset: 0;
    background:
        radial-gradient(ellipse at 20% 20%, rgba(139, 92, 246, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 80%, rgba(59, 130, 246, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 50%, rgba(139, 92, 246, 0.05) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.grid-overlay {
    position: fixed;
    inset: 0;
    background-image:
        linear-gradient(rgba(139, 92, 246, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(139, 92, 246, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
    z-index: 0;
    mask-image: radial-gradient(ellipse at center, black 0%, transparent 80%);
}

.orb {
    position: fixed;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.5;
    pointer-events: none;
    z-index: 0;
    animation: orbFloat 20s ease-in-out infinite;
}

.orb-1 { width: 500px; height: 500px; top: -150px; right: -100px; background: var(--gradient-primary); }
.orb-2 { width: 400px; height: 400px; bottom: -100px; left: -100px; background: linear-gradient(135deg, #3b82f6, #8b5cf6); animation-delay: -7s; }
.orb-3 { width: 300px; height: 300px; top: 50%; left: 50%; transform: translate(-50%, -50%); background: linear-gradient(135deg, #a78bfa, #60a5fa); animation-delay: -14s; opacity: 0.3; }

@keyframes orbFloat {
    0%, 100% { transform: translate(0, 0) scale(1); }
    25% { transform: translate(30px, -30px) scale(1.05); }
    50% { transform: translate(-20px, 20px) scale(0.95); }
    75% { transform: translate(20px, 10px) scale(1.02); }
}

.orb-3 { animation-name: orbFloatCenter; }
@keyframes orbFloatCenter {
    0%, 100% { transform: translate(-50%, -50%) scale(1); }
    50% { transform: translate(calc(-50% + 20px), calc(-50% - 20px)) scale(1.05); }
}

/* Loader */
.loader {
    position: fixed;
    inset: 0;
    background: var(--bg-darker);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.6s ease, visibility 0.6s;
}

.loader.hidden { opacity: 0; visibility: hidden; pointer-events: none; }

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

.loader-logo {
    font-size: clamp(2.5rem, 8vw, 4rem);
    font-weight: 900;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -2px;
    position: relative;
}

.loader-logo::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--gradient-primary);
    border-radius: 3px;
    animation: loaderLine 1.5s ease-in-out infinite;
}

@keyframes loaderLine {
    0%, 100% { width: 60px; opacity: 1; }
    50% { width: 120px; opacity: 0.5; }
}

.loader-spinner {
    margin: 40px auto 0;
    width: 44px;
    height: 44px;
    border: 3px solid rgba(139, 92, 246, 0.1);
    border-top-color: var(--primary);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin { to { transform: rotate(360deg); } }

/* Skip link */
.skip-link {
    position: absolute;
    top: -100%;
    left: 1rem;
    z-index: 10002;
    padding: 0.75rem 1.25rem;
    background: var(--primary);
    color: white;
    border-radius: var(--radius-sm);
    font-weight: 600;
    text-decoration: none;
    transition: top 0.2s;
}

.skip-link:focus { top: 1rem; }

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 1.25rem 0;
    z-index: 1000;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.navbar.scrolled {
    background: rgba(10, 10, 26, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(139, 92, 246, 0.12);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
    padding: 0.875rem 0;
}

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

.nav-logo {
    font-size: 2rem;
    font-weight: 900;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -1px;
    text-decoration: none;
    transition: transform var(--transition), filter var(--transition);
}

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

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

.nav-link {
    position: relative;
    padding: 0.75rem 1.25rem;
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--text-secondary);
    text-decoration: none;
    transition: color var(--transition);
    border-radius: var(--radius-sm);
}

.nav-link::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gradient-glow);
    border-radius: var(--radius-sm);
    opacity: 0;
    transition: opacity var(--transition);
}

.nav-link:hover,
.nav-link.active { color: var(--text-primary); }

.nav-link:hover::before,
.nav-link.active::before { opacity: 1; }

.nav-link.active { font-weight: 600; }

.nav-link span { position: relative; z-index: 1; }

.lang-buttons {
    display: flex;
    gap: 0.75rem;
    margin-left: 1.5rem;
    padding-left: 1.5rem;
    border-left: 1px solid rgba(255, 255, 255, 0.1);
}

.lang-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    overflow: hidden;
    transition: all var(--transition);
    border: 2px solid transparent;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    display: block;
    flex-shrink: 0;
}

.lang-btn:hover {
    transform: scale(1.15) translateY(-2px);
    box-shadow: var(--shadow-glow);
    border-color: var(--primary);
}

.lang-btn.active-lang {
    border-color: var(--primary);
    box-shadow: 0 0 20px rgba(139, 92, 246, 0.5);
}

.lang-btn img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* Mobile menu */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.mobile-menu-btn span {
    display: block;
    width: 28px;
    height: 2px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: all 0.3s ease;
    transform-origin: center;
}

.mobile-menu-btn.active span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.mobile-menu-btn.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.mobile-menu-btn.active span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

.menu-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    z-index: 998;
    opacity: 0;
    transition: opacity 0.4s;
}

.menu-overlay.active { display: block; opacity: 1; }

/* Hero */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    padding: calc(var(--nav-height) + 2rem) 2rem 6rem;
    overflow: hidden;
}

.hero--compact {
    min-height: 55vh;
    padding-bottom: 3rem;
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 900px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1.5rem;
    background: rgba(139, 92, 246, 0.1);
    border: 1px solid rgba(139, 92, 246, 0.3);
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--accent);
    margin-bottom: 2rem;
    backdrop-filter: blur(10px);
    opacity: 0;
    transform: translateY(20px);
}

.hero-badge i { color: var(--primary-light); }

.hero-title {
    font-size: clamp(3rem, 10vw, 6rem);
    font-weight: 900;
    line-height: 1;
    letter-spacing: -3px;
    margin-bottom: 1rem;
    opacity: 0;
    transform: translateY(30px);
}

.hero-title-gradient {
    background: linear-gradient(135deg, #fff 0%, var(--primary-light) 50%, var(--secondary-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% auto;
    animation: gradientShift 4s ease infinite;
}

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

.hero-subtitle {
    font-size: clamp(1.25rem, 3vw, 2rem);
    font-weight: 600;
    margin-bottom: 1.5rem;
    opacity: 0;
    transform: translateY(30px);
}

.hero-description {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto 2.5rem;
    line-height: 1.7;
    opacity: 0;
    transform: translateY(30px);
}

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

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.625rem;
    padding: 0.875rem 1.75rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    border: none;
    font-family: inherit;
}

.btn-primary {
    background: var(--gradient-primary);
    color: white;
    box-shadow: 0 8px 30px rgba(139, 92, 246, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(139, 92, 246, 0.5);
}

.btn-outline {
    background: transparent;
    color: var(--text-primary);
    border: 1px solid rgba(139, 92, 246, 0.4);
    backdrop-filter: blur(10px);
}

.btn-outline:hover {
    background: rgba(139, 92, 246, 0.15);
    border-color: var(--primary);
    transform: translateY(-3px);
}

.scroll-indicator {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-secondary);
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    opacity: 0;
}

.scroll-mouse {
    width: 26px;
    height: 42px;
    border: 2px solid rgba(139, 92, 246, 0.5);
    border-radius: 13px;
    position: relative;
}

.scroll-wheel {
    width: 4px;
    height: 10px;
    background: var(--gradient-primary);
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scrollAnim 2s ease-in-out infinite;
}

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

/* Stats section */
.stats-section {
    position: relative;
    z-index: 10;
    padding: 0 2rem;
    margin-top: -3rem;
}

.stats-grid {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
}

.stat-card {
    background: var(--bg-card);
    border: 1px solid rgba(139, 92, 246, 0.15);
    border-radius: var(--radius-lg);
    padding: 2rem 1.5rem;
    text-align: center;
    backdrop-filter: blur(20px);
    box-shadow: var(--shadow-card);
    transition: all 0.4s ease;
    opacity: 0;
    transform: translateY(30px);
}

.stat-card:hover {
    transform: translateY(-6px);
    border-color: rgba(139, 92, 246, 0.35);
    box-shadow: var(--shadow-card-hover);
}

.stat-number {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 900;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 0.5rem;
}

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

.stat-icon {
    font-size: 1.5rem;
    color: var(--primary-light);
    margin-bottom: 1rem;
    opacity: 0.8;
}

/* Sections */
.section {
    position: relative;
    padding: 6rem 2rem;
    z-index: 10;
}

.section-container {
    max-width: 1200px;
    margin: 0 auto;
}

.section-container--narrow { max-width: 800px; }
.section-container--medium { max-width: 1000px; }

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

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 1.25rem;
    background: rgba(139, 92, 246, 0.1);
    border: 1px solid rgba(139, 92, 246, 0.2);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary-light);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
    opacity: 0;
    transform: translateY(20px);
}

.section-title {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 800;
    letter-spacing: -2px;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--text-primary) 0%, var(--text-secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: 0;
    transform: translateY(30px);
}

.section-divider {
    width: 100px;
    height: 4px;
    background: var(--gradient-primary);
    margin: 0 auto;
    border-radius: 2px;
    opacity: 0;
    transform: scaleX(0);
}

/* Cards */
.glass-card {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    padding: clamp(1.5rem, 4vw, 3rem);
    border: 1px solid rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    position: relative;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: var(--shadow-card);
    opacity: 0;
    transform: translateY(40px);
}

.glass-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(139, 92, 246, 0.5), transparent);
    opacity: 0;
    transition: opacity 0.5s;
}

.glass-card:hover {
    transform: translateY(-8px);
    background: var(--bg-card-hover);
    border-color: rgba(139, 92, 246, 0.2);
    box-shadow: var(--shadow-card-hover);
}

.glass-card:hover::before { opacity: 1; }

.card-content { position: relative; z-index: 1; }

.prose { font-size: 1.125rem; color: var(--text-secondary); line-height: 1.9; }
.prose p + p { margin-top: 1.5rem; }
.prose--justify { text-align: justify; }

/* Feature grid */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: var(--bg-card);
    border-radius: var(--radius-md);
    padding: 2.5rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: var(--shadow-card);
    opacity: 0;
    transform: translateY(40px);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gradient-glow);
    opacity: 0;
    transition: opacity 0.5s;
}

.feature-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: rgba(139, 92, 246, 0.3);
    box-shadow: var(--shadow-card-hover);
}

.feature-card:hover::before { opacity: 0.1; }

.feature-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-primary);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    color: white;
    margin-bottom: 1.75rem;
    position: relative;
    z-index: 1;
    box-shadow: 0 10px 30px rgba(139, 92, 246, 0.4);
    transition: transform 0.3s;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
}

.feature-title {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.feature-text {
    color: var(--text-secondary);
    line-height: 1.8;
    position: relative;
    z-index: 1;
}

/* Service tags */
.services-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin: 2rem 0;
}

.service-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(139, 92, 246, 0.08);
    border: 1px solid rgba(139, 92, 246, 0.2);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--accent);
    transition: all 0.3s;
}

.service-tag:hover {
    background: rgba(139, 92, 246, 0.18);
    border-color: var(--primary);
    transform: translateY(-2px);
}

.service-tag i { font-size: 0.75rem; color: var(--primary-light); }

/* CTA */
.cta-section {
    position: relative;
    z-index: 10;
    padding: 4rem 2rem 6rem;
}

.cta-card {
    max-width: 900px;
    margin: 0 auto;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.15), rgba(59, 130, 246, 0.1));
    border: 1px solid rgba(139, 92, 246, 0.25);
    border-radius: var(--radius-lg);
    padding: clamp(2rem, 5vw, 4rem);
    text-align: center;
    backdrop-filter: blur(20px);
    box-shadow: var(--shadow-glow);
    opacity: 0;
    transform: translateY(40px);
}

.cta-title {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 800;
    margin-bottom: 1rem;
    letter-spacing: -1px;
}

.cta-text {
    color: var(--text-secondary);
    font-size: 1.125rem;
    margin-bottom: 2rem;
    max-width: 550px;
    margin-left: auto;
    margin-right: auto;
}

/* Links & lists */
.link {
    color: var(--primary-light);
    text-decoration: none;
    position: relative;
    font-weight: 500;
    transition: color 0.3s;
}

.link:hover { color: var(--text-primary); }

.styled-list { list-style: none; padding: 0; }

.styled-list li {
    position: relative;
    padding-left: 2rem;
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.8;
}

.styled-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.7rem;
    width: 8px;
    height: 8px;
    background: var(--gradient-primary);
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(139, 92, 246, 0.5);
}

.styled-list .sub-item {
    padding-left: 0;
    margin: 0.25rem 0 0 2rem;
    font-size: 0.9rem;
    color: var(--primary-light);
    font-weight: 500;
}

.styled-list .sub-item::before { display: none; }

/* Contact / Profile cards */
.contact-card,
.profile-card {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    padding: clamp(2rem, 4vw, 3.5rem);
    border: 1px solid rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    position: relative;
    overflow: hidden;
    text-align: center;
    transition: all 0.5s;
    box-shadow: var(--shadow-card);
    opacity: 0;
    transform: translateY(40px);
}

.contact-card:hover,
.profile-card:hover {
    transform: translateY(-8px);
    border-color: rgba(139, 92, 246, 0.2);
    box-shadow: var(--shadow-card-hover);
}

.card-icon {
    width: 100px;
    height: 100px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: white;
    margin: 0 auto 2rem;
    position: relative;
    box-shadow: 0 15px 40px rgba(139, 92, 246, 0.4);
}

.card-icon--lg { width: 120px; height: 120px; font-size: 3rem; }

.card-icon::after {
    content: '';
    position: absolute;
    width: calc(100% + 20px);
    height: calc(100% + 20px);
    border: 2px solid rgba(139, 92, 246, 0.3);
    border-radius: 50%;
    animation: pulse-ring 2s ease-out infinite;
}

@keyframes pulse-ring {
    0% { transform: scale(1); opacity: 1; }
    100% { transform: scale(1.3); opacity: 0; }
}

.card-heading {
    font-size: 1.75rem;
    font-weight: 800;
    margin-bottom: 2rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.card-heading--lg { font-size: 2rem; }

.info-list { color: var(--text-secondary); line-height: 2; font-size: 1.125rem; }

.info-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 0.75rem;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-sm);
    transition: all 0.3s;
}

.info-item:hover {
    background: rgba(139, 92, 246, 0.1);
    color: var(--text-primary);
}

.info-item i { color: var(--primary-light); width: 24px; font-size: 1.25rem; flex-shrink: 0; }

.profile-text { color: var(--text-secondary); line-height: 2; font-size: 1.125rem; text-align: left; }

/* Clients page */
.clients-card {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    padding: clamp(1.5rem, 3vw, 2.5rem);
    border: 1px solid rgba(139, 92, 246, 0.2);
    backdrop-filter: blur(20px);
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-card), inset 0 1px 0 rgba(255, 255, 255, 0.05);
    opacity: 0;
    transform: translateY(40px);
}

.clients-card::before,
.clients-card::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    height: 1px;
}

.clients-card::before {
    top: 0;
    background: linear-gradient(90deg, transparent, rgba(139, 92, 246, 0.5), transparent);
}

.clients-card::after {
    bottom: 0;
    background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.3), transparent);
}

.counter-box {
    text-align: center;
    margin-bottom: 2rem;
    padding: 2rem;
    background: rgba(139, 92, 246, 0.05);
    border-radius: var(--radius-md);
    border: 1px solid rgba(139, 92, 246, 0.1);
}

.counter {
    font-size: clamp(3rem, 8vw, 5rem);
    font-weight: 900;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.counter-label { font-size: 1.25rem; color: var(--text-secondary); margin-top: 0.5rem; font-weight: 500; }

.search-box {
    position: relative;
    margin-bottom: 1.5rem;
}

.search-box i {
    position: absolute;
    left: 1.25rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted);
    pointer-events: none;
}

.search-input {
    width: 100%;
    padding: 1rem 1.25rem 1rem 3rem;
    background: rgba(10, 10, 26, 0.5);
    border: 1px solid rgba(139, 92, 246, 0.2);
    border-radius: var(--radius-sm);
    color: var(--text-primary);
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.3s;
}

.search-input::placeholder { color: var(--text-muted); }

.search-input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.15);
}

.search-meta {
    text-align: right;
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 0.75rem;
}

.table-header {
    display: grid;
    grid-template-columns: 1fr 200px;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.2), rgba(59, 130, 246, 0.1));
    padding: 1.25rem 1.5rem;
    border-radius: 16px 16px 0 0;
    font-weight: 700;
    color: var(--text-primary);
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 1px solid rgba(139, 92, 246, 0.3);
    border-bottom: none;
}

.table-header span:first-child {
    border-right: 1px solid rgba(139, 92, 246, 0.3);
    padding-right: 1rem;
}

.table-header span:last-child { padding-left: 1rem; }

.table-body {
    max-height: 450px;
    overflow-y: auto;
    border: 1px solid rgba(139, 92, 246, 0.2);
    border-top: none;
    border-radius: 0 0 16px 16px;
    background: rgba(10, 10, 26, 0.3);
}

.table-body::-webkit-scrollbar { width: 8px; }
.table-body::-webkit-scrollbar-track { background: rgba(255, 255, 255, 0.02); border-radius: 4px; }
.table-body::-webkit-scrollbar-thumb { background: var(--gradient-primary); border-radius: 4px; }

.clients-table { width: 100%; border-collapse: collapse; }

.clients-table td {
    padding: 1rem 1.5rem;
    border-bottom: 1px solid rgba(139, 92, 246, 0.1);
    color: var(--text-secondary);
    transition: all 0.3s;
}

.clients-table tr:last-child td { border-bottom: none; }
.clients-table td:last-child { width: 200px; color: var(--text-muted); }

.clients-table tr { transition: background 0.3s; }
.clients-table tr:hover { background: rgba(139, 92, 246, 0.08); }
.clients-table tr:hover td { color: var(--text-primary); }
.clients-table tr.hidden { display: none; }

.no-results {
    display: none;
    text-align: center;
    padding: 3rem;
    color: var(--text-muted);
}

.no-results.visible { display: block; }

/* Footer */
.footer {
    background: rgba(10, 10, 26, 0.95);
    backdrop-filter: blur(20px);
    padding: 5rem 2rem 2rem;
    position: relative;
    z-index: 10;
    border-top: 1px solid rgba(139, 92, 246, 0.1);
}

.footer-content { max-width: 1200px; margin: 0 auto; text-align: center; }

.footer-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1.25rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-text { color: var(--text-secondary); line-height: 2; }

.footer-nav {
    display: flex;
    justify-content: center;
    gap: 2.5rem;
    flex-wrap: wrap;
    margin: 2.5rem 0;
}

.footer-link {
    color: var(--text-secondary);
    font-weight: 500;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-link:hover { color: var(--primary-light); }

.footer-bottom {
    margin-top: 2.5rem;
    padding-top: 2.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* Back to top */
.back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 48px;
    height: 48px;
    background: var(--gradient-primary);
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 1.1rem;
    cursor: pointer;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s;
    box-shadow: 0 8px 25px rgba(139, 92, 246, 0.4);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 35px rgba(139, 92, 246, 0.5);
}

/* Particles */
.particles {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.particle {
    position: absolute;
    background: var(--primary);
    border-radius: 50%;
    opacity: 0.6;
    animation: particleRise 12s linear infinite;
    box-shadow: 0 0 10px rgba(139, 92, 246, 0.5);
}

@keyframes particleRise {
    0% { transform: translateY(100vh) scale(0); opacity: 0; }
    10% { opacity: 0.6; }
    90% { opacity: 0.6; }
    100% { transform: translateY(-100vh) scale(1); opacity: 0; }
}

/* Credentials badges on profile */
.credentials {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
    margin: 2rem 0;
}

.credential-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.625rem 1.25rem;
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.25);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--secondary-light);
}

/* Responsive */
@media (max-width: 900px) {
    .mobile-menu-btn { display: flex; }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 85%;
        max-width: 350px;
        height: 100vh;
        height: 100dvh;
        background: rgba(10, 10, 26, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        align-items: stretch;
        padding: 6rem 2.5rem;
        transition: right 0.5s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: -20px 0 60px rgba(0, 0, 0, 0.5);
        border-left: 1px solid rgba(139, 92, 246, 0.1);
        z-index: 999;
    }

    .nav-links.active { right: 0; }

    .nav-link { padding: 1.25rem 0; font-size: 1.2rem; }

    .lang-buttons {
        margin: 2rem 0 0;
        padding: 2rem 0 0;
        border-left: none;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }

    .table-header { grid-template-columns: 1fr 120px; padding: 1rem; font-size: 0.85rem; }
    .clients-table td:last-child { width: 120px; }
    .hero-cta { flex-direction: column; align-items: center; }
    .btn { width: 100%; max-width: 280px; justify-content: center; }
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    html { scroll-behavior: auto; }

    .loader { display: none; }
    .hero-badge, .hero-title, .hero-subtitle, .hero-description, .hero-cta,
    .scroll-indicator, .section-label, .section-title, .section-divider,
        .glass-card, .feature-card, .stat-card, .cta-card, .contact-card,
        .profile-card, .clients-card, .clients-panel {
            opacity: 1;
            transform: none;
        }
}
