/* ===== RESET & BASE ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background: #0a0a0f;
    color: #f8fafc;
    overflow-x: hidden;
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
}

img, svg {
    max-width: 100%;
    vertical-align: middle;
}

a {
    text-decoration: none;
    color: inherit;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    position: relative;
    z-index: 10;
}

::selection {
    background: #8b5cf6;
    color: white;
}

::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

::-webkit-scrollbar-track {
    background: #0a0a0f;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #8b5cf6, #3b82f6);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, #7c3aed, #2563eb);
}

/* ===== ANIMATIONS ===== */
@keyframes gradient-x {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

@keyframes pulse-glow {
    0%, 100% { box-shadow: 0 0 20px rgba(139, 92, 246, 0.2); }
    50% { box-shadow: 0 0 40px rgba(139, 92, 246, 0.4); }
}

@keyframes shimmer {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

@keyframes spin-slow {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes orb-move-1 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(100px, -50px) scale(1.2); }
}

@keyframes orb-move-2 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(-80px, 60px) scale(1.3); }
}

@keyframes orb-move-3 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(50px, -30px) scale(1.1); }
}

@keyframes wheel-scroll {
    0% { transform: translateY(0); opacity: 1; }
    100% { transform: translateY(12px); opacity: 0; }
}

@keyframes pulse-dot {
    0%, 100% { opacity: 0.5; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.2); }
}

@keyframes quote-fade {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

@keyframes badge-float-1 {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-15px) rotate(5deg); }
}

@keyframes badge-float-2 {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(15px) rotate(-5deg); }
}

@keyframes ring-spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.animate-gradient-x {
    background-size: 200% 200%;
    animation: gradient-x 8s ease infinite;
}

.animate-float {
    animation: float 6s ease-in-out infinite;
}

.animate-pulse-glow {
    animation: pulse-glow 2s ease-in-out infinite;
}

.animate-shimmer {
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
    background-size: 200% 100%;
    animation: shimmer 2s linear infinite;
}

/* ===== BACKGROUNDS ===== */
.grid-pattern {
    background-image: 
        linear-gradient(to right, rgba(139, 92, 246, 0.05) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(139, 92, 246, 0.05) 1px, transparent 1px);
    background-size: 40px 40px;
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.dot-pattern {
    background-image: radial-gradient(circle, rgba(139, 92, 246, 0.1) 1px, transparent 1px);
    background-size: 20px 20px;
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    pointer-events: none;
}

.orb-1 {
    width: 400px;
    height: 400px;
    background: rgba(139, 92, 246, 0.3);
    top: -100px;
    right: -100px;
    animation: orb-move-1 20s ease-in-out infinite;
}

.orb-2 {
    width: 400px;
    height: 400px;
    background: rgba(59, 130, 246, 0.3);
    bottom: -100px;
    left: -100px;
    animation: orb-move-2 25s ease-in-out infinite;
    animation-delay: 2s;
}

.orb-3 {
    width: 260px;
    height: 260px;
    background: rgba(147, 51, 234, 0.2);
    top: 50%;
    left: 50%;
    animation: orb-move-3 18s ease-in-out infinite;
    animation-delay: 4s;
}

.orb-sm {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    pointer-events: none;
    width: 300px;
    height: 300px;
    background: rgba(139, 92, 246, 0.1);
}

.orb-4 { top: 0; right: 0; }
.orb-5 { bottom: 0; left: 0; background: rgba(59, 130, 246, 0.1); }
.orb-6 { top: 25%; left: 0; }
.orb-7 { bottom: 25%; right: 0; background: rgba(59, 130, 246, 0.1); }
.orb-8 { top: 0; left: 25%; }
.orb-9 { bottom: 0; right: 25%; background: rgba(59, 130, 246, 0.1); }
.orb-10 { top: 0; right: 0; }
.orb-11 { bottom: 0; left: 0; background: rgba(59, 130, 246, 0.1); }
.orb-12 { top: 0; left: 33%; }
.orb-13 { bottom: 0; right: 33%; background: rgba(59, 130, 246, 0.1); }

.section-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: 0.2;
}

