@import url('https://fonts.googleapis.com/css2?family=Geist:wght@400;500;600;700;800;900&family=Space+Mono:wght@400;700&display=swap&subset=latin');

:root {
    /* Primary gradient palette */
    --primary-color: #0099ff;
    --primary-light: #00d9ff;
    --primary-dark: #0066cc;
    --primary-rgb: 0, 153, 255;
    --primary-light-rgb: 0, 217, 255;
    --primary-dark-rgb: 0, 102, 204;

    /* Accent colors */
    --accent-purple: #667eea;
    --accent-pink: #f472b6;
    --accent-green: #10b981;

    /* Semantic colors */
    --text-primary: #0f172a;
    --text-secondary: #475569;
    --text-tertiary: #94a3b8;
    --bg-primary: #ffffff;
    --bg-secondary: #f8fafc;
    --bg-tertiary: #f1f5f9;
    --border-color: #e2e8f0;
}

* {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Geist', sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    background: var(--bg-primary);
    color: var(--text-primary);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    line-height: 1.6;
}

/* Typography improvements */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    letter-spacing: -0.03em;
}

h2 {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
}

h3 {
    font-size: clamp(1.25rem, 2.5vw, 1.75rem);
}

p {
    color: var(--text-secondary);
    font-weight: 400;
}

.electric-blue {
    color: var(--primary-color);
}

.bg-electric {
    background: var(--primary-color);
}

/* Button styles - modern and accessible */
.btn-primary {
    background: linear-gradient(135deg, #0099ff 0%, #00d9ff 100%);
    color: white;
    border: none;
    padding: 12px 28px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(0, 153, 255, 0.3);
    position: relative;
    overflow: hidden;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(0, 153, 255, 0.4);
}

.btn-primary:active {
    transform: translateY(0);
}

.btn-secondary {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    padding: 10px 26px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: rgba(0, 153, 255, 0.1);
    transform: translateY(-2px);
}

/* Card styles */
.card {
    background: var(--bg-primary);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 24px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.card:hover {
    border-color: var(--primary-color);
    box-shadow: 0 12px 32px rgba(0, 153, 255, 0.12);
    transform: translateY(-4px);
}

.hero-title {
    color: var(--primary-color);
    font-weight: 900;
    letter-spacing: -0.03em;
}

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

.float {
    animation: float 3s ease-in-out infinite;
}

@keyframes fade-in-up {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fade-in-up 0.8s ease-out forwards;
    opacity: 0;
}

.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }
.delay-4 { animation-delay: 0.4s; }

@keyframes color-splash {
    0% {
        opacity: 1;
        transform: scale(0);
        filter: blur(0px);
    }
    30% {
        opacity: 0.8;
    }
    70% {
        opacity: 0.3;
    }
    100% {
        opacity: 0;
        transform: scale(5);
        filter: blur(20px);
    }
}

.color-splash {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 999;
}

.splash-circle {
    position: absolute;
    border-radius: 50%;
    animation: color-splash 0.8s ease-out;
}

.btn-electric {
    background: var(--primary-color);
    color: white;
    padding: 14px 32px;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(var(--primary-rgb), 0.5);
    cursor: pointer;
    border: none;
    position: relative;
    overflow: hidden;
}

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

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

.btn-electric:hover {
    background: var(--primary-dark);
    box-shadow: 0 8px 30px rgba(var(--primary-rgb), 0.7);
    transform: translateY(-3px);
}

header {
    background: white;
    border-bottom: 1px solid #e5e7eb;
}

nav a {
    color: #0a0f1a;
    text-decoration: none;
    font-weight: 500;
}

nav a:hover {
    color: var(--primary-color);
}

.testimonial-card {
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    padding: 24px;
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    border-color: var(--primary-color);
    box-shadow: 0 4px 12px rgba(var(--primary-rgb), 0.1);
}

.testimonial-stars {
    color: var(--primary-color);
    margin-bottom: 12px;
}

.pricing-card {
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    padding: 32px 24px;
    transition: all 0.3s ease;
}

.pricing-card:hover {
    border-color: var(--primary-color);
    box-shadow: 0 8px 24px rgba(var(--primary-rgb), 0.15);
    transform: translateY(-4px);
}

.pricing-card.featured {
    border-color: var(--primary-color);
    background: linear-gradient(135deg, rgba(var(--primary-rgb), 0.05) 0%, transparent 100%);
}

.pricing-icon {
    font-size: 32px;
    margin-bottom: 12px;
}

.price-amount {
    font-size: 42px;
    font-weight: 900;
    color: var(--primary-color);
    margin: 16px 0;
}

/* Hero Section */
.hero-section {
    position: relative;
    background: white;
    overflow: hidden;
}

.hero-glow {
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 153, 255, 0.15) 0%, transparent 70%);
    top: -200px;
    right: -200px;
    z-index: 0;
}

