/* Chicken Rivo - Software Development Company */
/* Version: 4.0 - Complete UI Redesign - Dark Modern Theme */

/* CSS Variables - Dark Modern Theme */
:root {
    /* Primary Colors - Vibrant Purple/Blue */
    --primary-purple: #A855F7;
    --primary-purple-light: #C084FC;
    --primary-purple-dark: #9333EA;
    --primary-blue: #3B82F6;
    --primary-blue-light: #60A5FA;
    --primary-blue-dark: #2563EB;
    --accent-cyan: #06B6D4;
    --accent-cyan-light: #22D3EE;
    
    /* Dark Theme Colors */
    --bg-primary: #0A0E27;
    --bg-secondary: #111827;
    --bg-card: #1F2937;
    --bg-card-hover: #374151;
    --text-primary: #F9FAFB;
    --text-secondary: #D1D5DB;
    --text-muted: #9CA3AF;
    
    /* Accent Colors */
    --success: #10B981;
    --warning: #F59E0B;
    --error: #EF4444;
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #A855F7 0%, #3B82F6 50%, #06B6D4 100%);
    --gradient-secondary: linear-gradient(135deg, #3B82F6 0%, #06B6D4 100%);
    --gradient-accent: linear-gradient(135deg, #A855F7 0%, #06B6D4 100%);
    --gradient-dark: linear-gradient(135deg, #0A0E27 0%, #111827 100%);
    
    /* Shadows */
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.5);
    --shadow-xl: 0 20px 25px rgba(168, 85, 247, 0.3);
    --shadow-glow: 0 0 40px rgba(168, 85, 247, 0.5);
    --shadow-neon: 0 0 20px rgba(168, 85, 247, 0.8);
    
    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-2xl: 32px;
    --radius-full: 9999px;
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
    --spacing-2xl: 4rem;
    --spacing-3xl: 6rem;
    
    /* Typography */
    --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-size-xs: 0.75rem;
    --font-size-sm: 0.875rem;
    --font-size-base: 1rem;
    --font-size-lg: 1.125rem;
    --font-size-xl: 1.25rem;
    --font-size-2xl: 1.5rem;
    --font-size-3xl: 1.875rem;
    --font-size-4xl: 2.25rem;
    --font-size-5xl: 3rem;
    --font-size-6xl: 4rem;
    
    /* Transitions */
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-family);
    line-height: 1.6;
    color: var(--text-primary);
    background: var(--bg-primary);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 800;
    line-height: 1.1;
    color: var(--text-primary);
    letter-spacing: -0.03em;
}

p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-normal);
}

