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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background-color: #000;
    color: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
}

.site-wrapper {
    min-height: 100vh;
    position: relative;
    z-index: 1;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

/* Background Animation */
.background-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

.gradient-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(30, 58, 138, 0.2) 0%, rgba(15, 23, 42, 0.8) 50%, rgba(0, 0, 0, 1) 100%);
}

.stars-container {
    position: absolute;
    width: 100%;
    height: 100%;
}

.star {
    position: absolute;
    width: 2px;
    height: 2px;
    background: #ffffff;
    border-radius: 50%;
    animation: twinkle 2s linear infinite;
}

@keyframes twinkle {
    0%, 100% { opacity: 0; }
    50% { opacity: 1; }
}

.cursor-glow {
    position: fixed;
    width: 384px;
    height: 384px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    transition: all 0.3s ease-out;
    z-index: 10;
}

.floating-particles {
    position: absolute;
    width: 100%;
    height: 100%;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(59, 130, 246, 0.3);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(59, 130, 246, 0.2);
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background: rgba(0, 0, 0, 0.95);
}

.nav-brand .logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #3B82F6, #8B5CF6);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.logo-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #06B6D4, #3B82F6);
    opacity: 0.5;
    animation: pulse 2s ease-in-out infinite;
}

.logo-icon svg {
    width: 24px;
    height: 24px;
    color: white;
    position: relative;
    z-index: 10;
}

.logo-text {
    font-size: 24px;
    font-weight: 700;
    background: linear-gradient(135deg, #60A5FA, #06B6D4);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-size: 200% 200%;
    animation: gradient-shift 3s ease infinite;
}

@keyframes gradient-shift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

@keyframes pulse {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

.nav-menu {
    display: flex;
}

.nav-links {
    display: flex;
    gap: 32px;
}

.nav-link {
    color: #D1D5DB;
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    padding: 8px 12px;
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: #60A5FA;
    transform: translateY(-2px);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #60A5FA, #06B6D4);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-link:hover::after {
    width: 100%;
}

.nav-buttons {
    display: flex;
    align-items: center;
    gap: 16px;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-login {
    color: #D1D5DB;
    background: transparent;
    border: 1px solid rgba(59, 130, 246, 0.3);
}

.btn-login:hover {
    color: #60A5FA;
    border-color: #60A5FA;
    background: rgba(59, 130, 246, 0.1);
    transform: translateY(-2px);
}

.btn-register {
    background: linear-gradient(135deg, #2563EB, #0EA5E9, #06B6D4);
    color: white;
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.25);
}

.btn-register:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(59, 130, 246, 0.4);
}

.btn-register::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #06B6D4, #2563EB, #1E40AF);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.btn-register:hover::before {
    opacity: 1;
}

.btn-register span {
    position: relative;
    z-index: 10;
}

.btn-primary {
    background: linear-gradient(135deg, #2563EB, #0EA5E9, #06B6D4);
    color: white;
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.25);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(59, 130, 246, 0.4);
}

.btn-secondary {
    background: transparent;
    color: #0EA5E9;
    border: 2px solid rgba(14, 165, 233, 0.5);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(14, 165, 233, 0.1);
    border-color: #0EA5E9;
    transform: translateY(-2px);
}

.btn-large {
    padding: 16px 32px;
    font-size: 18px;
}

.btn-full {
    width: 100%;
    justify-content: center;
}

/* Mobile Menu */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
    padding: 8px;
}

.mobile-menu-toggle span {
    width: 24px;
    height: 3px;
    background: #D1D5DB;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.mobile-menu {
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(59, 130, 246, 0.2);
    transform: translateY(-100%);
    opacity: 0;
    transition: all 0.3s ease;
    z-index: 999;
}

.mobile-menu.active {
    transform: translateY(0);
    opacity: 1;
}

.mobile-menu-content {
    padding: 32px 20px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.mobile-nav-link {
    color: #D1D5DB;
    text-decoration: none;
    font-size: 18px;
    font-weight: 500;
    padding: 12px 0;
    border-bottom: 1px solid rgba(107, 114, 128, 0.2);
    transition: color 0.3s ease;
}

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

.mobile-nav-buttons {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 16px;
}

/* Hero Section */
.hero-section {
    padding: 120px 0 80px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(30, 58, 138, 0.1) 0%, rgba(15, 23, 42, 0.05) 100%);
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 10;
}

.hero-content {
    text-align: center;
    margin-bottom: 60px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: linear-gradient(135deg, rgba(30, 58, 138, 0.5), rgba(15, 23, 42, 0.5));
    border: 1px solid rgba(59, 130, 246, 0.3);
    border-radius: 50px;
    color: #60A5FA;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 32px;
    backdrop-filter: blur(10px);
}

