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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #1f2937;
    background-color: #ffffff;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.gradient-text {
    background: linear-gradient(135deg, #1e40af 0%, #1d4ed8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Buttons */
.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
    font-size: 16px;
}

.cta-button.primary {
    background: linear-gradient(135deg, #1e40af 0%, #1d4ed8 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(30, 64, 175, 0.3);
}

.cta-button.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(30, 64, 175, 0.4);
}

.cta-button.secondary {
    border: 2px solid #1e40af;
    color: #1e40af;
    background: transparent;
}

.cta-button.secondary:hover {
    background: #1e40af;
    color: white;
}

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

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideDown {
    from {
        opacity: 0;
        max-height: 0;
    }
    to {
        opacity: 1;
        max-height: 1000px;
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.animate-fade-in {
    animation: fadeInUp 0.8s ease-out;
}

.animate-slide-up {
    animation: fadeInUp 0.8s ease-out;
}

.animate-scale-in {
    animation: scaleIn 0.3s ease-out;
}

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.top-bar {
    background: linear-gradient(135deg, #1e3a8a 0%, #1e40af 100%);
    color: white;
    padding: 8px 0;
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
}

.contact-info {
    display: flex;
    gap: 24px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.contact-item .icon {
    width: 16px;
    height: 16px;
}

.tagline {
    color: #bfdbfe;
}

.navbar {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(229, 231, 235, 0.8);
    padding: 16px 0;
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.header.scrolled .navbar {
    background: transparent;
    border-bottom: none;
}

.nav-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo-text {
    font-size: 28px;
    font-weight: 800;
    background: linear-gradient(135deg, #1e40af 0%, #1d4ed8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

.nav-link {
    color: #374151;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #1e40af;
}

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

.nav-cta {
    background: linear-gradient(135deg, #1e40af 0%, #1d4ed8 100%);
    color: white;
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(30, 64, 175, 0.3);
}

.nav-cta:hover {
    background: linear-gradient(135deg, #1d4ed8 0%, #1e3a8a 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(30, 64, 175, 0.4);
    text-decoration: none;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.mobile-menu-btn .icon {
    width: 24px;
    height: 24px;
    color: #374151;
}

.mobile-menu-btn .close-icon {
    display: none;
}

.mobile-menu-btn.active .menu-icon {
    display: none;
}

.mobile-menu-btn.active .close-icon {
    display: block;
}

.mobile-menu {
    display: none;
    border-top: 1px solid #e5e7eb;
    padding: 20px 0;
    background: white;
}

.mobile-menu-content {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.mobile-nav-link {
    color: #374151;
    text-decoration: none;
    font-weight: 500;
    padding: 8px 0;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #eff6ff 0%, #ffffff 50%, #eff6ff 100%);
    padding: 140px 0 80px;
    text-align: center;
}

.hero-content {
    max-width: 1000px;
    margin: 0 auto;
}

.badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-bottom: 32px;
}

.badge {
    background: #dbeafe;
    color: #1e40af;
    border: 1px solid #bfdbfe;
    padding: 8px 16px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    color: #111827;
}

.hero-description {
    font-size: clamp(1.125rem, 2vw, 1.25rem);
    color: #6b7280;
    margin-bottom: 32px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
    margin-bottom: 48px;
}

.kpis {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 24px;
    max-width: 1000px;
    margin: 0 auto 32px;
}

.kpi-card {
    background: white;
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    border: 1px solid #f3f4f6;
    transition: all 0.3s ease;
}

.kpi-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.kpi-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}

.kpi-card:nth-child(1) .kpi-icon {
    background: #dcfce7;
}

.kpi-card:nth-child(1) .kpi-icon .icon {
    color: #16a34a;
}

.kpi-card:nth-child(2) .kpi-icon {
    background: #dbeafe;
}

.kpi-card:nth-child(2) .kpi-icon .icon {
    color: #2563eb;
}

.kpi-card:nth-child(3) .kpi-icon {
    background: #f3e8ff;
}

.kpi-card:nth-child(3) .kpi-icon .icon {
    color: #9333ea;
}

.kpi-card:nth-child(4) .kpi-icon {
    background: #fed7aa;
}

.kpi-card:nth-child(4) .kpi-icon .icon {
    color: #ea580c;
}

.kpi-value {
    font-size: 2rem;
    font-weight: 800;
    color: #111827;
    margin-bottom: 8px;
}

.kpi-label {
    color: #6b7280;
    font-size: 14px;
}

.disclaimer {
    font-size: 14px;
    color: #9ca3af;
    margin-top: 32px;
}

/* Section Styles */
.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 64px;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    margin-bottom: 24px;
    color: #111827;
}

.section-description {
    font-size: 1.25rem;
    color: #6b7280;
    line-height: 1.7;
}

/* Services Section */
.services {
    padding: 80px 0;
    background: #f9fafb;
}

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

.service-card {
    background: white;
    border-radius: 20px;
    padding: 32px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #f3f4f6;
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
    border-color: #bfdbfe;
}

.service-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.service-icon .icon {
    width: 32px;
    height: 32px;
    color: white;
}

.service-icon.green {
    background: #10b981;
}

.service-icon.blue {
    background: #3b82f6;
}

.service-icon.purple {
    background: #8b5cf6;
}

.service-icon.orange {
    background: #f59e0b;
}

.service-icon.red {
    background: #ef4444;
}

.service-icon.indigo {
    background: #6366f1;
}

.service-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: #111827;
}

.service-description {
    color: #6b7280;
    margin-bottom: 24px;
    line-height: 1.6;
}

.service-features {
    list-style: none;
    margin-bottom: 24px;
}

.service-features li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 12px;
    color: #374151;
    font-size: 14px;
}

.service-features li::before {
    content: '';
    width: 8px;
    height: 8px;
    background: #3b82f6;
    border-radius: 50%;
    margin-right: 12px;
    margin-top: 6px;
    flex-shrink: 0;
}

.service-badge {
    display: inline-block;
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    border: 1px solid;
}

.service-badge.green {
    background: #dcfce7;
    color: #166534;
    border-color: #bbf7d0;
}

.service-badge.blue {
    background: #dbeafe;
    color: #1e40af;
    border-color: #bfdbfe;
}

.service-badge.purple {
    background: #f3e8ff;
    color: #7c3aed;
    border-color: #e9d5ff;
}

.service-badge.orange {
    background: #fed7aa;
    color: #c2410c;
    border-color: #fdba74;
}

.service-badge.red {
    background: #fecaca;
    color: #dc2626;
    border-color: #fca5a5;
}

.service-badge.indigo {
    background: #e0e7ff;
    color: #4338ca;
    border-color: #c7d2fe;
}

.services-cta {
    background: linear-gradient(135deg, #1e40af 0%, #1d4ed8 100%);
    border-radius: 24px;
    padding: 48px 32px;
    text-align: center;
    color: white;
}

.services-cta h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.services-cta p {
    font-size: 1.125rem;
    color: #bfdbfe;
    margin-bottom: 32px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.services-cta .cta-button {
    background: white;
    color: #1e40af;
}

.services-cta .cta-button:hover {
    background: #f3f4f6;
}

/* Process Section */
.process {
    padding: 80px 0;
    background: white;
}

.process-container {
    position: relative;
    max-width: 1000px;
    margin: 0 auto 64px;
}

.timeline-line {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, #bfdbfe, #3b82f6, #1e40af);
    transform: translateX(-50%);
    z-index: 1;
}

.process-step {
    position: relative;
    margin-bottom: 64px;
    display: flex;
    align-items: center;
}

.step-left {
    justify-content: flex-end;
}

.step-right {
    flex-direction: row-reverse;
    justify-content: flex-start;
}

.step-content {
    background: white;
    border-radius: 20px;
    padding: 32px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #f3f4f6;
    transition: all 0.3s ease;
    width: 45%;
    position: relative;
    z-index: 2;
}

.step-left .step-content {
    margin-right: 5%;
}

.step-right .step-content {
    margin-left: 5%;
}

.step-content:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.step-number {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translateX(-50%);
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, #1e40af 0%, #1d4ed8 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    font-weight: 700;
    box-shadow: 0 4px 20px rgba(30, 64, 175, 0.3);
    z-index: 3;
    margin-top: -32px;
}

.step-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
}

.step-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #1e40af 0%, #1d4ed8 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.step-icon .icon {
    width: 24px;
    height: 24px;
    color: white;
}

.step-badge {
    background: #dbeafe;
    color: #1e40af;
    border: 1px solid #bfdbfe;
    padding: 6px 12px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 12px;
}

.step-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: #111827;
}

.step-description {
    color: #6b7280;
    margin-bottom: 20px;
    line-height: 1.6;
}

.step-details {
    list-style: none;
}

.step-details li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 8px;
    color: #374151;
    font-size: 14px;
}

.step-details li::before {
    content: '';
    width: 8px;
    height: 8px;
    background: #3b82f6;
    border-radius: 50%;
    margin-right: 12px;
    margin-top: 6px;
    flex-shrink: 0;
}

.process-summary {
    background: linear-gradient(135deg, #f9fafb 0%, #eff6ff 100%);
    border-radius: 24px;
    padding: 48px 32px;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.process-summary h3 {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: #111827;
}

.process-summary p {
    color: #6b7280;
    margin-bottom: 32px;
    line-height: 1.6;
}

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

.stat {
    text-align: center;
}

.stat-value {
    font-size: 2rem;
    font-weight: 800;
    color: #1e40af;
    margin-bottom: 8px;
}

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

/* Testimonials Section */
.testimonials {
    padding: 80px 0;
    background: linear-gradient(135deg, #f9fafb 0%, #eff6ff 100%);
}

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

.testimonial-card {
    background: white;
    border-radius: 20px;
    padding: 32px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #f3f4f6;
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

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

.company-info {
    display: flex;
    align-items: center;
    gap: 16px;
}

.company-icon {
    width: 48px;
    height: 48px;
    background: #dbeafe;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.company-icon .icon {
    width: 24px;
    height: 24px;
    color: #1e40af;
}

.company-name {
    font-weight: 700;
    color: #111827;
    margin-bottom: 4px;
}

.company-industry {
    font-size: 14px;
    color: #6b7280;
}

.rating {
    display: flex;
    gap: 4px;
}

.rating .star {
    width: 16px;
    height: 16px;
    color: #fbbf24;
    fill: currentColor;
}

.result-highlight {
    background: linear-gradient(135deg, #dcfce7 0%, #bbf7d0 100%);
    border: 1px solid #86efac;
    border-radius: 12px;
    padding: 16px;
    margin-bottom: 24px;
}

.result-text {
    color: #166534;
    font-weight: 600;
    font-size: 1.125rem;
}

.testimonial-quote {
    color: #374151;
    font-style: italic;
    line-height: 1.6;
    margin-bottom: 24px;
}

.testimonial-footer {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.author-name {
    font-weight: 600;
    color: #111827;
    margin-bottom: 4px;
}

.author-position {
    font-size: 14px;
    color: #6b7280;
}

.metrics {
    text-align: right;
}

.metric-value {
    font-weight: 700;
    color: #1e40af;
    margin-bottom: 4px;
}

.metric-timeline {
    font-size: 14px;
    color: #6b7280;
}

.industry-stats {
    background: white;
    border-radius: 24px;
    padding: 48px 32px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
}

.industry-stats h3 {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 32px;
    color: #111827;
}

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

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

.stat-value {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 8px;
}

.stat-value.blue {
    color: #1e40af;
}

.stat-value.green {
    color: #16a34a;
}

.stat-value.purple {
    color: #9333ea;
}

.stat-value.orange {
    color: #ea580c;
}

.stat-label {
    color: #6b7280;
    font-size: 14px;
    margin-bottom: 4px;
}

.stat-sublabel {
    color: #9ca3af;
    font-size: 12px;
}

/* Pricing Section */
.pricing {
    padding: 80px 0;
    background: white;
}

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

.pricing-card {
    background: white;
    border-radius: 20px;
    padding: 32px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #f3f4f6;
    transition: all 0.3s ease;
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.pricing-card.popular {
    background: linear-gradient(135deg, #1e40af 0%, #1d4ed8 100%);
    color: white;
    transform: scale(1.05);
    border-color: #1e40af;
}

.pricing-card.popular:hover {
    transform: scale(1.1) translateY(-8px);
}

.popular-badge {
    position: absolute;
    top: -16px;
    left: 50%;
    transform: translateX(-50%);
    background: #f59e0b;
    color: white;
    padding: 8px 24px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
}

.plan-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
}

.pricing-card:not(.popular) .plan-icon {
    background: #dbeafe;
}

.pricing-card.popular .plan-icon {
    background: rgba(255, 255, 255, 0.2);
}

.plan-icon .icon {
    width: 32px;
    height: 32px;
}

.pricing-card:not(.popular) .plan-icon .icon {
    color: #1e40af;
}

.pricing-card.popular .plan-icon .icon {
    color: white;
}

.plan-name {
    font-size: 1.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 8px;
}

.plan-description {
    text-align: center;
    margin-bottom: 24px;
    font-size: 14px;
}

.pricing-card:not(.popular) .plan-description {
    color: #6b7280;
}

.pricing-card.popular .plan-description {
    color: #bfdbfe;
}

.plan-price {
    text-align: center;
    margin-bottom: 32px;
}

.price {
    font-size: 2rem;
    font-weight: 800;
    display: block;
    margin-bottom: 4px;
}

.period {
    font-size: 14px;
}

.pricing-card:not(.popular) .period {
    color: #6b7280;
}

.pricing-card.popular .period {
    color: #bfdbfe;
}

.plan-features {
    list-style: none;
    margin-bottom: 32px;
}

.plan-features li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 12px;
    font-size: 14px;
}

.check-icon {
    width: 20px;
    height: 20px;
    margin-right: 12px;
    margin-top: 2px;
    flex-shrink: 0;
}

.pricing-card:not(.popular) .check-icon {
    color: #16a34a;
}

.pricing-card.popular .check-icon {
    color: white;
}

.plan-cta {
    display: block;
    width: 100%;
    text-align: center;
    padding: 16px;
    border-radius: 12px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.pricing-card:not(.popular) .plan-cta {
    background: linear-gradient(135deg, #1e40af 0%, #1d4ed8 100%);
    color: white;
}

.pricing-card:not(.popular) .plan-cta:hover {
    background: linear-gradient(135deg, #1d4ed8 0%, #1e3a8a 100%);
}

.pricing-card.popular .plan-cta {
    background: white;
    color: #1e40af;
}

.pricing-card.popular .plan-cta:hover {
    background: #f3f4f6;
}

.pricing-additional {
    background: #f9fafb;
    border-radius: 20px;
    padding: 48px 32px;
    text-align: center;
    margin-bottom: 48px;
}

.pricing-additional h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: #111827;
}

.pricing-additional p {
    color: #6b7280;
    margin-bottom: 32px;
    line-height: 1.6;
}

.additional-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
}

.trust-indicators {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 32px;
    max-width: 800px;
    margin: 0 auto;
}

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

.trust-value {
    font-size: 1.75rem;
    font-weight: 800;
    color: #111827;
    margin-bottom: 8px;
}

.trust-label {
    color: #6b7280;
    font-size: 14px;
}

/* FAQ Section */
.faq {
    padding: 80px 0;
    background: #f9fafb;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto 64px;
}

.faq-item {
    background: white;
    border-radius: 16px;
    margin-bottom: 16px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    border: 1px solid #f3f4f6;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    text-align: left;
    padding: 24px;
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.125rem;
    font-weight: 600;
    color: #111827;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background: #f9fafb;
}

.faq-question span {
    flex: 1;
    padding-right: 16px;
}

.faq-icon {
    width: 24px;
    height: 24px;
    color: #1e40af;
    flex-shrink: 0;
}

.faq-icon.minus {
    display: none;
}

.faq-item.active .faq-icon.plus {
    display: none;
}

.faq-item.active .faq-icon.minus {
    display: block;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 1000px;
    animation: slideDown 0.3s ease;
}

.faq-content {
    padding: 0 24px 24px;
    border-top: 1px solid #f3f4f6;
    margin-top: 0;
    padding-top: 16px;
}

.faq-content p {
    color: #374151;
    line-height: 1.6;
    margin: 0;
}

.faq-cta {
    background: linear-gradient(135deg, #1e40af 0%, #1d4ed8 100%);
    border-radius: 24px;
    padding: 48px 32px;
    text-align: center;
    color: white;
}

.faq-cta h3 {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.faq-cta p {
    font-size: 1.125rem;
    color: #bfdbfe;
    margin-bottom: 32px;
    line-height: 1.6;
}

.faq-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
}

.faq-actions .cta-button.primary {
    background: white;
    color: #1e40af;
}

.faq-actions .cta-button.primary:hover {
    background: #f3f4f6;
}

.faq-actions .cta-button.secondary {
    border-color: white;
    color: white;
}

.faq-actions .cta-button.secondary:hover {
    background: white;
    color: #1e40af;
}

/* Contact Section */
.contact {
    padding: 80px 0;
    background: linear-gradient(135deg, #eff6ff 0%, #ffffff 100%);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-form-container {
    background: white;
    border-radius: 24px;
    padding: 32px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #f3f4f6;
}

.contact-form-container h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 24px;
    color: #111827;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

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

.form-group label {
    font-weight: 600;
    color: #374151;
    margin-bottom: 8px;
    font-size: 14px;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 16px;
    border: 1px solid #d1d5db;
    border-radius: 12px;
    font-size: 16px;
    transition: all 0.3s ease;
    background: white;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #1e40af;
    box-shadow: 0 0 0 3px rgba(30, 64, 175, 0.1);
}

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

.form-submit {
    background: linear-gradient(135deg, #1e40af 0%, #1d4ed8 100%);
    color: white;
    border: none;
    padding: 16px 24px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.form-submit:hover {
    background: linear-gradient(135deg, #1d4ed8 0%, #1e3a8a 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(30, 64, 175, 0.3);
}

.form-submit .icon {
    width: 20px;
    height: 20px;
}

.form-disclaimer {
    font-size: 12px;
    color: #6b7280;
    text-align: center;
    line-height: 1.4;
}

.form-disclaimer a {
    color: #1e40af;
    text-decoration: none;
}

.form-disclaimer a:hover {
    text-decoration: underline;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.contact-card {
    background: white;
    border-radius: 20px;
    padding: 32px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #f3f4f6;
}

.contact-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 24px;
    color: #111827;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 16px;
}

.method-icon {
    width: 48px;
    height: 48px;
    background: #dbeafe;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.method-icon .icon {
    width: 24px;
    height: 24px;
    color: #1e40af;
}

.method-label {
    font-weight: 600;
    color: #111827;
    margin-bottom: 4px;
}

.method-value {
    color: #1e40af;
    text-decoration: none;
}

.method-value:hover {
    text-decoration: underline;
}

.whatsapp-card {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    border-radius: 20px;
    padding: 32px;
    color: white;
}

.whatsapp-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.whatsapp-header .icon {
    width: 32px;
    height: 32px;
}

.whatsapp-header h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin: 0;
}

.whatsapp-card p {
    margin-bottom: 24px;
    line-height: 1.6;
}

.whatsapp-btn {
    background: white;
    color: #059669;
    padding: 12px 24px;
    border-radius: 12px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}

.whatsapp-btn:hover {
    background: #f3f4f6;
    transform: translateY(-2px);
}

.response-card {
    background: #eff6ff;
    border: 1px solid #bfdbfe;
    border-radius: 20px;
    padding: 32px;
}

.response-card h3 {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: #111827;
}

.response-items {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.response-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    color: #374151;
}

.response-dot {
    width: 8px;
    height: 8px;
    background: #16a34a;
    border-radius: 50%;
    flex-shrink: 0;
}

/* Footer */
.footer {
    background: #111827;
    color: white;
    padding: 64px 0 0;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 48px;
    margin-bottom: 48px;
}

.footer-section h3 {
    margin-bottom: 24px;
}

.footer-logo {
    font-size: 1.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 16px;
}

.footer-description {
    color: #9ca3af;
    line-height: 1.6;
    margin-bottom: 24px;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #9ca3af;
}

.footer-contact-item .icon {
    width: 16px;
    height: 16px;
    color: #3b82f6;
}

.footer-contact-item a {
    color: #9ca3af;
    text-decoration: none;
}

.footer-contact-item a:hover {
    color: white;
}

.footer-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: white;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

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

.footer-links a:hover {
    color: white;
}

.footer-industries {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
    font-size: 14px;
    color: #9ca3af;
}

.footer-social {
    margin-top: 32px;
}

.footer-social h4 {
    font-size: 14px;
    font-weight: 600;
    color: #d1d5db;
    margin-bottom: 12px;
}

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

.social-link {
    width: 32px;
    height: 32px;
    background: #374151;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #9ca3af;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: #1e40af;
    color: white;
}

.social-link .icon {
    width: 16px;
    height: 16px;
}

.footer-bottom {
    border-top: 1px solid #374151;
    padding: 32px 0;
}

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

.footer-copyright {
    color: #9ca3af;
    font-size: 14px;
}

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

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

.footer-legal a:hover {
    color: white;
}

.footer-seo {
    border-top: 1px solid #374151;
    padding-top: 24px;
}

.footer-seo p {
    font-size: 12px;
    color: #6b7280;
    text-align: center;
    line-height: 1.4;
}

/* Floating CTA */
.floating-cta {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 1000;
}

.floating-button {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, #1e40af 0%, #1d4ed8 100%);
    border: none;
    border-radius: 50%;
    color: white;
    cursor: pointer;
    box-shadow: 0 8px 25px rgba(30, 64, 175, 0.3);
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}

.floating-button:hover {
    transform: scale(1.1);
    box-shadow: 0 12px 35px rgba(30, 64, 175, 0.4);
}

.floating-button .icon {
    width: 24px;
    height: 24px;
}

@keyframes pulse {
    0% {
        box-shadow: 0 8px 25px rgba(30, 64, 175, 0.3);
    }
    50% {
        box-shadow: 0 8px 25px rgba(30, 64, 175, 0.5);
    }
    100% {
        box-shadow: 0 8px 25px rgba(30, 64, 175, 0.3);
    }
}

.floating-expanded {
    position: absolute;
    bottom: 80px;
    right: 0;
    width: 320px;
    background: white;
    border-radius: 16px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
    border: 1px solid #e5e7eb;
    display: none;
    animation: scaleIn 0.3s ease-out;
}

.floating-expanded.show {
    display: block;
}

.floating-content {
    padding: 24px;
}

.floating-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 16px;
}

.floating-header h3 {
    font-weight: 700;
    color: #111827;
    margin: 0;
}

.floating-close {
    background: none;
    border: none;
    cursor: pointer;
    color: #9ca3af;
    padding: 0;
}

.floating-close:hover {
    color: #6b7280;
}

.floating-close .icon {
    width: 20px;
    height: 20px;
}

.floating-content p {
    font-size: 14px;
    color: #6b7280;
    margin-bottom: 20px;
    line-height: 1.4;
}

.floating-actions {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.floating-btn {
    padding: 12px 16px;
    border-radius: 8px;
    font-weight: 500;
    text-decoration: none;
    text-align: center;
    font-size: 14px;
    transition: all 0.3s ease;
}

.floating-btn.whatsapp {
    background: #10b981;
    color: white;
}

.floating-btn.whatsapp:hover {
    background: #059669;
}

.floating-btn.primary {
    background: #1e40af;
    color: white;
}

.floating-btn.primary:hover {
    background: #1d4ed8;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .process-step {
        flex-direction: column !important;
        text-align: center;
    }
    
    .process-step .step-content {
        padding-left: 32px !important;
        padding-right: 32px !important;
    }
    
    .process-step:not(:last-child)::after {
        left: 32px;
        transform: none;
    }
    
    .step-number {
        position: relative;
        left: auto;
        top: auto;
        transform: none;
        margin: 0 auto 24px;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 16px;
    }
    
    .top-bar-content {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }
    
    .contact-info {
        flex-direction: column;
        gap: 16px;
    }
    
    .tagline {
        display: none;
    }
    
    .nav-menu,
    .nav-actions {
        display: none;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .hero {
        padding: 120px 0 60px;
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-button {
        width: 100%;
        max-width: 300px;
    }
    
    .kpis {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
    
    .services-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-card.popular {
        transform: none;
    }
    
    .pricing-card.popular:hover {
        transform: translateY(-8px);
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
    
    .footer-legal {
        flex-direction: column;
        gap: 8px;
    }
    
    .floating-expanded {
        width: 280px;
        right: -120px;
    }
    
    .additional-actions,
    .faq-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .timeline-stats,
    .stats-grid,
    .trust-indicators {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .process-container {
        max-width: 600px;
    }
    
    .timeline-line {
        left: 32px;
        transform: none;
    }
    
    .process-step {
        flex-direction: column !important;
        justify-content: flex-start !important;
        align-items: flex-start;
        padding-left: 80px;
    }
    
    .step-content {
        width: 100% !important;
        margin: 0 !important;
    }
    
    .step-number {
        left: 32px;
        transform: none;
        margin-top: 0;
        top: 32px;
    }
}

@media (max-width: 480px) {
    .kpis {
        grid-template-columns: 1fr;
    }
    
    .timeline-stats,
    .stats-grid,
    .trust-indicators {
        grid-template-columns: 1fr;
    }
    
    .floating-expanded {
        width: calc(100vw - 48px);
        right: -200px;
    }
    
    .timeline-line {
        left: 24px;
    }
    
    .process-step {
        padding-left: 72px;
    }
    
    .step-number {
        left: 24px;
        width: 48px;
        height: 48px;
        font-size: 1.2rem;
    }
    
    .contact-info {
        flex-direction: column;
        gap: 8px;
    }
    
    .tagline {
        display: none;
    }
}

/* Smooth scrolling for anchor links */
html {
    scroll-padding-top: 120px;
}

/* Focus styles for accessibility */
button:focus,
a:focus,
input:focus,
select:focus,
textarea:focus {
    outline: 2px solid #1e40af;
    outline-offset: 2px;
}

/* Print styles */
@media print {
    .header,
    .floating-cta {
        display: none;
    }
    
    .hero {
        padding-top: 40px;
    }
    
    * {
        box-shadow: none !important;
    }
}