/* Outline Button */
.btn-outline {
    background: transparent;
    color: var(--primary-color);
    padding: 14px 32px;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid var(--primary-color);
    cursor: pointer;
    display: inline-block;
    text-decoration: none;
}

.btn-outline:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-3px);
}

/* Stats */
.stat-box {
    text-align: center;
}

.stat-number {
    font-size: 48px;
    font-weight: 900;
    color: var(--primary-color);
    margin-bottom: 8px;
}

.stat-label {
    font-size: 14px;
    color: #6b7280;
    font-weight: 500;
}

@keyframes number-pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

.number-pulse {
    animation: number-pulse 2s ease-in-out infinite;
}

/* Feature Cards */
.feature-card {
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 32px;
    transition: all 0.3s ease;
    position: relative;
}

.feature-card:hover {
    border-color: var(--primary-color);
    box-shadow: 0 12px 40px rgba(var(--primary-rgb), 0.1);
    transform: translateY(-8px);
}

.feature-icon {
    font-size: 48px;
    margin-bottom: 16px;
}

@keyframes icon-spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.icon-spin:hover {
    animation: icon-spin 0.6s ease-in-out;
}

.feature-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #0a0f1a;
}

.feature-card p {
    font-size: 15px;
    color: #6b7280;
    line-height: 1.6;
}