.hero-badge svg {
    width: 16px;
    height: 16px;
    animation: pulse 2s ease-in-out infinite;
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 32px;
}

.gradient-text {
    background: linear-gradient(135deg, #60A5FA, #0EA5E9, #06B6D4);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-size: 200% 200%;
    animation: gradient-shift 3s ease infinite;
}

.white-text {
    color: #ffffff;
}

.hero-description {
    font-size: 20px;
    color: #D1D5DB;
    max-width: 800px;
    margin: 0 auto 48px;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    gap: 24px;
    justify-content: center;
    margin-bottom: 64px;
    flex-wrap: wrap;
}

.hero-image {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
}

.dashboard-preview {
    position: relative;
    background: linear-gradient(135deg, rgba(30, 58, 138, 0.2), rgba(15, 23, 42, 0.2));
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: 24px;
    padding: 32px;
    backdrop-filter: blur(10px);
}

.dashboard-img {
    width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
}

.floating-card {
    position: absolute;
    background: linear-gradient(135deg, #10B981, #06B6D4);
    border-radius: 16px;
    padding: 16px;
    color: white;
    font-size: 14px;
    font-weight: 600;
    box-shadow: 0 15px 30px rgba(16, 185, 129, 0.3);
    animation: float 3s ease-in-out infinite;
    display: flex;
    align-items: center;
    gap: 12px;
    backdrop-filter: blur(10px);
}

.floating-card-1 {
    top: -24px;
    right: -24px;
    background: linear-gradient(135deg, #10B981, #06B6D4);
    transform: rotate(6deg);
}

.floating-card-2 {
    bottom: -24px;
    left: -24px;
    background: linear-gradient(135deg, #0EA5E9, #2563EB);
    transform: rotate(-6deg);
    animation-delay: 1s;
}

.floating-card-3 {
    top: 50%;
    right: -32px;
    background: linear-gradient(135deg, #3B82F6, #0EA5E9);
    transform: rotate(12deg) translateY(-50%);
    animation-delay: 2s;
    width: 64px;
    height: 64px;
    justify-content: center;
    padding: 20px;
}

.card-icon svg {
    width: 20px;
    height: 20px;
}

.card-content {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.card-title {
    font-weight: 700;
}

.card-subtitle {
    opacity: 0.8;
    font-size: 12px;
}

/* Sections */
.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: linear-gradient(135deg, rgba(30, 58, 138, 0.5), rgba(14, 165, 233, 0.5));
    border: 1px solid rgba(59, 130, 246, 0.3);
    border-radius: 50px;
    color: #60A5FA;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 24px;
    backdrop-filter: blur(10px);
}

.section-badge svg {
    width: 16px;
    height: 16px;
    animation: pulse 2s ease-in-out infinite;
}

.section-title {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 24px;
}

.section-description {
    font-size: 18px;
    color: #D1D5DB;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Success Section */
.success-section {
    padding: 120px 0;
    position: relative;
}

.success-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(30, 58, 138, 0.05) 0%, transparent 100%);
}

.success-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 32px;
    margin-bottom: 80px;
}

.stat-card {
    text-align: center;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.5), rgba(0, 0, 0, 0.5));
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: 20px;
    padding: 40px 20px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-8px);
    border-color: rgba(59, 130, 246, 0.4);
    box-shadow: 0 20px 40px rgba(59, 130, 246, 0.1);
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #60A5FA, #06B6D4);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 8px;
}

.stat-label {
    color: #9CA3AF;
    font-size: 16px;
    font-weight: 500;
}

.timeline-section {
    margin-top: 80px;
}

.timeline-container {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 40px;
    align-items: center;
    max-width: 800px;
    margin: 0 auto;
}

.timeline-item {
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.5), rgba(0, 0, 0, 0.5));
    border: 1px solid rgba(107, 114, 128, 0.3);
    border-radius: 16px;
    padding: 32px;
    position: relative;
}

.timeline-item:hover {
    border-color: rgba(59, 130, 246, 0.4);
}

.timeline-marker {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 24px;
    height: 24px;
    border-radius: 50%;
    border: 4px solid #000;
}

.timeline-before {
    background: #EF4444;
}

.timeline-after {
    background: #10B981;
}

.timeline-content h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 16px;
    color: #ffffff;
}

.timeline-content ul {
    list-style: none;
    padding: 0;
}

.timeline-content li {
    padding: 8px 0;
    color: #D1D5DB;
    position: relative;
    padding-left: 20px;
}

.timeline-content li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #60A5FA;
    font-weight: bold;
}

