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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #ffffff;
    background: linear-gradient(135deg, #0f172a 0%, #1e3a8a 50%, #000000 100%);
    overflow-x: hidden;
}

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

/* Floating Particles */
.particles-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

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

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); opacity: 0.3; }
    50% { transform: translateY(-20px) rotate(180deg); opacity: 0.8; }
}

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-gradient-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(45deg, rgba(59, 130, 246, 0.2), rgba(147, 51, 234, 0.2));
    backdrop-filter: blur(1px);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    padding: 2rem;
}

/* Logo Animation */
.logo-container {
    margin-bottom: 2rem;
}

.logo-wrapper {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    font-size: 2.5rem;
    font-weight: bold;
}

.logo-icon {
    color: #60a5fa;
    animation: pulse 6s ease-in-out infinite;
    position: relative;
}

.logo-icon::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(96, 165, 250, 0.3);
    border-radius: 50%;
    animation: ping 8s cubic-bezier(0, 0, 0.2, 1) infinite;
}

.logo-text {
    background: linear-gradient(45deg, #60a5fa, #a855f7, #ec4899);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: pulse 6s ease-in-out infinite;
}

.logo-star {
    color: #fbbf24;
    animation: spin 15s linear infinite;
}

/* Hero Title */
.hero-title {
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: bold;
    margin-bottom: 2rem;
    line-height: 1.1;
}

.title-line {
    display: block;
    background: linear-gradient(45deg, #ffffff, #60a5fa, #a855f7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: pulse 8s ease-in-out infinite;
}

.title-line:last-child {
    color: #60a5fa;
    -webkit-text-fill-color: #60a5fa;
    animation-delay: 0.5s;
}

/* Hero Description */
.hero-description {
    font-size: clamp(1.1rem, 2.5vw, 1.5rem);
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: #d1d5db;
    line-height: 1.8;
}

.highlight-blue {
    color: #60a5fa;
    font-weight: 600;
}

.highlight-purple {
    color: #a855f7;
    font-weight: 600;
}

/* CTA Buttons */
.cta-container {
    margin-bottom: 4rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.cta-button {
    position: relative;
    background: linear-gradient(45deg, #3b82f6, #8b5cf6, #ec4899);
    border: none;
    padding: 1.25rem 2.5rem;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    color: white;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(59, 130, 246, 0.3);
}

.cta-button:hover {
    transform: scale(1.05) translateY(-2px);
    box-shadow: 0 25px 50px rgba(59, 130, 246, 0.4);
}

.cta-secondary {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    cursor: pointer;
}

.cta-secondary:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
}

.play-icon {
    width: 3rem;
    height: 3rem;
    background: linear-gradient(45deg, #3b82f6, #8b5cf6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.cta-secondary:hover .play-icon {
    transform: scale(1.1);
}

.cta-arrow {
    transition: transform 0.3s ease;
}

.cta-button:hover .cta-arrow {
    transform: translateX(5px);
}

.cta-shimmer {
    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.7s ease;
}

.cta-button:hover .cta-shimmer {
    left: 100%;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    animation: bounce 5s ease-in-out infinite;
    z-index: 10;
    cursor: pointer;
}

.scroll-indicator i {
    font-size: 2rem;
    color: #60a5fa;
    animation: pulse 6s ease-in-out infinite;
}

.scroll-line {
    width: 2px;
    height: 2rem;
    background: linear-gradient(to bottom, #60a5fa, transparent);
    border-radius: 1px;
}

/* Stats Section */
.stats-section {
    padding: 5rem 0;
    background: linear-gradient(45deg, rgba(30, 58, 138, 0.3), rgba(147, 51, 234, 0.3));
    backdrop-filter: blur(10px);
    position: relative;
}

.stats-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(45deg, rgba(59, 130, 246, 0.05), rgba(147, 51, 234, 0.05));
}

.stats-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 2;
}

.stat-item {
    text-align: center;
    opacity: 0;
    transform: translateY(30px);
    transition: all 1.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.stat-item.animate {
    opacity: 1;
    transform: translateY(0);
}

.stat-number {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: bold;
    background: linear-gradient(45deg, #60a5fa, #a855f7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
    position: relative;
}

.stat-suffix {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: bold;
    color: #60a5fa;
    display: inline-block;
}

/* Guarantee Badge */
.guarantee-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.guarantee-badge i {
    font-size: 2rem;
    color: #10b981;
    animation: shieldPulse 6s ease-in-out infinite;
}

@keyframes shieldPulse {
    0%, 100% { transform: scale(1); color: #10b981; }
    50% { transform: scale(1.1); color: #34d399; }
}

.guarantee-text {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: bold;
    background: linear-gradient(45deg, #10b981, #34d399);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.guarantee-description {
    font-size: 0.9rem;
    color: #d1d5db;
    text-align: center;
    margin-top: 0.5rem;
    line-height: 1.5;
    max-width: 200px;
    margin-left: auto;
    margin-right: auto;
}

.guarantee-description strong {
    color: #10b981;
    font-weight: 700;
}

.stat-label {
    color: #d1d5db;
    font-size: 1rem;
    margin-top: 0.5rem;
    transition: color 0.3s ease;
}

.stat-item:hover .stat-label {
    color: #ffffff;
}

.stat-line {
    width: 3rem;
    height: 3px;
    background: linear-gradient(45deg, #3b82f6, #8b5cf6);
    margin: 1rem auto 0;
    border-radius: 2px;
    transform: scaleX(0);
    transition: transform 1.2s ease;
}

.stat-item:hover .stat-line {
    transform: scaleX(1);
}

/* Growth Section - KRUSIAL! */
.growth-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.8), rgba(30, 58, 138, 0.8));
    position: relative;
}

.growth-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent, rgba(59, 130, 246, 0.05), transparent);
}

.growth-showcase {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
    opacity: 0;
    transform: translateY(30px);
    transition: all 1.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.growth-showcase.animate {
    opacity: 1;
    transform: translateY(0);
}

.growth-chart-main {
    background: linear-gradient(135deg, rgba(30, 58, 138, 0.4), rgba(147, 51, 234, 0.4));
    backdrop-filter: blur(10px);
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: 2rem;
    padding: 3rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.growth-chart-main::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(147, 51, 234, 0.1));
    opacity: 0;
    transition: opacity 0.5s ease;
}

.growth-chart-main:hover::before {
    opacity: 1;
}

.growth-percentage {
    margin-bottom: 2rem;
}

.percentage-number {
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: bold;
    background: linear-gradient(45deg, #10b981, #34d399, #6ee7b7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
}

.percentage-symbol {
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: bold;
    color: #10b981;
    display: inline-block;
}

.percentage-label {
    color: #d1d5db;
    font-size: 1.2rem;
    margin-top: 0.5rem;
    font-weight: 600;
}

.percentage-sublabel {
    color: #9ca3af;
    font-size: 1rem;
    margin-top: 0.25rem;
}

.chart-container {
    position: relative;
    height: 250px;
    display: flex;
    align-items: end;
    justify-content: center;
    margin-top: 2rem;
}

.chart-bars {
    display: flex;
    align-items: end;
    gap: 12px;
    height: 180px;
    position: relative;
}

.chart-bar {
    width: 24px;
    background: linear-gradient(to top, #3b82f6, #8b5cf6, #ec4899);
    border-radius: 12px 12px 0 0;
    transition: all 3s cubic-bezier(0.4, 0, 0.2, 1);
    transform-origin: bottom;
    height: 0;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
    position: relative;
    cursor: pointer;
}

.chart-bar::after {
    content: attr(data-month);
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.75rem;
    color: #9ca3af;
    font-weight: 500;
    white-space: nowrap;
}

.chart-bar::before {
    content: attr(data-value);
    position: absolute;
    top: -25px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.8rem;
    color: #10b981;
    font-weight: 600;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.chart-bar:hover::before {
    opacity: 1;
}

.chart-bar.animate {
    animation: growBar 3s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

@keyframes growBar {
    from {
        height: 0;
        transform: scaleY(0);
    }
    to {
        transform: scaleY(1);
    }
}

.chart-trend-line {
    position: absolute;
    bottom: 25%;
    left: 10%;
    right: 10%;
    height: 3px;
    background: linear-gradient(45deg, #10b981, #34d399);
    border-radius: 2px;
    transform: scaleX(0);
    transform-origin: left;
    animation: drawLine 4s ease-out 2s forwards;
}

@keyframes drawLine {
    to { transform: scaleX(1); }
}

.chart-arrow {
    position: absolute;
    top: 10%;
    right: 15%;
    color: #10b981;
    font-size: 2rem;
    animation: arrowPulse 6s ease-in-out infinite 4s;
}

@keyframes arrowPulse {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-10px) scale(1.2); }
}

.chart-label {
    position: absolute;
    bottom: -60px;
    left: 50%;
    transform: translateX(-50%);
    color: #d1d5db;
    font-size: 0.9rem;
    font-weight: 500;
}

.roi-indicator {
    position: absolute;
    top: 1rem;
    right: 1rem;
}

.roi-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: linear-gradient(45deg, #10b981, #34d399);
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    color: white;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
    animation: pulse 8s ease-in-out infinite 3s;
}

.growth-insights {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.insight-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(30, 58, 138, 0.3), rgba(147, 51, 234, 0.3));
    backdrop-filter: blur(10px);
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: 1rem;
    transition: all 0.8s ease;
}

.insight-item:hover {
    transform: translateX(10px);
    border-color: rgba(59, 130, 246, 0.4);
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.2);
}

.insight-icon {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    transition: transform 0.8s ease;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    flex-shrink: 0;
}

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

.insight-content h4 {
    font-size: 1.2rem;
    font-weight: bold;
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.insight-content p {
    color: #d1d5db;
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 0.5rem;
}

.insight-metric {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background: linear-gradient(45deg, #10b981, #34d399);
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    color: white;
}

.case-study-highlight {
    margin-top: 1rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1), rgba(52, 211, 153, 0.1));
    border: 1px solid rgba(16, 185, 129, 0.3);
    border-radius: 1rem;
}

.case-study-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
    color: #10b981;
    font-weight: 600;
}

.case-study-content h5 {
    color: #ffffff;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.case-study-content p {
    color: #d1d5db;
    font-style: italic;
    margin-bottom: 1rem;
}

.case-study-metrics {
    display: flex;
    gap: 2rem;
}

.metric {
    text-align: center;
}

.metric-value {
    display: block;
    font-size: 1.5rem;
    font-weight: bold;
    color: #10b981;
}

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

/* Services Section */
.services-section {
    padding: 6rem 0;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
    opacity: 0;
    transform: translateY(30px);
    transition: all 1.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.section-header.animate {
    opacity: 1;
    transform: translateY(0);
}

.section-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: bold;
    margin-bottom: 1.5rem;
    background: linear-gradient(45deg, #ffffff, #60a5fa, #a855f7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-description {
    font-size: 1.25rem;
    color: #d1d5db;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

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

.service-card {
    background: linear-gradient(135deg, rgba(30, 58, 138, 0.4), rgba(147, 51, 234, 0.4));
    backdrop-filter: blur(10px);
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: 1rem;
    padding: 2.5rem;
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(30px) rotate(2deg);
    transition: all 1.5s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.service-card.animate {
    opacity: 1;
    transform: translateY(0) rotate(0deg);
}

.service-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: rgba(59, 130, 246, 0.4);
    box-shadow: 0 25px 50px rgba(59, 130, 246, 0.25);
}

.service-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(147, 51, 234, 0.1));
    opacity: 0;
    transition: opacity 0.5s ease;
}

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

.service-icon {
    position: relative;
    color: #60a5fa;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    display: inline-block;
    transition: all 0.5s ease;
}

.service-card:hover .service-icon {
    color: #93c5fd;
    transform: scale(1.1);
}

.icon-pulse {
    position: absolute;
    inset: 0;
    background: rgba(96, 165, 250, 0.2);
    border-radius: 50%;
    animation: ping 8s cubic-bezier(0, 0, 0.2, 1) infinite;
}

.service-title {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
    color: #ffffff;
    transition: color 0.3s ease;
}

.service-card:hover .service-title {
    color: #93c5fd;
}

.service-description {
    color: #d1d5db;
    line-height: 1.7;
    transition: color 0.3s ease;
    margin-bottom: 1rem;
}

.service-card:hover .service-description {
    color: #e5e7eb;
}

.service-metrics {
    margin-top: 1rem;
}

.metric-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: linear-gradient(45deg, #10b981, #34d399);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    color: white;
}

.service-hover-line {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(45deg, #3b82f6, #8b5cf6);
    transform: scaleX(0);
    transition: transform 1.2s ease;
    transform-origin: left;
}

.service-card:hover .service-hover-line {
    transform: scaleX(1);
}

/* Features Section */
.features-section {
    padding: 6rem 0;
    background: linear-gradient(45deg, rgba(147, 51, 234, 0.3), rgba(30, 58, 138, 0.3));
    backdrop-filter: blur(10px);
    position: relative;
}

.features-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent, rgba(59, 130, 246, 0.05), transparent);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    position: relative;
    z-index: 2;
}

.feature-item {
    text-align: center;
    opacity: 0;
    transform: translateY(30px) scale(0.95);
    transition: all 1.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-item.animate {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.feature-icon {
    width: 5rem;
    height: 5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    font-size: 2.5rem;
    color: white;
    position: relative;
    overflow: hidden;
    transition: all 1s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.feature-item:hover .feature-icon {
    transform: scale(1.1) rotate(12deg);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.gradient-blue {
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
}

.gradient-purple {
    background: linear-gradient(135deg, #8b5cf6, #ec4899);
}

.gradient-pink {
    background: linear-gradient(135deg, #ec4899, #ef4444);
}

.icon-glow {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.2), transparent);
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.8s ease;
}

.feature-item:hover .icon-glow {
    opacity: 1;
}

.feature-title {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
    color: #ffffff;
    transition: color 0.3s ease;
}

.feature-item:hover .feature-title {
    color: #93c5fd;
}

.feature-description {
    color: #d1d5db;
    line-height: 1.7;
    transition: color 0.3s ease;
}

.feature-item:hover .feature-description {
    color: #e5e7eb;
}

/* Contact Section */
.contact-section {
    padding: 6rem 0;
    position: relative;
}

.contact-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 4rem;
    margin-top: 3rem;
}

.contact-info {
    opacity: 0;
    transform: translateX(-30px);
    transition: all 1.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.contact-info.animate {
    opacity: 1;
    transform: translateX(0);
}

.contact-info-title {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 2rem;
    background: linear-gradient(45deg, #60a5fa, #a855f7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.contact-items {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: transform 0.8s ease;
}

.contact-item:hover {
    transform: translateX(10px);
}

.contact-icon {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: white;
    transition: transform 0.8s ease;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

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

.contact-label {
    font-weight: 600;
    font-size: 1.1rem;
    color: #ffffff;
    transition: color 0.3s ease;
}

.contact-item:hover .contact-label {
    color: #93c5fd;
}

.contact-value {
    color: #d1d5db;
    transition: color 0.3s ease;
}

.contact-item:hover .contact-value {
    color: #ffffff;
}

/* Urgency Box */
.urgency-box {
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.1), rgba(220, 38, 38, 0.1));
    border: 1px solid rgba(239, 68, 68, 0.3);
    border-radius: 1rem;
    margin-top: 2rem;
}

.urgency-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
    color: #ef4444;
    font-weight: 600;
}

.urgency-box p {
    color: #d1d5db;
    margin-bottom: 1rem;
}

.urgency-timer {
    text-align: center;
}

.timer-label {
    display: block;
    color: #9ca3af;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.timer-display {
    font-size: 1.5rem;
    font-weight: bold;
    color: #ef4444;
}

/* Contact Form */
.contact-form-container {
    background: linear-gradient(135deg, rgba(30, 58, 138, 0.2), rgba(147, 51, 234, 0.2));
    backdrop-filter: blur(10px);
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: 1rem;
    padding: 2.5rem;
    opacity: 0;
    transform: translateX(30px);
    transition: all 1.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.contact-form-container.animate {
    opacity: 1;
    transform: translateX(0);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-input {
    width: 100%;
    background: rgba(30, 58, 138, 0.3);
    border: 1px solid rgba(59, 130, 246, 0.3);
    border-radius: 0.5rem;
    padding: 1rem;
    color: #ffffff;
    font-size: 1rem;
    transition: all 0.3s ease;
}

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

.form-input:focus {
    outline: none;
    border-color: #60a5fa;
    background: rgba(30, 58, 138, 0.4);
    box-shadow: 0 0 0 3px rgba(96, 165, 250, 0.1);
}

.form-input:hover {
    border-color: rgba(96, 165, 250, 0.5);
}

.form-textarea {
    resize: vertical;
    min-height: 120px;
}

.form-submit {
    width: 100%;
    background: linear-gradient(45deg, #3b82f6, #8b5cf6, #ec4899);
    border: none;
    border-radius: 0.5rem;
    padding: 1rem;
    color: white;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.8s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.form-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(59, 130, 246, 0.3);
}

.submit-shimmer {
    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.7s ease;
}

.form-submit:hover .submit-shimmer {
    left: 100%;
}

.form-guarantee {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1rem;
    color: #10b981;
    font-size: 0.9rem;
    text-align: center;
}

/* Success Modal */
.thank-you-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1000;
    display: none;
    opacity: 0;
    transition: opacity 1s ease;
}

.thank-you-modal.show {
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
}

.modal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
}

.modal-content {
    position: relative;
    background: linear-gradient(135deg, rgba(30, 58, 138, 0.9), rgba(147, 51, 234, 0.9));
    backdrop-filter: blur(20px);
    border: 2px solid rgba(59, 130, 246, 0.3);
    border-radius: 2rem;
    padding: 3rem;
    max-width: 600px;
    width: 90%;
    text-align: center;
    transform: scale(0.8) translateY(50px);
    transition: all 1s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
}

.thank-you-modal.show .modal-content {
    transform: scale(1) translateY(0);
}

.celebration-container {
    position: relative;
    overflow: hidden;
}

/* Confetti Animation */
.confetti-container {
    position: absolute;
    top: -50px;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
}

.confetti {
    position: absolute;
    width: 10px;
    height: 10px;
    background: #fbbf24;
    animation: confettiFall 6s linear infinite;
}

.confetti:nth-child(2n) { background: #3b82f6; }
.confetti:nth-child(3n) { background: #ec4899; }
.confetti:nth-child(4n) { background: #10b981; }
.confetti:nth-child(5n) { background: #8b5cf6; }

@keyframes confettiFall {
    0% {
        transform: translateY(-100vh) rotate(0deg);
        opacity: 1;
    }
    100% {
        transform: translateY(100vh) rotate(720deg);
        opacity: 0;
    }
}

/* Success Icon */
.success-icon {
    position: relative;
    font-size: 4rem;
    color: #10b981;
    margin-bottom: 2rem;
    display: inline-block;
    animation: successPop 1.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

@keyframes successPop {
    0% { transform: scale(0) rotate(-180deg); }
    100% { transform: scale(1) rotate(0deg); }
}

.success-pulse {
    position: absolute;
    inset: 0;
    background: rgba(16, 185, 129, 0.2);
    border-radius: 50%;
    animation: successPulse 6s ease-in-out infinite;
}

@keyframes successPulse {
    0%, 100% { transform: scale(1); opacity: 0.3; }
    50% { transform: scale(1.5); opacity: 0; }
}

/* Thank You Text */
.thank-you-title {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
    background: linear-gradient(45deg, #10b981, #34d399, #6ee7b7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: titleGlow 6s ease-in-out infinite;
}

@keyframes titleGlow {
    0%, 100% { filter: brightness(1); }
    50% { filter: brightness(1.2); }
}

.thank-you-message {
    font-size: 1.1rem;
    color: #d1d5db;
    line-height: 1.7;
    margin-bottom: 2rem;
}

/* Next Steps */
.next-steps {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: rgba(30, 58, 138, 0.3);
    border-radius: 1rem;
    border: 1px solid rgba(59, 130, 246, 0.2);
}

.step-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: #e5e7eb;
    font-size: 1rem;
    animation: stepSlideIn 1.2s ease-out forwards;
    opacity: 0;
    transform: translateX(-20px);
}

.step-item:nth-child(1) { animation-delay: 0.5s; }
.step-item:nth-child(2) { animation-delay: 1s; }
.step-item:nth-child(3) { animation-delay: 1.5s; }

@keyframes stepSlideIn {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.step-item i {
    color: #60a5fa;
    font-size: 1.2rem;
}

/* Close Button */
.close-modal-btn {
    background: linear-gradient(45deg, #3b82f6, #8b5cf6);
    border: none;
    border-radius: 50px;
    padding: 1rem 2rem;
    color: white;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.8s ease;
    box-shadow: 0 10px 25px rgba(59, 130, 246, 0.3);
}

.close-modal-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 35px rgba(59, 130, 246, 0.4);
}

/* Footer */
.footer {
    background: linear-gradient(45deg, #0f172a, #1e3a8a, #581c87);
    padding: 3rem 0;
    border-top: 1px solid rgba(59, 130, 246, 0.2);
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.2), transparent);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
    position: relative;
    z-index: 2;
}

.footer-logo .logo-wrapper {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.5rem;
    font-weight: bold;
    transition: transform 0.8s ease;
}

.footer-logo:hover .logo-wrapper {
    transform: scale(1.05);
}

.footer-logo .logo-icon {
    color: #60a5fa;
    transition: transform 0.8s ease;
}

.footer-logo:hover .logo-icon {
    transform: rotate(12deg);
}

.footer-text {
    text-align: right;
    color: #d1d5db;
}

.footer-text p {
    transition: color 0.3s ease;
}

.footer-text:hover p {
    color: #ffffff;
}

.footer-tagline {
    color: #60a5fa;
    font-size: 0.9rem;
    margin-top: 0.25rem;
}

/* Animation Classes */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: all 2s cubic-bezier(0.4, 0, 0.2, 1);
}

.fade-in-up.animate {
    opacity: 1;
    transform: translateY(0);
}

.lazy-load {
    opacity: 0;
    transform: translateY(30px);
    transition: all 1.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.lazy-load.animate {
    opacity: 1;
    transform: translateY(0);
}

/* Keyframe Animations */
@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

@keyframes ping {
    75%, 100% {
        transform: scale(2);
        opacity: 0;
    }
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0) translateX(-50%);
        animation-timing-function: cubic-bezier(0.8, 0, 1, 1);
    }
    50% {
        transform: translateY(-25%) translateX(-50%);
        animation-timing-function: cubic-bezier(0, 0, 0.2, 1);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 1rem;
    }
    
    .hero-content {
        padding: 1rem;
    }
    
    .logo-wrapper {
        font-size: 2rem;
    }
    
    .hero-description {
        font-size: 1.1rem;
    }
    
    .cta-button {
        padding: 1rem 2rem;
        font-size: 1rem;
    }
    
    .cta-container {
        flex-direction: column;
        align-items: center;
    }
    
    .stats-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .growth-showcase {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .chart-bars {
        gap: 8px;
    }
    
    .chart-bar {
        width: 20px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .service-card {
        min-width: auto;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .contact-info,
    .contact-form-container {
        min-width: auto;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-text {
        text-align: center;
    }
    
    .modal-content {
        padding: 2rem;
        margin: 1rem;
    }
    
    .thank-you-title {
        font-size: 2rem;
    }
    
    .next-steps {
        padding: 1rem;
    }
    
    .case-study-metrics {
        flex-direction: column;
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .stats-container {
        grid-template-columns: 1fr;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .section-description {
        font-size: 1rem;
    }
    
    .chart-container {
        height: 200px;
    }
    
    .chart-bars {
        height: 150px;
        gap: 6px;
    }
    
    .chart-bar {
        width: 18px;
    }
}