/* Portfolio Cards */
.portfolio-card {
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.portfolio-card:hover {
    border-color: var(--primary-color);
    box-shadow: 0 12px 40px rgba(var(--primary-rgb), 0.1);
    transform: translateY(-8px);
}

.portfolio-image {
    width: 100%;
    aspect-ratio: 3/2;
    background: linear-gradient(135deg, #f3f4f6 0%, #e5e7eb 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 72px;
}

.portfolio-meta {
    padding: 24px;
}

.portfolio-title {
    font-size: 18px;
    font-weight: 700;
    color: #0a0f1a;
    margin-bottom: 8px;
}

.portfolio-desc {
    font-size: 14px;
    color: #6b7280;
    margin-bottom: 16px;
}

@keyframes arrow-slide {
    0% { transform: translateX(0); }
    50% { transform: translateX(6px); }
    100% { transform: translateX(0); }
}

.arrow-slide {
    color: var(--primary-color);
    font-weight: 600;
    display: inline-block;
    animation: arrow-slide 1.5s ease-in-out infinite;
}

/* Scroll Reveal */
@keyframes scroll-reveal {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.scroll-reveal {
    opacity: 0;
}

.scroll-reveal.revealed {
    animation: scroll-reveal 0.8s ease-out forwards;
}

/* Flip In */
@keyframes flip-in {
    0% {
        opacity: 0;
        transform: rotateX(90deg);
    }
    100% {
        opacity: 1;
        transform: rotateX(0deg);
    }
}

.flip-in {
    animation: flip-in 0.6s ease-out forwards;
}

/* Text Glow Flicker */
@keyframes text-glow-flicker {
    0%, 100% {
        text-shadow: 0 0 30px rgba(0, 153, 255, 0.3), 0 0 60px rgba(0, 153, 255, 0.1);
    }
    50% {
        text-shadow: 0 0 60px rgba(0, 153, 255, 0.5), 0 0 100px rgba(0, 153, 255, 0.3);
    }
}

.text-glow-flicker {
    animation: text-glow-flicker 3s ease-in-out infinite;
}

/* Badge */
.badge {
    display: inline-block;
    background: linear-gradient(135deg, rgba(var(--primary-rgb), 0.1) 0%, rgba(0, 217, 255, 0.1) 100%);
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Success Checkmark */
.success-checkmark {
    color: #10b981;
    display: inline-block;
    margin-right: 8px;
    font-weight: 700;
}

/* CTA Box */
.cta-box {
    background: linear-gradient(135deg, #0099ff 0%, #0080cc 100%);
    border-radius: 12px;
    padding: 48px 32px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(0, 217, 255, 0.2), transparent);
    pointer-events: none;
}

.cta-content {
    position: relative;
    z-index: 1;
    color: white;
}

.cta-box h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 16px;
    color: white;
}

.cta-box p {
    font-size: 16px;
    margin-bottom: 24px;
    color: rgba(255, 255, 255, 0.9);
}

.cta-box .btn-electric {
    background: white;
    color: var(--primary-color);
}

.cta-box .btn-electric:hover {
    background: #f3f4f6;
}

/* Process Steps */
.process-step {
    display: flex;
    gap: 32px;
    margin-bottom: 32px;
    position: relative;
    padding-left: 80px;
}

.process-step::before {
    content: attr(data-step);
    position: absolute;
    left: 0;
    top: 0;
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 900;
    font-size: 24px;
}

.process-step:not(:last-child)::after {
    content: '';
    position: absolute;
    left: 29px;
    top: 60px;
    width: 2px;
    height: 100%;
    background: #e5e7eb;
}

.process-step h3 {
    font-size: 20px;
    font-weight: 700;
    color: #0a0f1a;
    margin-bottom: 8px;
}

.process-step p {
    font-size: 15px;
    color: #6b7280;
    line-height: 1.6;
}

/* Process Cards (Grid Layout) */
.process-card {
    text-align: center;
    padding: 32px 24px;
    background: white;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
}

.process-card:hover {
    border-color: var(--primary-color);
    box-shadow: 0 4px 12px rgba(0, 153, 255, 0.1);
}

.process-circle {
    width: 80px;
    height: 80px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 900;
    font-size: 32px;
    margin: 0 auto;
}

/* Text Color Utilities */
.text-electric {
    color: var(--primary-color);
}

.text-electric-blue {
    color: var(--primary-color);
}

.text-electric-light {
    color: var(--primary-light);
}

/* Font Weight Utility */
.font-900 {
    font-weight: 900;
}

/* Trust Strip */
.trust-strip {
    background: #f9fafb;
    padding: 48px 32px;
    text-align: center;
}

.trust-strip h3 {
    font-size: 18px;
    color: #6b7280;
    margin-bottom: 32px;
    font-weight: 600;
}

.trust-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 48px;
}

.trust-logo {
    font-size: 13px;
    color: #9ca3af;
    font-weight: 600;
    letter-spacing: 0.5px;
}

@media (max-width: 768px) {
    .price-amount {
        font-size: 32px;
    }

    .pricing-card {
        padding: 24px 16px;
    }

    .stat-number {
        font-size: 36px;
    }

    .hero-section {
        padding: 24px;
    }

    .feature-card {
        padding: 24px;
    }

    .process-step {
        padding-left: 60px;
        gap: 16px;
    }

    .process-step::before {
        width: 45px;
        height: 45px;
        font-size: 18px;
    }

    .process-card {
        padding: 24px 16px;
    }

    .process-circle {
        width: 60px;
        height: 60px;
        font-size: 24px;
    }

    .trust-logos {
        gap: 24px;
    }

    .cta-box {
        padding: 32px 24px;
    }

    .cta-box h2 {
        font-size: 24px;
    }
}
