/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #ffffff;
    background: linear-gradient(45deg, 
        rgba(168, 85, 247, 0.15), 
        rgba(59, 130, 246, 0.15), 
        rgba(6, 182, 212, 0.15)
    );
    background-size: 400% 400%;
    animation: gradient-shift 12s ease-in-out infinite;
    min-height: 100vh;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Animations */
@keyframes gradient-shift {
    0% {
        background: linear-gradient(45deg, 
            rgba(168, 85, 247, 0.15), 
            rgba(59, 130, 246, 0.15), 
            rgba(6, 182, 212, 0.15)
        );
    }
    12.5% {
        background: linear-gradient(45deg, 
            rgba(147, 51, 234, 0.15), 
            rgba(79, 70, 229, 0.15), 
            rgba(59, 130, 246, 0.15)
        );
    }
    25% {
        background: linear-gradient(45deg, 
            rgba(236, 72, 153, 0.15), 
            rgba(219, 39, 119, 0.15), 
            rgba(244, 63, 94, 0.15)
        );
    }
    37.5% {
        background: linear-gradient(45deg, 
            rgba(251, 146, 60, 0.15), 
            rgba(245, 101, 101, 0.15), 
            rgba(239, 68, 68, 0.15)
        );
    }
    50% {
        background: linear-gradient(45deg, 
            rgba(34, 197, 94, 0.15), 
            rgba(16, 185, 129, 0.15), 
            rgba(6, 182, 212, 0.15)
        );
    }
    62.5% {
        background: linear-gradient(45deg, 
            rgba(250, 204, 21, 0.15), 
            rgba(245, 158, 11, 0.15), 
            rgba(251, 146, 60, 0.15)
        );
    }
    75% {
        background: linear-gradient(45deg, 
            rgba(99, 102, 241, 0.15), 
            rgba(139, 92, 246, 0.15), 
            rgba(168, 85, 247, 0.15)
        );
    }
    87.5% {
        background: linear-gradient(45deg, 
            rgba(6, 182, 212, 0.15), 
            rgba(14, 165, 233, 0.15), 
            rgba(59, 130, 246, 0.15)
        );
    }
    100% {
        background: linear-gradient(45deg, 
            rgba(168, 85, 247, 0.15), 
            rgba(59, 130, 246, 0.15), 
            rgba(6, 182, 212, 0.15)
        );
    }
}