.timeline-arrow {
    background: linear-gradient(135deg, #3B82F6, #06B6D4);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
}

.timeline-arrow svg {
    width: 24px;
    height: 24px;
}

/* Features Section */
.features-section {
    padding: 120px 0;
    position: relative;
}

.features-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, transparent 0%, rgba(30, 58, 138, 0.05) 50%, transparent 100%);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
}

.feature-card {
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.5), rgba(0, 0, 0, 0.5));
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: 20px;
    padding: 40px;
    transition: all 0.5s ease;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.05), rgba(14, 165, 233, 0.05));
    opacity: 0;
    transition: opacity 0.5s ease;
}

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

.feature-card:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: rgba(14, 165, 233, 0.4);
    box-shadow: 0 25px 50px rgba(59, 130, 246, 0.1);
}

.feature-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    color: white;
    transition: transform 0.3s ease;
    position: relative;
    z-index: 10;
}

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

.feature-icon svg {
    width: 32px;
    height: 32px;
}

.gradient-blue { background: linear-gradient(135deg, #3B82F6, #8B5CF6); }
.gradient-green { background: linear-gradient(135deg, #10B981, #06B6D4); }
.gradient-purple { background: linear-gradient(135deg, #8B5CF6, #EC4899); }
.gradient-orange { background: linear-gradient(135deg, #F59E0B, #EF4444); }
.gradient-teal { background: linear-gradient(135deg, #0D9488, #3B82F6); }
.gradient-indigo { background: linear-gradient(135deg, #6366F1, #8B5CF6); }
.gradient-pink { background: linear-gradient(135deg, #EC4899, #EF4444); }
.gradient-cyan { background: linear-gradient(135deg, #06B6D4, #3B82F6); }

.feature-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 16px;
    color: #ffffff;
    transition: color 0.3s ease;
    position: relative;
    z-index: 10;
}

.feature-card:hover .feature-title {
    color: #60A5FA;
}

.feature-description {
    color: #9CA3AF;
    line-height: 1.7;
    transition: color 0.3s ease;
    position: relative;
    z-index: 10;
}

.feature-card:hover .feature-description {
    color: #D1D5DB;
}

/* Dashboard Section */
.dashboard-section {
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.dashboard-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, rgba(30, 58, 138, 0.1), rgba(30, 64, 175, 0.1), rgba(6, 182, 212, 0.1));
}

.dashboard-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.dashboard-content {
    position: relative;
    z-index: 10;
}

.benefits-list {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.benefit-icon {
    background: linear-gradient(135deg, #3B82F6, #0EA5E9);
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.benefit-item:hover .benefit-icon {
    transform: scale(1.1);
}

.benefit-icon svg {
    width: 24px;
    height: 24px;
}

.benefit-content h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #ffffff;
    transition: color 0.3s ease;
}

.benefit-item:hover .benefit-content h4 {
    color: #60A5FA;
}

.benefit-content p {
    color: #9CA3AF;
    transition: color 0.3s ease;
}

.benefit-item:hover .benefit-content p {
    color: #D1D5DB;
}

.dashboard-image {
    position: relative;
}

.dashboard-frame {
    position: relative;
    background: linear-gradient(135deg, rgba(30, 58, 138, 0.2), rgba(15, 23, 42, 0.2));
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: 24px;
    padding: 24px;
    backdrop-filter: blur(10px);
}

.status-card {
    position: absolute;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.9), rgba(6, 182, 212, 0.9));
    border-radius: 12px;
    padding: 12px 16px;
    color: white;
    font-size: 12px;
    font-weight: 600;
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 25px rgba(16, 185, 129, 0.3);
    animation: float 4s ease-in-out infinite;
    display: flex;
    align-items: center;
    gap: 8px;
}

.status-card-1 {
    top: -16px;
    left: 32px;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.9), rgba(6, 182, 212, 0.9));
}

.status-card-2 {
    bottom: -16px;
    right: 32px;
    background: linear-gradient(135deg, rgba(14, 165, 233, 0.9), rgba(59, 130, 246, 0.9));
    animation-delay: 2s;
}

.status-icon svg {
    width: 16px;
    height: 16px;
}

/* Testimonials Section */
.testimonials-section {
    padding: 120px 0;
    position: relative;
}

.testimonials-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, transparent 0%, rgba(30, 58, 138, 0.05) 50%, transparent 100%);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 32px;
}

.testimonial-card {
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.5), rgba(0, 0, 0, 0.5));
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: 20px;
    padding: 32px;
    backdrop-filter: blur(10px);
    transition: all 0.5s ease;
    position: relative;
    overflow: hidden;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.05), rgba(6, 182, 212, 0.05));
    opacity: 0;
    transition: opacity 0.5s ease;
}

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

.testimonial-card:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: rgba(6, 182, 212, 0.4);
}

.testimonial-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
}

.testimonial-avatar {
    font-size: 48px;
}

.testimonial-stars {
    display: flex;
    gap: 4px;
}

.testimonial-stars svg {
    width: 20px;
    height: 20px;
    color: #FCD34D;
    fill: currentColor;
}

.testimonial-content {
    font-size: 16px;
    line-height: 1.7;
    color: #D1D5DB;
    font-style: italic;
    margin-bottom: 24px;
    position: relative;
    z-index: 10;
    transition: color 0.3s ease;
}

.testimonial-card:hover .testimonial-content {
    color: #F3F4F6;
}

.testimonial-content::before {
    content: '"';
    font-size: 60px;
    color: rgba(59, 130, 246, 0.3);
    position: absolute;
    top: -20px;
    left: -10px;
    font-family: serif;
}

.testimonial-footer {
    border-top: 1px solid rgba(107, 114, 128, 0.5);
    padding-top: 16px;
}

.testimonial-name {
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 4px;
    transition: color 0.3s ease;
}

.testimonial-card:hover .testimonial-name {
    color: #60A5FA;
}

.testimonial-role {
    font-size: 14px;
    color: #60A5FA;
    margin-bottom: 2px;
}

.testimonial-location {
    font-size: 14px;
    color: #6B7280;
}

/* CTA Section */
.cta-section {
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, rgba(30, 58, 138, 0.2), rgba(14, 165, 233, 0.2), rgba(6, 182, 212, 0.2));
}

.cta-section::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.1), transparent 70%);
    border-radius: 50%;
}