/* Modern Dark Navigation */
.navbar {
    background: rgba(10, 14, 39, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(168, 85, 247, 0.2);
    padding: 1.25rem 0;
    transition: all 0.3s ease;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.navbar.scrolled {
    background: rgba(10, 14, 39, 0.98);
    border-bottom-color: rgba(168, 85, 247, 0.4);
    box-shadow: 0 4px 30px rgba(168, 85, 247, 0.2);
}

.brand-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo-icon {
    width: 56px;
    height: 56px;
    background: var(--gradient-primary);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-primary);
    font-weight: 900;
    font-size: 1.5rem;
    box-shadow: var(--shadow-neon);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.logo-icon::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 16px;
    padding: 2px;
    background: var(--gradient-primary);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.logo-icon:hover::after {
    opacity: 1;
}

.logo-icon:hover {
    transform: scale(1.1) rotate(5deg);
    box-shadow: var(--shadow-glow);
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.logo-name {
    font-weight: 900;
    font-size: 1.5rem;
    color: var(--text-primary);
    letter-spacing: -0.02em;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.logo-tagline {
    font-size: 0.75rem;
    color: var(--text-muted);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.navbar-nav .nav-link {
    color: var(--text-secondary) !important;
    font-weight: 600;
    padding: 0.75rem 1.5rem !important;
    border-radius: var(--radius-md);
    transition: all 0.3s ease;
    position: relative;
    margin: 0 0.5rem;
}

.navbar-nav .nav-link::before {
    content: '';
    position: absolute;
    bottom: 0.5rem;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 60%;
    height: 2px;
    background: var(--gradient-primary);
    transition: transform 0.3s ease;
    border-radius: 2px;
}

.navbar-nav .nav-link:hover::before,
.navbar-nav .nav-link.active::before {
    transform: translateX(-50%) scaleX(1);
}

.navbar-nav .nav-link:hover {
    color: var(--text-primary) !important;
    background: rgba(168, 85, 247, 0.1);
}

.navbar-nav .nav-link.active {
    color: var(--primary-purple-light) !important;
    background: rgba(168, 85, 247, 0.15);
}

.nav-cta {
    background: var(--gradient-primary) !important;
    color: var(--text-primary) !important;
    border-radius: var(--radius-lg) !important;
    padding: 0.75rem 2rem !important;
    margin-left: 1rem;
    box-shadow: var(--shadow-neon) !important;
    position: relative;
    overflow: hidden;
    font-weight: 700;
}

.nav-cta::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.nav-cta:hover::before {
    width: 300px;
    height: 300px;
}

.nav-cta:hover {
    color: var(--text-primary) !important;
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow) !important;
}

.navbar-toggler {
    border: 2px solid rgba(168, 85, 247, 0.3);
    padding: 0.5rem;
    width: 44px;
    height: 44px;
    position: relative;
    border-radius: var(--radius-md);
    background: rgba(168, 85, 247, 0.1);
}

.hamburger-line {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--primary-purple-light);
    margin: 5px 0;
    transition: var(--transition-normal);
    border-radius: 2px;
}

/* Dark Hero Section */
.hero-section {
    min-height: 100vh;
    background: var(--gradient-dark);
    position: relative;
    display: flex;
    align-items: center;
    padding: 160px 0 6rem;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-pattern {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(168, 85, 247, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(59, 130, 246, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(6, 182, 212, 0.1) 0%, transparent 60%);
    animation: pulse 20s ease-in-out infinite;
}

.hero-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
}

.shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.1;
    filter: blur(60px);
    animation: float 25s ease-in-out infinite;
}

.shape-1 {
    width: 600px;
    height: 600px;
    background: var(--primary-purple);
    top: -15%;
    right: -10%;
}

.shape-2 {
    width: 500px;
    height: 500px;
    background: var(--primary-blue);
    bottom: -10%;
    left: -10%;
    animation-delay: -5s;
}

.shape-3 {
    width: 400px;
    height: 400px;
    background: var(--accent-cyan);
    top: 50%;
    right: 15%;
    animation-delay: -10s;
}

.hero-content {
    position: relative;
    z-index: 1;
    animation: fadeInUp 1s ease-out;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(168, 85, 247, 0.15);
    backdrop-filter: blur(10px);
    color: var(--primary-purple-light);
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    font-weight: 700;
    margin-bottom: 2rem;
    border: 1px solid rgba(168, 85, 247, 0.3);
    box-shadow: 0 4px 20px rgba(168, 85, 247, 0.2);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.hero-badge i {
    font-size: 1rem;
    color: var(--primary-purple-light);
}

.hero-title {
    font-size: clamp(3rem, 8vw, 2.5rem);
    font-weight: 900;
    margin-bottom: 2rem;
    line-height: 1.1;
    color: var(--text-primary);
    letter-spacing: -0.04em;
}

.gradient-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
    position: relative;
}

.hero-description {
    font-size: clamp(1.125rem, 2.5vw, 1.5rem);
    color: var(--text-secondary);
    margin-bottom: 3rem;
    max-width: 650px;
    line-height: 1.8;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
    padding: 1rem;
    /* background: rgba(31, 41, 55, 0.6);
    backdrop-filter: blur(20px);
    border-radius: var(--radius-2xl);
    border: 1px solid rgba(168, 85, 247, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4); */
}

.stat-item {
    text-align: center;
    padding: 1rem;
    border-radius: var(--radius-lg);
    transition: all 0.3s ease;
}

.stat-item:hover {
    background: rgba(168, 85, 247, 0.1);
    transform: translateY(-5px);
}

.stat-number {
    font-size: clamp(2.5rem, 5vw, 4rem);
    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-muted);
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.hero-actions {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

/* Modern Dark Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2.5rem;
    border-radius: var(--radius-lg);
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-family: var(--font-family);
    font-size: 1rem;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--text-primary);
    box-shadow: var(--shadow-neon);
    border: none;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.btn-primary:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary:hover {
    color: var(--text-primary);
    transform: translateY(-3px);
    box-shadow: var(--shadow-glow);
}

.btn-outline {
    background: transparent;
    color: var(--text-primary);
    border: 2px solid rgba(168, 85, 247, 0.5);
    box-shadow: 0 4px 20px rgba(168, 85, 247, 0.2);
}

.btn-outline:hover {
    color: var(--text-primary);
    background: rgba(168, 85, 247, 0.1);
    border-color: var(--primary-purple-light);
    transform: translateY(-3px);
    box-shadow: var(--shadow-neon);
}

.btn-lg {
    padding: 1.25rem 3rem;
    font-size: 1.125rem;
}

/* Hero Visual - Dark Dashboard */
.hero-visual {
    position: relative;
    z-index: 1;
    animation: fadeInUp 1s ease-out 0.3s both;
}

.marketing-dashboard {
    background: rgba(31, 41, 55, 0.8);
    backdrop-filter: blur(20px);
    border-radius: var(--radius-2xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    border: 1px solid rgba(168, 85, 247, 0.3);
    transform: perspective(1000px) rotateY(-8deg) rotateX(8deg);
    transition: transform 0.5s ease;
}

.marketing-dashboard:hover {
    transform: perspective(1000px) rotateY(0deg) rotateX(0deg);
    box-shadow: var(--shadow-glow);
}

.dashboard-header {
    background: rgba(168, 85, 247, 0.15);
    padding: 1.5rem 2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    border-bottom: 1px solid rgba(168, 85, 247, 0.2);
}

.dashboard-dots {
    display: flex;
    gap: 10px;
}

.dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

.dot.red { background: var(--error); }
.dot.yellow { background: var(--warning); }
.dot.green { background: var(--success); }

.dashboard-title {
    color: var(--text-secondary);
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.dashboard-body {
    padding: 2rem;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.metric-card {
    background: rgba(168, 85, 247, 0.1);
    border-radius: var(--radius-xl);
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    border: 1px solid rgba(168, 85, 247, 0.2);
    transition: all 0.3s ease;
    text-align: center;
}

.metric-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: rgba(168, 85, 247, 0.5);
    background: rgba(168, 85, 247, 0.15);
}

.metric-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-primary);
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-primary);
    font-size: 1.75rem;
    box-shadow: var(--shadow-neon);
}

.metric-content {
    flex: 1;
}

.metric-value {
    font-size: 2rem;
    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;
}

.metric-label {
    font-size: 0.75rem;
    color: var(--text-muted);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.floating-icons {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.floating-icon {
    position: absolute;
    width: 80px;
    height: 80px;
    background: rgba(31, 41, 55, 0.9);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: var(--shadow-xl);
    animation: float 8s ease-in-out infinite;
    border: 1px solid rgba(168, 85, 247, 0.3);
}

.icon-1 {
    top: 10%;
    left: -8%;
    color: var(--primary-purple-light);
    animation-delay: 0s;
}

.icon-2 {
    bottom: 20%;
    right: -5%;
    color: var(--primary-blue-light);
    animation-delay: 2s;
}

.icon-3 {
    top: 60%;
    left: -5%;
    color: var(--accent-cyan-light);
    animation-delay: 4s;
}

.icon-4 {
    top: 40%;
    right: -8%;
    color: var(--primary-purple-light);
    animation-delay: 6s;
}

/* Section Styles */
.section-badge {
    display: inline-block;
    background: rgba(168, 85, 247, 0.15);
    color: var(--primary-purple-light);
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(168, 85, 247, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.section-title {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 900;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    color: var(--text-primary);
    letter-spacing: -0.04em;
}

.section-description {
    font-size: clamp(1.125rem, 2.5vw, 1.375rem);
    color: var(--text-secondary);
    max-width: 750px;
    margin: 0 auto 4rem;
    line-height: 1.8;
}

/* Dark About Section */
.about-section {
    background: var(--bg-secondary);
    padding: 6rem 0;
    position: relative;
}

.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(168, 85, 247, 0.5), transparent);
}

.about-content {
    animation: fadeInUp 1s ease-out;
}

.about-features {
    margin-top: 3rem;
    display: grid;
    gap: 2rem;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    padding: 2rem;
    background: rgba(31, 41, 55, 0.6);
    backdrop-filter: blur(20px);
    border-radius: var(--radius-2xl);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
    transition: all 0.3s ease;
    border: 1px solid rgba(168, 85, 247, 0.2);
}

.feature-item:hover {
    transform: translateX(15px);
    box-shadow: var(--shadow-xl);
    border-color: rgba(168, 85, 247, 0.5);
    background: rgba(31, 41, 55, 0.8);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--text-primary);
    flex-shrink: 0;
    box-shadow: var(--shadow-neon);
    transition: all 0.3s ease;
}

.feature-item:hover .feature-icon {
    transform: scale(1.15) rotate(10deg);
    box-shadow: var(--shadow-glow);
}

.feature-content h4 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
    color: var(--text-primary);
    font-weight: 800;
}

.feature-content p {
    color: var(--text-secondary);
    margin: 0;
    line-height: 1.8;
    font-size: 1.125rem;
}

.about-visual {
    animation: fadeInUp 1s ease-out 0.3s both;
}

.services-showcase {
    background: rgba(31, 41, 55, 0.8);
    backdrop-filter: blur(20px);
    border-radius: var(--radius-2xl);
    padding: 3rem;
    box-shadow: var(--shadow-xl);
    border: 1px solid rgba(168, 85, 247, 0.3);
}

.service-category {
    margin-bottom: 2.5rem;
    padding-bottom: 2.5rem;
    border-bottom: 1px solid rgba(168, 85, 247, 0.2);
}

.service-category:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.service-category h5 {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
    font-weight: 800;
}

.service-items {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.service-tag {
    background: rgba(168, 85, 247, 0.15);
    color: var(--primary-purple-light);
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    font-weight: 700;
    border: 1px solid rgba(168, 85, 247, 0.3);
    transition: all 0.3s ease;
}

.service-tag:hover {
    background: var(--primary-purple);
    color: var(--text-primary);
    transform: translateY(-3px);
    box-shadow: var(--shadow-neon);
    border-color: var(--primary-purple);
}

/* Dark Services Section */
.services-section {
    background: var(--bg-primary);
    padding: 6rem 0;
    position: relative;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 2rem;
}

.service-card {
    background: rgba(31, 41, 55, 0.8);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(168, 85, 247, 0.3);
    border-radius: var(--radius-2xl);
    padding: 2.5rem;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    transform: translateY(-12px);
    box-shadow: var(--shadow-glow);
    border-color: rgba(168, 85, 247, 0.6);
    background: rgba(31, 41, 55, 0.95);
}

.service-card.featured {
    border-color: var(--primary-purple);
    background: rgba(168, 85, 247, 0.1);
    box-shadow: var(--shadow-xl);
}

.featured-badge {
    position: absolute;
    top: 2rem;
    right: 2rem;
    background: var(--gradient-primary);
    color: var(--text-primary);
    padding: 0.5rem 1rem;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    box-shadow: var(--shadow-neon);
}

.service-icon {
    width: 100px;
    height: 100px;
    background: var(--gradient-primary);
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: var(--text-primary);
    margin-bottom: 2rem;
    box-shadow: var(--shadow-neon);
    transition: all 0.4s ease;
}

.service-card:hover .service-icon {
    transform: scale(1.15) rotate(10deg);
    box-shadow: var(--shadow-glow);
}

.service-card h3 {
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
    font-weight: 800;
}

.service-card p {
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.8;
    font-size: 1.125rem;
}

.service-features {
    list-style: none;
    padding: 0;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    color: var(--text-secondary);
    font-weight: 600;
    font-size: 1rem;
}

.service-features i {
    color: var(--primary-purple-light);
    font-size: 1rem;
}

/* Dark Process Section */
.process-section {
    background: var(--bg-secondary);
    padding: 6rem 0;
    position: relative;
}

.process-timeline {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
    position: relative;
}

.process-step {
    text-align: center;
    position: relative;
    padding: 2.5rem;
    background: rgba(31, 41, 55, 0.6);
    backdrop-filter: blur(20px);
    border-radius: var(--radius-2xl);
    border: 1px solid rgba(168, 85, 247, 0.2);
    transition: all 0.3s ease;
}

.process-step:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: rgba(168, 85, 247, 0.5);
    background: rgba(31, 41, 55, 0.8);
}

.step-number {
    width: 100px;
    height: 100px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 900;
    color: var(--text-primary);
    margin: 0 auto 2rem;
    box-shadow: var(--shadow-neon);
    transition: all 0.3s ease;
    position: relative;
}

.step-number::before {
    content: '';
    position: absolute;
    inset: -8px;
    border-radius: 50%;
    background: var(--gradient-primary);
    opacity: 0.4;
    filter: blur(15px);
    z-index: -1;
}

.process-step:hover .step-number {
    transform: scale(1.15);
    box-shadow: var(--shadow-glow);
}

.step-content h4 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
    font-weight: 800;
}

.step-content p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin: 0;
    font-size: 1.125rem;
}

/* Dark CTA Section */
.cta-section {
    background: var(--gradient-primary);
    padding: 6rem 0;
    color: var(--text-primary);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.cta-title {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 900;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    position: relative;
    z-index: 1;
}

.cta-description {
    font-size: clamp(1.125rem, 2.5vw, 1.375rem);
    margin-bottom: 3rem;
    opacity: 0.95;
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 1;
    line-height: 1.8;
}

.cta-actions {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.cta-section .btn-primary {
    background: var(--text-primary);
    color: var(--primary-purple);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
}

.cta-section .btn-primary:hover {
    background: rgba(255, 255, 255, 0.95);
    color: var(--primary-purple);
    transform: translateY(-3px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.5);
}

.cta-section .btn-outline {
    background: transparent;
    color: var(--text-primary);
    border: 2px solid var(--text-primary);
    backdrop-filter: blur(10px);
}

.cta-section .btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-primary);
    transform: translateY(-3px);
}

/* Dark Footer */
.footer {
    background: var(--bg-primary);
    color: var(--text-primary);
    padding: 4rem 0 2rem;
    position: relative;
    border-top: 1px solid rgba(168, 85, 247, 0.2);
}

.footer-bottom {
    border-top: 1px solid rgba(168, 85, 247, 0.2);
    padding-top: 2rem;
    margin-top: 2rem;
}

.copyright {
    color: var(--text-muted);
    margin: 0;
    font-size: 0.875rem;
}

.footer-email {
    color: var(--text-muted);
    text-decoration: none;
    transition: var(--transition-normal);
}

.footer-email:hover {
    color: var(--primary-purple-light);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(60px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px) translateX(0px);
    }
    33% {
        transform: translateY(-30px) translateX(15px);
    }
    66% {
        transform: translateY(15px) translateX(-15px);
    }
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.7;
    }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(60px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-stats {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .hero-actions {
        justify-content: center;
        flex-direction: column;
    }
    
    .hero-actions .btn {
        width: 100%;
        justify-content: center;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .process-timeline {
        grid-template-columns: 1fr;
    }
    
    .hero-visual {
        margin-top: 3rem;
    }
    
    .floating-icons {
        display: none;
    }
    
    .services-showcase {
        padding: 2rem;
    }
    
    .service-card {
        padding: 2rem;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .cta-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-actions .btn {
        width: 100%;
        max-width: 350px;
    }
    
    .dashboard-body {
        grid-template-columns: 1fr;
    }
    
    .marketing-dashboard {
        transform: none;
    }
}

@media (max-width: 576px) {
    .hero-content {
        text-align: center;
    }
    
    .btn {
        padding: 0.875rem 2rem;
        font-size: 0.875rem;
    }
    
    .service-card {
        padding: 1.5rem;
    }
    
    .feature-item {
        flex-direction: column;
        text-align: center;
    }
    
    .logo-icon {
        width: 48px;
        height: 48px;
        font-size: 1.25rem;
    }
    
    .logo-name {
        font-size: 1.25rem;
    }
}

/* Scroll animations */
.fade-in {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: var(--bg-secondary);
}

::-webkit-scrollbar-thumb {
    background: var(--gradient-primary);
    border-radius: 6px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-purple-dark);
}