/* ===== TEXT & GRADIENTS ===== */
.gradient-text {
    background: linear-gradient(135deg, #a78bfa, #c084fc, #60a5fa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.highlight-number {
    color: #a78bfa;
    font-weight: bold;
    font-size: 1.5em;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    border: none;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    border-radius: 0.5rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-gradient {
    background: linear-gradient(90deg, #8b5cf6, #a855f7, #3b82f6);
    background-size: 200% 200%;
    animation: gradient-x 8s ease infinite;
    color: white;
    box-shadow: 0 10px 30px rgba(139, 92, 246, 0.3);
}

.btn-gradient:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(139, 92, 246, 0.4);
}

.btn-outline {
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    background: transparent;
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

.btn-sm {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
}

.btn-xl {
    padding: 1rem 2rem;
    font-size: 1rem;
    border-radius: 0.75rem;
}

.btn-full {
    width: 100%;
}

.btn-icon {
    width: 1.25rem;
    height: 1.25rem;
}

/* ===== TOP BAR ===== */
.top-bar {
    background: linear-gradient(90deg, #7c3aed, #a855f7, #2563eb);
    background-size: 200% 200%;
    animation: gradient-x 8s ease infinite;
    color: white;
    text-align: center;
    padding: 0.5rem 1rem;
    font-size: 0.75rem;
    position: relative;
    overflow: hidden;
}

.top-bar::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
    background-size: 200% 100%;
    animation: shimmer 2s linear infinite;
    pointer-events: none;
}

.top-bar p {
    position: relative;
    z-index: 1;
}

/* ===== NAVBAR ===== */
.navbar {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background: rgba(0, 0, 0, 0.95);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem;
}

.navbar.scrolled .nav-container {
    padding: 0.5rem 1rem;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo-icon {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 0.75rem;
    background: linear-gradient(135deg, #8b5cf6, #3b82f6);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 4px 15px rgba(139, 92, 246, 0.3);
    transition: transform 0.3s ease;
}

.logo:hover .logo-icon {
    transform: rotate(15deg);
}

.logo-icon svg {
    width: 1.25rem;
    height: 1.25rem;
}

.logo-text {
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    font-weight: bold;
    color: white;
    display: block;
}

.logo-sub {
    font-size: 0.625rem;
    color: #9ca3af;
    margin-top: -2px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-links a:not(.btn) {
    font-size: 0.875rem;
    color: white;
    position: relative;
    padding-bottom: 2px;
    transition: color 0.3s ease;
}

.nav-links a:not(.btn)::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #8b5cf6, #3b82f6);
    transition: width 0.3s ease;
}

.nav-links a:not(.btn):hover {
    color: #a78bfa;
}

.nav-links a:not(.btn):hover::after {
    width: 100%;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.nav-toggle span {
    width: 24px;
    height: 2px;
    background: white;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ===== HERO ===== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: #0a0a0f;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.hero-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(76, 29, 149, 0.5), transparent 50%, rgba(30, 58, 138, 0.5));
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    padding-top: 3rem;
    padding-bottom: 5rem;
}

.hero-content {
    z-index: 10;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(139, 92, 246, 0.2);
    border-radius: 999px;
    padding: 0.5rem 1rem;
    margin-bottom: 1.5rem;
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: #34d399;
    border-radius: 50%;
    animation: pulse-dot 2s ease-in-out infinite;
}

.badge span {
    font-size: 0.875rem;
    color: #c4b5fd;
    font-weight: 500;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: bold;
    color: white;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.hero-sub {
    font-size: 1.5rem;
    color: #d1d5db;
    margin-bottom: 1rem;
}

.hero-desc {
    font-size: 1.125rem;
    color: #9ca3af;
    margin-bottom: 2rem;
    max-width: 32rem;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 3rem;
}

/* Stats */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

.stat-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0.75rem;
    padding: 1rem;
    text-align: center;
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px) scale(1.05);
    border-color: rgba(139, 92, 246, 0.3);
}

.stat-icon {
    width: 1.5rem;
    height: 1.5rem;
    color: #a78bfa;
    margin: 0 auto 0.5rem;
}

.stat-value {
    font-size: 1.5rem;
    font-weight: bold;
    color: white;
}

.stat-label {
    font-size: 0.75rem;
    color: #9ca3af;
    margin-top: 0.25rem;
}

/* Hero visual */
.hero-visual {
    position: relative;
    z-index: 10;
}

.hero-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1.5rem;
    padding: 2rem;
    box-shadow: 0 20px 60px rgba(139, 92, 246, 0.1);
    position: relative;
    overflow: hidden;
}

.hero-card::before {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: inherit;
    padding: 1px;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.5), rgba(59, 130, 246, 0.5), rgba(139, 92, 246, 0.5));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

.hero-card-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.hero-card-icon {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 1rem;
    background: linear-gradient(135deg, #8b5cf6, #3b82f6);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    animation: ring-spin 20s linear infinite;
}

.hero-card-icon svg {
    width: 1.75rem;
    height: 1.75rem;
}

.hero-card-header h3 {
    font-size: 1.125rem;
    color: white;
    font-family: 'Inter', sans-serif;
    font-weight: bold;
}

.hero-card-header p {
    font-size: 0.875rem;
    color: #9ca3af;
}

/* Progress bars */
.progress-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.progress-item {
    width: 100%;
}

.progress-label {
    display: flex;
    justify-content: space-between;
    font-size: 0.875rem;
    margin-bottom: 0.25rem;
}

.progress-label span:first-child {
    color: #d1d5db;
    font-weight: 500;
}

.progress-label span:last-child {
    color: #a78bfa;
    font-weight: bold;
}

.progress-bar {
    height: 8px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 999px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    border-radius: 999px;
    background: linear-gradient(90deg, #8b5cf6, #a855f7);
    width: 0;
    transition: width 1.5s ease;
}

.fill-90 {
    background: linear-gradient(90deg, #3b82f6, #06b6d4);
}

.fill-85 {
    background: linear-gradient(90deg, #10b981, #22c55e);
}

.hero-quote {
    margin-top: 1.5rem;
    padding: 1rem;
    background: rgba(139, 92, 246, 0.1);
    border: 1px solid rgba(139, 92, 246, 0.2);
    border-radius: 0.75rem;
    animation: quote-fade 3s ease-in-out infinite;
}

.hero-quote p {
    font-size: 0.875rem;
    color: #d1d5db;
    font-style: italic;
}

/* Floating badges */
.floating-badge {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 1rem;
    padding: 1rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    z-index: 20;
}

.badge-1 {
    top: -1.5rem;
    right: -1.5rem;
    animation: badge-float-1 4s ease-in-out infinite;
}

.badge-2 {
    bottom: -1.5rem;
    left: -1.5rem;
    animation: badge-float-2 5s ease-in-out infinite;
    animation-delay: 1s;
}

.badge-icon {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.badge-icon svg {
    width: 1.25rem;
    height: 1.25rem;
}

.badge-icon.green {
    background: rgba(16, 185, 129, 0.2);
    color: #34d399;
}

.badge-icon.blue {
    background: rgba(59, 130, 246, 0.2);
    color: #60a5fa;
}

.badge-title {
    font-size: 0.875rem;
    font-weight: bold;
    color: white;
}

.badge-sub {
    font-size: 0.75rem;
    color: #9ca3af;
}

/* Floating icons */
.floating-icons {
    position: absolute;
    inset: 0;
    z-index: 5;
    pointer-events: none;
}

.float-icon {
    position: absolute;
    color: rgba(163, 151, 250, 0.2);
    animation: float-icon 4s ease-in-out infinite;
}

.float-icon svg {
    width: 2rem;
    height: 2rem;
}

.fi-1 {
    top: 5rem;
    left: 2.5rem;
    animation-delay: 0s;
}

.fi-2 {
    top: 10rem;
    right: 5rem;
    color: rgba(96, 165, 250, 0.2);
    animation-delay: 1s;
}

.fi-3 {
    bottom: 10rem;
    left: 5rem;
    animation-delay: 2s;
}

.fi-4 {
    bottom: 5rem;
    right: 2.5rem;
    color: rgba(96, 165, 250, 0.2);
    animation-delay: 3s;
}

@keyframes float-icon {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(10deg); }
}

/* Hero ring */
.hero-ring {
    position: absolute;
    inset: -1rem;
    border: 2px dashed rgba(139, 92, 246, 0.2);
    border-radius: 2rem;
    animation: ring-spin 30s linear infinite;
    pointer-events: none;
    z-index: 0;
}

/* Scroll indicator */
.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

.mouse {
    width: 24px;
    height: 40px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 999px;
    display: flex;
    justify-content: center;
    padding-top: 8px;
}

.wheel {
    width: 6px;
    height: 6px;
    background: #a78bfa;
    border-radius: 50%;
    animation: wheel-scroll 1.5s ease-in-out infinite;
}

/* ===== SECTIONS ===== */
.section {
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
    background: #0a0a0f;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-badge {
    display: inline-block;
    padding: 0.375rem 1rem;
    background: rgba(139, 92, 246, 0.1);
    border: 1px solid rgba(139, 92, 246, 0.2);
    color: #c4b5fd;
    border-radius: 999px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1rem;
    animation: pulse-dot 3s ease-in-out infinite;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: bold;
    color: white;
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.125rem;
    color: #9ca3af;
    max-width: 40rem;
    margin: 0 auto;
}

.section-line {
    width: 6rem;
    height: 4px;
    background: linear-gradient(90deg, #8b5cf6, #3b82f6);
    border-radius: 999px;
    margin: 1.5rem auto 0;
}

/* ===== ABOUT ===== */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.about-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1.5rem;
    padding: 2rem;
    box-shadow: 0 20px 60px rgba(139, 92, 246, 0.1);
    position: relative;
    overflow: hidden;
}

.about-card::before {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: inherit;
    padding: 1px;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.5), rgba(59, 130, 246, 0.5), rgba(139, 92, 246, 0.5));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

.about-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.about-icon {
    width: 4rem;
    height: 4rem;
    border-radius: 1rem;
    background: linear-gradient(135deg, #8b5cf6, #3b82f6);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 10px 30px rgba(139, 92, 246, 0.3);
    animation: ring-spin 20s linear infinite;
}

.about-icon svg {
    width: 2rem;
    height: 2rem;
}

.about-header h3 {
    font-size: 1.5rem;
    color: white;
}

.about-header p {
    color: #a78bfa;
    font-weight: 500;
}

.about-card p {
    color: #d1d5db;
    margin-bottom: 1rem;
}

.about-card strong {
    color: #a78bfa;
}

.about-quote {
    margin-top: 1.5rem;
    padding: 1.5rem;
    background: rgba(139, 92, 246, 0.1);
    border: 1px solid rgba(139, 92, 246, 0.2);
    border-radius: 1rem;
    animation: quote-fade 3s ease-in-out infinite;
}

.about-quote p {
    font-style: italic;
    margin-bottom: 0;
}

/* Feature cards */
.features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 2rem;
}

.feature-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1rem;
    padding: 1.5rem;
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px) scale(1.03);
    border-color: rgba(255, 255, 255, 0.2);
}

.feature-icon {
    width: 2rem;
    height: 2rem;
    margin-bottom: 0.75rem;
}

.feature-card h4 {
    font-family: 'Inter', sans-serif;
    font-weight: bold;
    color: white;
    margin-bottom: 0.25rem;
}

.feature-card p {
    font-size: 0.875rem;
    color: #9ca3af;
    margin-bottom: 0;
}

.feature-violet {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.2), rgba(168, 85, 247, 0.2));
}

.feature-violet .feature-icon { color: #a78bfa; }

.feature-blue {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.2), rgba(6, 182, 212, 0.2));
}

.feature-blue .feature-icon { color: #60a5fa; }

.feature-green {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.2), rgba(34, 197, 94, 0.2));
}