@keyframes color-cycle-primary {
    0% { color: #a855f7; }
    14.3% { color: #3b82f6; }
    28.6% { color: #06b6d4; }
    42.9% { color: #ec4899; }
    57.1% { color: #f59e0b; }
    71.4% { color: #10b981; }
    85.7% { color: #ef4444; }
    100% { color: #a855f7; }
}

@keyframes color-cycle-secondary {
    0% { color: #8b5cf6; }
    14.3% { color: #0ea5e9; }
    28.6% { color: #14b8a6; }
    42.9% { color: #f97316; }
    57.1% { color: #84cc16; }
    71.4% { color: #f43f5e; }
    85.7% { color: #6366f1; }
    100% { color: #8b5cf6; }
}

@keyframes bg-color-cycle {
    0% { background-color: rgba(168, 85, 247, 0.2); }
    14.3% { background-color: rgba(59, 130, 246, 0.2); }
    28.6% { background-color: rgba(6, 182, 212, 0.2); }
    42.9% { background-color: rgba(236, 72, 153, 0.2); }
    57.1% { background-color: rgba(245, 158, 11, 0.2); }
    71.4% { background-color: rgba(16, 185, 129, 0.2); }
    85.7% { background-color: rgba(239, 68, 68, 0.2); }
    100% { background-color: rgba(168, 85, 247, 0.2); }
}

@keyframes border-color-cycle {
    0% { border-color: rgba(168, 85, 247, 0.3); }
    14.3% { border-color: rgba(59, 130, 246, 0.3); }
    28.6% { border-color: rgba(6, 182, 212, 0.3); }
    42.9% { border-color: rgba(236, 72, 153, 0.3); }
    57.1% { border-color: rgba(245, 158, 11, 0.3); }
    71.4% { border-color: rgba(16, 185, 129, 0.3); }
    85.7% { border-color: rgba(239, 68, 68, 0.3); }
    100% { border-color: rgba(168, 85, 247, 0.3); }
}

@keyframes shadow-color-cycle {
    0% { box-shadow: 0 10px 25px rgba(168, 85, 247, 0.25); }
    14.3% { box-shadow: 0 10px 25px rgba(59, 130, 246, 0.25); }
    28.6% { box-shadow: 0 10px 25px rgba(6, 182, 212, 0.25); }
    42.9% { box-shadow: 0 10px 25px rgba(236, 72, 153, 0.25); }
    57.1% { box-shadow: 0 10px 25px rgba(245, 158, 11, 0.25); }
    71.4% { box-shadow: 0 10px 25px rgba(16, 185, 129, 0.25); }
    85.7% { box-shadow: 0 10px 25px rgba(239, 68, 68, 0.25); }
    100% { box-shadow: 0 10px 25px rgba(168, 85, 247, 0.25); }
}

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

/* Animation Classes */
.animate-color-primary {
    animation: color-cycle-primary 20s ease-in-out infinite;
}

.animate-color-secondary {
    animation: color-cycle-secondary 25s ease-in-out infinite;
    animation-delay: 3s;
}

.animate-bg-color {
    animation: bg-color-cycle 18s ease-in-out infinite;
}

.animate-border-color {
    animation: border-color-cycle 22s ease-in-out infinite;
    animation-delay: 1s;
}

.animate-shadow-color {
    animation: shadow-color-cycle 20s ease-in-out infinite;
    animation-delay: 2s;
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out forwards;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(17, 24, 39, 0.95);
    backdrop-filter: blur(8px);
    z-index: 1000;
    border-bottom: 1px solid rgba(75, 85, 99, 0.3);
    transition: all 0.3s ease;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 4rem;
}

.logo {
    display: flex;
    align-items: center;
}

.logo-icon {
    width: 2.5rem;
    height: 2.5rem;
    background: linear-gradient(135deg, #ec4899, #a855f7);
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: white;
    font-size: 0.875rem;
}

.logo-text {
    margin-left: 0.5rem;
    font-size: 1.25rem;
    font-weight: bold;
}

.nav-desktop {
    display: none;
    align-items: center;
    gap: 1rem;
}

.nav-link {
    padding: 0.5rem 0.75rem;
    border-radius: 0.375rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: white;
    text-decoration: none;
    transition: color 0.2s ease;
}

.nav-link:hover {
    color: #ec4899;
}

.nav-link.active {
    color: #06b6d4;
}

.contact-btn-wrapper {
    display: none;
}

.contact-btn {
    background: #ec4899;
    color: white;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    text-decoration: none;
    transition: all 0.2s ease;
}

.contact-btn:hover {
    background: #db2777;
    filter: brightness(1.1);
}

.mobile-menu-btn {
    display: block;
    background: none;
    border: none;
    color: #d1d5db;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-menu-btn:hover {
    color: #a855f7;
}

.hamburger {
    width: 1.5rem;
    height: 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 0.25rem;
}

.hamburger span {
    display: block;
    width: 100%;
    height: 2px;
    background: currentColor;
    transition: all 0.3s ease;
}

.mobile-menu-btn.active .hamburger span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

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

.mobile-menu-btn.active .hamburger span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

.nav-mobile {
    display: none;
    background: rgba(31, 41, 55, 0.95);
    backdrop-filter: blur(8px);
    border-radius: 0.5rem;
    margin-top: 0.5rem;
    padding: 1rem;
}

.nav-mobile.active {
    display: block;
}

.nav-link-mobile {
    display: block;
    padding: 0.75rem;
    border-radius: 0.375rem;
    font-weight: 500;
    color: white;
    text-decoration: none;
    transition: color 0.2s ease;
    width: 100%;
    text-align: left;
}

.nav-link-mobile:hover {
    color: #ec4899;
}

/* Hero Section */
.hero {
    position: relative;
    padding: 8rem 1rem 5rem;
    text-align: center;
}

.hero-content {
    max-width: 64rem;
    margin: 0 auto;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    padding: 0.5rem 1rem;
    background: rgba(168, 85, 247, 0.2);
    border-radius: 9999px;
    border: 1px solid rgba(168, 85, 247, 0.3);
    margin-bottom: 2rem;
    font-weight: 500;
    color: #a855f7;
}

.hero-title {
    font-size: 2.5rem;
    font-weight: bold;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.gradient-text {
    background: linear-gradient(135deg, #a855f7, #ec4899);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: color-cycle-primary 20s ease-in-out infinite;
}

.hero-description {
    font-size: 1.25rem;
    color: #d1d5db;
    margin-bottom: 2rem;
    max-width: 32rem;
    margin-left: auto;
    margin-right: auto;
}

.hero-cta {
    background: #ec4899;
    color: white;
    font-weight: 500;
    padding: 1rem 2rem;
    border-radius: 0.5rem;
    font-size: 1.125rem;
    text-decoration: none;
    display: inline-block;
    transition: all 0.2s ease;
    transform: translateY(0);
}

.hero-cta:hover {
    background: #db2777;
    filter: brightness(1.1);
    transform: translateY(-2px);
}

.hero-rating {
    margin-top: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.stars {
    display: flex;
    gap: 0.25rem;
}

.star {
    color: #fbbf24;
    font-size: 1.25rem;
}

.rating-text {
    color: #9ca3af;
}

/* Section Styles */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: 2.25rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.section-description {
    font-size: 1.25rem;
    color: #9ca3af;
    max-width: 48rem;
    margin: 0 auto;
}

/* Services Section */
.services {
    padding: 5rem 1rem;
    position: relative;
}

.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.service-card {
    position: relative;
    background: rgba(31, 41, 55, 0.5);
    backdrop-filter: blur(8px);
    border-radius: 0.75rem;
    padding: 1.5rem;
    border: 1px solid rgba(75, 85, 99, 0.5);
    transition: all 0.3s ease;
    text-align: center;
    opacity: 0;
    transform: translateY(30px);
}

.service-card.visible {
    animation: fadeInUp 0.6s ease-out forwards;
}

.service-card:hover {
    transform: translateY(-8px);
    animation: border-color-cycle 22s ease-in-out infinite, shadow-color-cycle 20s ease-in-out infinite;
}

.service-badge {
    position: absolute;
    top: -0.75rem;
    left: 1.5rem;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 500;
    color: white;
}

.service-badge.purple { background: #8b5cf6; }
.service-badge.blue { background: #3b82f6; }
.service-badge.orange { background: #f97316; }
.service-badge.green { background: #10b981; }

.service-icon {
    font-size: 2.5rem;
    margin: 1rem 0;
    animation: color-cycle-primary 20s ease-in-out infinite;
}

.service-title {
    font-size: 1.25rem;
    font-weight: bold;
    margin-bottom: 0.75rem;
    animation: color-cycle-secondary 25s ease-in-out infinite;
    animation-delay: 3s;
}

.service-description {
    color: #9ca3af;
    line-height: 1.6;
}

/* Why Choose Us Section */
.why-choose-us {
    padding: 5rem 1rem;
    background: rgba(31, 41, 55, 0.3);
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.feature-card {
    background: rgba(31, 41, 55, 0.5);
    backdrop-filter: blur(8px);
    border-radius: 0.75rem;
    padding: 2rem;
    border: 1px solid rgba(75, 85, 99, 0.5);
    transition: all 0.3s ease;
    text-align: center;
    opacity: 0;
    transform: translateY(30px);
}

.feature-card.visible {
    animation: fadeInUp 0.6s ease-out forwards;
}

.feature-card:hover {
    transform: translateY(-8px);
    animation: border-color-cycle 22s ease-in-out infinite, shadow-color-cycle 20s ease-in-out infinite;
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    animation: color-cycle-primary 20s ease-in-out infinite;
}

.feature-title {
    font-size: 1.25rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
    animation: color-cycle-secondary 25s ease-in-out infinite;
    animation-delay: 3s;
}

.feature-subtitle {
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 1rem;
    animation: color-cycle-primary 20s ease-in-out infinite;
}

.feature-description {
    color: #9ca3af;
    line-height: 1.6;
}

/* Trusted Industries Section */
.trusted-industries {
    padding: 5rem 1rem;
}

.industries-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.industry-card {
    background: rgba(31, 41, 55, 0.5);
    backdrop-filter: blur(8px);
    border-radius: 0.75rem;
    padding: 1.5rem;
    border: 1px solid rgba(75, 85, 99, 0.5);
    transition: all 0.3s ease;
    text-align: center;
    opacity: 0;
    transform: translateY(30px);
}

.industry-card.visible {
    animation: fadeInUp 0.6s ease-out forwards;
}

.industry-card:hover {
    transform: translateY(-8px);
    animation: border-color-cycle 22s ease-in-out infinite, shadow-color-cycle 20s ease-in-out infinite;
}

.industry-icon {
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.5rem;
    animation: bg-color-cycle 18s ease-in-out infinite;
}

.industry-title {
    font-size: 1.25rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
    animation: color-cycle-secondary 25s ease-in-out infinite;
    animation-delay: 3s;
}

.industry-description {
    color: #9ca3af;
    font-size: 0.875rem;
    line-height: 1.6;
}

/* Success Story Section */
.success-story {
    padding: 5rem 1rem;
    background: rgba(17, 24, 39, 0.5);
}

.success-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

.case-study-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.case-study-badge {
    display: inline-flex;
    align-items: center;
    padding: 0.5rem 1rem;
    background: rgba(59, 130, 246, 0.2);
    border-radius: 9999px;
    border: 1px solid rgba(59, 130, 246, 0.3);
    font-weight: 500;
    color: #60a5fa;
    font-size: 0.875rem;
    width: fit-content;
}

.case-study-title {
    font-size: 2.5rem;
    font-weight: bold;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.success-number {
    color: #10b981;
}

.case-study-description {
    font-size: 1.25rem;
    color: #d1d5db;
    line-height: 1.6;
}

.metrics-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.metric-card {
    background: rgba(31, 41, 55, 0.5);
    border-radius: 0.75rem;
    padding: 1.5rem;
    border: 1px solid rgba(75, 85, 99, 0.5);
}

.metric-icon {
    width: 3rem;
    height: 3rem;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.metric-icon.purple { background: rgba(168, 85, 247, 0.2); color: #a855f7; }
.metric-icon.blue { background: rgba(59, 130, 246, 0.2); color: #3b82f6; }
.metric-icon.green { background: rgba(16, 185, 129, 0.2); color: #10b981; }

.metric-value {
    font-size: 1.875rem;
    font-weight: bold;
    margin-bottom: 0.25rem;
}

.metric-value.green { color: #10b981; }
.metric-value.blue { color: #60a5fa; }

.metric-label {
    color: #9ca3af;
    font-size: 0.875rem;
}

.testimonial-card {
    background: rgba(31, 41, 55, 0.3);
    border-radius: 0.75rem;
    padding: 1.5rem;
    border-left: 4px solid #a855f7;
}

.testimonial-quote {
    font-size: 1.125rem;
    color: #d1d5db;
    font-style: italic;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.testimonial-author {
    color: #10b981;
    font-weight: 500;
}

/* Dashboard */
.dashboard-container {
    padding-left: 0;
}

.dashboard {
    background: #000000;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(75, 85, 99, 0.3);
}

.dashboard-header {
    background: #111827;
    padding: 1rem 1.5rem;
    border-bottom: 1px solid rgba(75, 85, 99, 0.3);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.dashboard-title {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.google-icon {
    width: 2rem;
    height: 2rem;
    background: #f97316;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 0.875rem;
}

.new-campaign-btn {
    background: #f97316;
    color: white;
    padding: 0.375rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 500;
}

.dashboard-date {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: #9ca3af;
    font-size: 0.875rem;
}

.dashboard-content {
    padding: 1.5rem;
    background: #000000;
}

.dashboard-metrics {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.dashboard-metric {
    background: #111827;
    border-radius: 0.5rem;
    padding: 1rem;
    border: 1px solid rgba(75, 85, 99, 0.3);
}

.metric-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.75rem;
}

.metric-icon-small {
    width: 2rem;
    height: 2rem;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
}

.metric-icon-small.purple { background: #8b5cf6; color: white; }
.metric-icon-small.blue { background: #3b82f6; color: white; }
.metric-icon-small.green { background: #10b981; color: white; }

.metric-change {
    font-size: 0.75rem;
    font-weight: 500;
}

.metric-change.green { color: #10b981; }

.metric-number {
    font-size: 1.25rem;
    font-weight: bold;
    color: white;
    margin-bottom: 0.25rem;
}

.metric-text {
    color: #9ca3af;
    font-size: 0.75rem;
}

.chart-container {
    background: #111827;
    border-radius: 0.5rem;
    padding: 1rem;
    border: 1px solid rgba(75, 85, 99, 0.3);
}

.chart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.chart-header h3 {
    color: white;
    font-weight: 500;
    font-size: 0.875rem;
}

.chart-legend {
    display: flex;
    gap: 0.75rem;
    font-size: 0.75rem;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.legend-dot {
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 50%;
}

.legend-dot.purple { background: #8b5cf6; }
.legend-dot.green { background: #10b981; }

.chart {
    height: 6rem;
    display: flex;
    align-items: end;
    gap: 0.25rem;
}

.chart-bar {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.125rem;
}

.chart-bar::before {
    content: '';
    width: 100%;
    background: linear-gradient(to top, #8b5cf6, #a855f7);
    border-radius: 2px 2px 0 0;
    height: var(--height);
}

.chart-bar::after {
    content: '';
    width: 100%;
    background: linear-gradient(to top, #10b981, #34d399);
    border-radius: 2px 2px 0 0;
    height: calc(var(--height) * 0.6);
}

.results-summary {
    margin-top: 1rem;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
}

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

.result-value {
    font-size: 1.125rem;
    font-weight: bold;
}

.result-value.green { color: #10b981; }
.result-value.blue { color: #60a5fa; }

.result-label {
    color: #9ca3af;
    font-size: 0.75rem;
}

/* Stats Section */
.stats {
    padding: 5rem 1rem;
}

.stats-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.stat-card {
    background: rgba(31, 41, 55, 0.5);
    backdrop-filter: blur(8px);
    border-radius: 0.75rem;
    padding: 2rem;
    border: 1px solid rgba(75, 85, 99, 0.5);
    transition: all 0.3s ease;
    text-align: center;
    opacity: 0;
    transform: translateY(30px);
}

.stat-card.visible {
    animation: fadeInUp 0.6s ease-out forwards;
}

.stat-card:hover {
    transform: translateY(-8px);
    animation: border-color-cycle 22s ease-in-out infinite, shadow-color-cycle 20s ease-in-out infinite;
}

.stat-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    animation: color-cycle-primary 20s ease-in-out infinite;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
    animation: color-cycle-secondary 25s ease-in-out infinite;
    animation-delay: 3s;
}

.stat-title {
    font-size: 1.25rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
    color: white;
}

.stat-subtitle {
    color: #9ca3af;
    font-size: 0.875rem;
}

/* Consultation Section */
.consultation {
    padding: 5rem 1rem;
    background: rgba(31, 41, 55, 0.3);
}

.consultation-content {
    max-width: 32rem;
    margin: 0 auto;
}

.form-container {
    background: rgba(31, 41, 55, 0.5);
    backdrop-filter: blur(8px);
    border-radius: 0.75rem;
    padding: 2rem;
    border: 1px solid rgba(75, 85, 99, 0.5);
}

.consultation-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-label {
    color: white;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.form-input {
    width: 100%;
    padding: 0.75rem 1rem;
    background: rgba(55, 65, 81, 0.5);
    border: 1px solid #4b5563;
    border-radius: 0.5rem;
    color: white;
    font-size: 1rem;
    transition: border-color 0.2s ease;
}

.form-input::placeholder {
    color: #9ca3af;
}

.form-input:focus {
    outline: none;
    border-color: #f97316;
}

.form-submit {
    width: 100%;
    background: #ec4899;
    color: white;
    font-weight: 500;
    padding: 1rem 2rem;
    border-radius: 0.5rem;
    font-size: 1.125rem;
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
    transform: translateY(0);
}

.form-submit:hover {
    background: #db2777;
    filter: brightness(1.1);
    transform: translateY(-2px);
}

/* Footer */
.footer {
    background: rgba(17, 24, 39, 0.5);
    backdrop-filter: blur(8px);
    border-top: 1px solid rgba(75, 85, 99, 0.3);
    padding: 3rem 1rem;
}

.footer-content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    gap: 1.5rem;
}

.footer-logo {
    display: flex;
    align-items: center;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
}

.footer-link {
    color: #9ca3af;
    text-decoration: none;
    transition: color 0.2s ease;
    animation: color-cycle-primary 20s ease-in-out infinite;
}

.footer-link:hover {
    animation: color-cycle-secondary 25s ease-in-out infinite;
    animation-delay: 3s;
}

.footer-bottom {
    border-top: 1px solid rgba(75, 85, 99, 0.3);
    margin-top: 2rem;
    padding-top: 2rem;
    text-align: center;
    color: #9ca3af;
}

/* Responsive Design */
@media (min-width: 768px) {
    .nav-desktop {
        display: flex;
    }
    
    .contact-btn-wrapper {
        display: block;
    }
    
    .mobile-menu-btn {
        display: none;
    }
    
    .hero-title {
        font-size: 3.75rem;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .features-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .industries-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .stats-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .metrics-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .footer-content {
        flex-direction: row;
    }
    
    .footer-links {
        justify-content: flex-end;
    }
}

@media (min-width: 1024px) {
    .hero-title {
        font-size: 4.5rem;
    }
    
    .services-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .industries-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .success-content {
        grid-template-columns: 1fr 1fr;
    }
    
    .dashboard-container {
        padding-left: 2rem;
    }
}

/* Color Utilities */
.purple { color: #a855f7; }
.blue { color: #3b82f6; }
.green { color: #10b981; }
.orange { color: #f97316; }

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    html {
        scroll-behavior: auto;
    }
}