.cta-content {
    text-align: center;
    position: relative;
    z-index: 10;
    max-width: 800px;
    margin: 0 auto;
}

.cta-buttons {
    display: flex;
    gap: 24px;
    justify-content: center;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

.cta-features {
    display: flex;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
}

.cta-feature {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #D1D5DB;
    font-size: 14px;
}

.cta-feature svg {
    width: 16px;
    height: 16px;
    color: #10B981;
}

/* Footer */
.footer {
    background: rgba(0, 0, 0, 0.5);
    border-top: 1px solid rgba(107, 114, 128, 0.5);
    padding: 64px 0 32px;
    position: relative;
    backdrop-filter: blur(10px);
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(30, 58, 138, 0.1) 0%, transparent 100%);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 80px;
    margin-bottom: 48px;
    position: relative;
    z-index: 10;
}

.footer-brand .logo {
    margin-bottom: 24px;
}

.footer-description {
    color: #9CA3AF;
    line-height: 1.7;
    margin-bottom: 24px;
    max-width: 400px;
}

.social-links {
    display: flex;
    gap: 16px;
}

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.3);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #9CA3AF;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-link:hover {
    color: #60A5FA;
    border-color: #60A5FA;
    transform: translateY(-2px) scale(1.05);
}

.social-link svg {
    width: 20px;
    height: 20px;
}

.footer-links {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.footer-section h4 {
    font-size: 18px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 16px;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section li {
    margin-bottom: 12px;
}

.footer-section a {
    color: #9CA3AF;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #60A5FA;
}

.footer-bottom {
    border-top: 1px solid rgba(107, 114, 128, 0.5);
    padding-top: 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
    position: relative;
    z-index: 10;
}

.footer-bottom p {
    color: #9CA3AF;
    font-size: 14px;
}

.footer-bottom-links {
    display: flex;
    gap: 24px;
}

.footer-bottom-links a {
    color: #9CA3AF;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
    color: #60A5FA;
}


/* Responsive Design */
@media (max-width: 1024px) {
    .nav-menu {
        display: none;
    }
    
    .nav-buttons {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .dashboard-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .timeline-container {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .timeline-arrow {
        display: none;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .success-stats {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .floating-card-1,
    .floating-card-2,
    .floating-card-3 {
        display: none;
    }
}

@media (max-width: 480px) {
    .container,
    .nav-container {
        padding: 0 16px;
    }
    
    .hero-section {
        padding: 100px 0 60px;
    }
    
    .section-header {
        margin-bottom: 60px;
    }
    
    .success-stats {
        grid-template-columns: 1fr;
    }
    
    .cta-features {
        flex-direction: column;
        gap: 16px;
    }
    
    .modal-container {
        padding: 24px;
        margin: 16px;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
}

/* Utility Classes */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.hidden { display: none !important; }
.visible { display: block !important; }

/* Animation Classes */
.animate-pulse {
    animation: pulse 2s ease-in-out infinite;
}

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

.animate-gradient {
    background-size: 200% 200%;
    animation: gradient-shift 3s ease infinite;
}