.feature-green .feature-icon { color: #34d399; }

.feature-amber {
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.2), rgba(249, 115, 22, 0.2));
}

.feature-amber .feature-icon { color: #fbbf24; }

/* Why us */
.why-us {
    background: linear-gradient(135deg, #7c3aed, #a855f7, #2563eb);
    background-size: 200% 200%;
    animation: gradient-x 8s ease infinite;
    border-radius: 1.5rem;
    padding: 2rem;
    color: white;
    box-shadow: 0 20px 60px rgba(139, 92, 246, 0.3);
    position: relative;
    overflow: hidden;
}

.why-us::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
    background-size: 200% 100%;
    animation: shimmer 2s linear infinite;
    pointer-events: none;
}

.why-us-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.why-us-icon {
    width: 1.5rem;
    height: 1.5rem;
}

.why-us-header h3 {
    font-size: 1.25rem;
    font-family: 'Inter', sans-serif;
    font-weight: bold;
}

.why-us-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
    position: relative;
    z-index: 1;
}

.why-us-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
}

.check-icon {
    width: 1.25rem;
    height: 1.25rem;
    flex-shrink: 0;
    animation: pulse-dot 2s ease-in-out infinite;
}

/* ===== SERVICES ===== */
.services-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.service-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1.5rem;
    padding: 2rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: inherit;
    padding: 1px;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.5), rgba(59, 130, 246, 0.5), rgba(139, 92, 246, 0.5));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(139, 92, 246, 0.15);
}

.service-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 1.5rem;
}

.service-icon {
    width: 4rem;
    height: 4rem;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(10deg);
}

.service-icon svg {
    width: 2rem;
    height: 2rem;
}

.service-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    animation: pulse-dot 2s ease-in-out infinite;
}

.service-green .service-icon { background: rgba(16, 185, 129, 0.1); color: #34d399; }
.service-green .service-dot { background: rgba(16, 185, 129, 0.3); }
.service-green:hover { border-color: rgba(16, 185, 129, 0.3); box-shadow: 0 20px 60px rgba(16, 185, 129, 0.1); }

.service-red .service-icon { background: rgba(244, 63, 94, 0.1); color: #fb7185; }
.service-red .service-dot { background: rgba(244, 63, 94, 0.3); }
.service-red:hover { border-color: rgba(244, 63, 94, 0.3); box-shadow: 0 20px 60px rgba(244, 63, 94, 0.1); }

.service-amber .service-icon { background: rgba(245, 158, 11, 0.1); color: #fbbf24; }
.service-amber .service-dot { background: rgba(245, 158, 11, 0.3); }
.service-amber:hover { border-color: rgba(245, 158, 11, 0.3); box-shadow: 0 20px 60px rgba(245, 158, 11, 0.1); }

.service-blue .service-icon { background: rgba(59, 130, 246, 0.1); color: #60a5fa; }
.service-blue .service-dot { background: rgba(59, 130, 246, 0.3); }
.service-blue:hover { border-color: rgba(59, 130, 246, 0.3); box-shadow: 0 20px 60px rgba(59, 130, 246, 0.1); }

.service-card h3 {
    font-size: 1.5rem;
    color: white;
    font-family: 'Inter', sans-serif;
    font-weight: bold;
    margin-bottom: 1rem;
}

.service-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.service-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: #d1d5db;
}

.service-list .check-icon {
    margin-top: 0.125rem;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    font-size: 0.875rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.service-link:hover {
    transform: translateX(5px);
}

.link-green { color: #34d399; }
.link-red { color: #fb7185; }
.link-amber { color: #fbbf24; }
.link-blue { color: #60a5fa; }

/* ===== PARTNERS ===== */
.partners-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.partner-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1rem;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.partner-card::before {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: inherit;
    padding: 1px;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.5), rgba(59, 130, 246, 0.5), rgba(139, 92, 246, 0.5));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

.partner-card:hover {
    transform: translateY(-8px) scale(1.03);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 20px 60px rgba(139, 92, 246, 0.1);
}

.partner-icon {
    width: 4rem;
    height: 4rem;
    margin: 0 auto 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.5s ease;
}

.partner-card:hover .partner-icon {
    transform: rotate(360deg);
    background: rgba(255, 255, 255, 0.2);
}

.partner-icon svg {
    width: 2rem;
    height: 2rem;
    color: #a78bfa;
}

.partner-card h3 {
    font-size: 0.75rem;
    color: #c4b5fd;
    font-family: 'Inter', sans-serif;
    font-weight: bold;
    letter-spacing: 0.1em;
    margin-bottom: 0.5rem;
}

.partner-card h4 {
    font-size: 1.25rem;
    color: white;
    font-family: 'Inter', sans-serif;
    font-weight: bold;
    margin-bottom: 0.25rem;
}

.partner-card p {
    font-size: 0.875rem;
    color: #9ca3af;
}

.partner-link {
    display: inline-block;
    margin-top: 1rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: #60a5fa;
    transition: color 0.3s ease;
}

.partner-link:hover {
    color: #a78bfa;
}

/* ===== CONTACT ===== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.contact-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.contact-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1rem;
    padding: 1.5rem;
    transition: all 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.2);
}

.contact-icon {
    width: 3rem;
    height: 3rem;
    border-radius: 0.75rem;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.75rem;
    transition: transform 0.3s ease;
}

.contact-card:hover .contact-icon {
    transform: rotate(10deg) scale(1.1);
}

.contact-icon svg {
    width: 1.5rem;
    height: 1.5rem;
}

.contact-card h4 {
    font-family: 'Inter', sans-serif;
    font-weight: bold;
    color: white;
    margin-bottom: 0.25rem;
}

.contact-card p {
    font-size: 0.875rem;
    color: #d1d5db;
}

.contact-violet { background: linear-gradient(135deg, rgba(139, 92, 246, 0.2), rgba(168, 85, 247, 0.2)); }
.contact-violet .contact-icon { color: #a78bfa; }

.contact-blue { background: linear-gradient(135deg, rgba(59, 130, 246, 0.2), rgba(6, 182, 212, 0.2)); }
.contact-blue .contact-icon { color: #60a5fa; }

.contact-green { background: linear-gradient(135deg, rgba(16, 185, 129, 0.2), rgba(34, 197, 94, 0.2)); }
.contact-green .contact-icon { color: #34d399; }

.contact-amber { background: linear-gradient(135deg, rgba(245, 158, 11, 0.2), rgba(249, 115, 22, 0.2)); }
.contact-amber .contact-icon { color: #fbbf24; }

.map-container {
    border-radius: 1.5rem;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 60px rgba(139, 92, 246, 0.1);
    position: relative;
    overflow: hidden;
}

.map-container::before {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: inherit;
    padding: 1px;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.5), rgba(59, 130, 246, 0.5), rgba(139, 92, 246, 0.5));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    z-index: 1;
}

.map-container iframe {
    display: block;
    width: 100%;
}

/* Contact form */
.contact-form-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1.5rem;
    padding: 2rem;
    box-shadow: 0 20px 60px rgba(139, 92, 246, 0.1);
    position: relative;
    overflow: hidden;
}

.contact-form-card::before {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: inherit;
    padding: 1px;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.5), rgba(59, 130, 246, 0.5), rgba(139, 92, 246, 0.5));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

.form-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.form-icon {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 1rem;
    background: linear-gradient(135deg, #8b5cf6, #3b82f6);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    animation: ring-spin 20s linear infinite;
}

.form-icon svg {
    width: 1.75rem;
    height: 1.75rem;
}

.form-header h3 {
    font-size: 1.25rem;
    color: white;
    font-family: 'Inter', sans-serif;
    font-weight: bold;
}

.form-header p {
    font-size: 0.875rem;
    color: #9ca3af;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-group {
    margin-bottom: 1rem;
}

.form-group label {
    display: block;
    font-size: 0.875rem;
    color: #d1d5db;
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0.5rem;
    color: white;
    font-family: 'Inter', sans-serif;
    font-size: 0.875rem;
    transition: all 0.3s ease;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #6b7280;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #8b5cf6;
    box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.2);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

/* Success message */
.success-message {
    display: none;
    text-align: center;
    padding: 2rem;
}

.success-message.show {
    display: block;
    animation: pulse-dot 3s ease-in-out infinite;
}

.success-icon {
    width: 4rem;
    height: 4rem;
    margin: 0 auto 1rem;
    background: rgba(16, 185, 129, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.success-icon svg {
    width: 2rem;
    height: 2rem;
    color: #34d399;
}

.success-message h3 {
    font-size: 1.25rem;
    color: white;
    font-family: 'Inter', sans-serif;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.success-message p {
    color: #d1d5db;
}

/* ===== FOOTER ===== */
footer {
    background: #0a0a0f;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: white;
    position: relative;
    overflow: hidden;
}

.footer-container {
    padding-top: 4rem;
    padding-bottom: 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.footer-logo-icon {
    width: 3rem;
    height: 3rem;
    border-radius: 0.75rem;
    background: linear-gradient(135deg, #8b5cf6, #3b82f6);
    display: flex;
    align-items: center;
    justify-content: center;
    animation: ring-spin 20s linear infinite;
}

.footer-logo-icon svg {
    width: 1.5rem;
    height: 1.5rem;
}

.footer-logo h3 {
    font-size: 1.25rem;
    color: white;
}

.footer-logo p {
    font-size: 0.75rem;
    color: #9ca3af;
    margin-top: -2px;
}

.footer-brand > p {
    font-size: 0.875rem;
    color: #9ca3af;
    margin-bottom: 1rem;
}

.footer-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: #a78bfa;
    animation: quote-fade 3s ease-in-out infinite;
}

.sparkle-icon {
    width: 1rem;
    height: 1rem;
}

.footer-links h4,
.footer-contact h4 {
    font-family: 'Inter', sans-serif;
    font-weight: bold;
    font-size: 1rem;
    color: white;
    margin-bottom: 1rem;
}

.footer-links a {
    display: block;
    font-size: 0.875rem;
    color: #9ca3af;
    margin-bottom: 0.5rem;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: #a78bfa;
    transform: translateX(5px);
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-size: 0.875rem;
    color: #9ca3af;
    margin-bottom: 0.5rem;
    transition: all 0.3s ease;
}

.footer-contact-item:hover {
    transform: translateX(5px);
    color: #d1d5db;
}

.footer-contact-item svg {
    width: 1rem;
    height: 1rem;
    margin-top: 0.2rem;
    flex-shrink: 0;
    color: #a78bfa;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
}

.footer-bottom p {
    font-size: 0.75rem;
    color: #6b7280;
}

.scroll-top {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    background: linear-gradient(90deg, #8b5cf6, #3b82f6);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(139, 92, 246, 0.3);
}

.scroll-top:hover {
    transform: scale(1.1) rotate(360deg);
}

.scroll-top svg {
    width: 1.25rem;
    height: 1.25rem;
}

/* ===== REVEAL ANIMATIONS ===== */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .hero h1 { font-size: 2.5rem; }
    .hero-container { grid-template-columns: 1fr; gap: 3rem; }
    .hero-visual { max-width: 500px; margin: 0 auto; }
    .about-grid { grid-template-columns: 1fr; }
    .services-grid { grid-template-columns: 1fr; }
    .partners-grid { grid-template-columns: repeat(2, 1fr); }
    .contact-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(10, 10, 15, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 1rem;
        gap: 0.5rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .nav-links.active {
        display: flex;
    }
    
    .nav-links a:not(.btn) {
        padding: 0.75rem 1rem;
        width: 100%;
        text-align: center;
        border-radius: 0.5rem;
    }
    
    .nav-links a:not(.btn):hover {
        background: rgba(255, 255, 255, 0.1);
    }
    
    .nav-links a:not(.btn)::after {
        display: none;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .hero h1 { font-size: 2rem; }
    .features-grid { grid-template-columns: 1fr; }
    .why-us-list { grid-template-columns: 1fr; }
    .partners-grid { grid-template-columns: 1fr; }
    .contact-cards { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; text-align: center; }
    .section-header h2 { font-size: 2rem; }
    .floating-badge { display: none; }
}

@media (max-width: 480px) {
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .hero-buttons { flex-direction: column; }
    .hero-buttons .btn { width: 100%; }
    .hero h1 { font-size: 1.75rem; }
    .scroll-indicator { display: none; }
}