* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #0066FF;
    --primary-dark: #0052CC;
    --secondary: #00D9FF;
    --accent: #FF6B35;
    --dark-bg: #0F172A;
    --dark-bg-light: #1E293B;
    --text-dark: #0F172A;
    --text-light: #64748B;
    --text-white: #FFFFFF;
    --border-light: #E2E8F0;
    --success: #10B981;
    --warning: #F59E0B;
    --danger: #EF4444;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: #FFFFFF;
}

/* Header */
header {
    position: sticky;
    top: 0;
    z-index: 50;
    background-color: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-light);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.header-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 1rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    font-size: 1.5rem;
    font-weight: bold;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.logo-icon {
    width: 2.5rem;
    height: 2.5rem;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    box-shadow: 0 4px 15px rgba(0, 102, 255, 0.3);
}

nav {
    display: none;
    gap: 2rem;
    align-items: center;
}

nav a {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

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

.btn-contact {
    background: linear-gradient(135deg, var(--primary), #0052CC);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 2rem;
    border: none;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 102, 255, 0.4);
    transition: all 0.3s;
}

.btn-contact:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 102, 255, 0.5);
}

@media (min-width: 768px) {
    nav {
        display: flex;
    }
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    background: linear-gradient(135deg, var(--dark-bg) 0%, #1e3a8a 50%, var(--dark-bg-light) 100%);
    color: white;
    overflow: hidden;
    display: flex;
    align-items: center;
    padding: 2rem 1.5rem;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(0, 102, 255, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(40px);
    animation: float 6s ease-in-out infinite;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: 100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(0, 217, 255, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(40px);
    animation: float 8s ease-in-out infinite 2s;
}

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

.hero-container {
    max-width: 1280px;
    margin: 0 auto;
    position: relative;
    z-index: 10;
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr 1fr;
    }
}

.hero-content h1 {
    font-size: 2rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

@media (min-width: 640px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }
}

@media (min-width: 1024px) {
    .hero-content h1 {
        font-size: 3.5rem;
    }
}

.hero-content p {
    font-size: 1rem;
    color: #e0e7ff;
    margin-bottom: 2rem;
    line-height: 1.8;
}

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

.stat {
    background: rgba(255, 255, 255, 0.05);
    padding: 1.5rem;
    border-radius: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.875rem;
    color: #cbd5e1;
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

@media (min-width: 640px) {
    .hero-buttons {
        flex-direction: row;
    }
}

.btn-primary {
    padding: 1rem 1.5rem;
    border-radius: 2rem;
    border: none;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 1rem;
    background: linear-gradient(135deg, var(--primary), #0052CC);
    color: white;
    box-shadow: 0 4px 15px rgba(0, 102, 255, 0.4);
}

.btn-primary:hover {
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 8px 25px rgba(0, 102, 255, 0.5);
}

.btn-secondary {
    padding: 1rem 1.5rem;
    border-radius: 2rem;
    border: 2px solid var(--primary);
    background: white;
    color: var(--primary);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 1rem;
}

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

.hero-trust {
    font-size: 0.875rem;
    color: #cbd5e1;
}

.hero-trust span {
    margin-right: 1rem;
}

.hero-image {
    display: none;
}

@media (min-width: 1024px) {
    .hero-image {
        display: block;
        position: relative;
    }

    .hero-image img {
        width: 100%;
        height: auto;
        border-radius: 2rem;
        box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
    }

    .hero-image-overlay {
        position: absolute;
        inset: 0;
        background: linear-gradient(180deg, transparent 0%, rgba(15, 23, 42, 0.3) 100%);
        border-radius: 2rem;
    }

    .hero-card {
        position: absolute;
        bottom: -2rem;
        left: -1.5rem;
        background: white;
        border-radius: 1.5rem;
        padding: 1.5rem 2rem;
        box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
        max-width: 300px;
        animation: float 4s ease-in-out infinite;
    }

    .hero-card p {
        color: var(--text-dark);
        font-size: 0.875rem;
        margin-bottom: 0.5rem;
        font-weight: 600;
    }

    .hero-card small {
        color: var(--text-light);
        font-size: 0.75rem;
    }
}

/* Benefits Section */
.benefits {
    padding: 3rem 1.5rem;
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
}

.benefits-container {
    max-width: 1280px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

@media (min-width: 768px) {
    .section-header h2 {
        font-size: 2.5rem;
    }
}

@media (min-width: 1024px) {
    .section-header h2 {
        font-size: 3rem;
    }
}

.section-header p {
    color: var(--text-light);
    font-size: 1.125rem;
    max-width: 600px;
    margin: 0 auto;
}

.benefits-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
}

@media (min-width: 768px) {
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .benefits-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.benefit-card {
    background: white;
    border-radius: 2rem;
    padding: 2rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    border: 1px solid var(--border-light);
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 102, 255, 0.1) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.3s;
}

.benefit-card:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 20px 40px rgba(0, 102, 255, 0.15);
    border-color: var(--secondary);
}

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

.benefit-icon {
    width: 4rem;
    height: 4rem;
    border-radius: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 2rem;
    background: linear-gradient(135deg, #dbeafe 0%, #e0f2fe 100%);
    color: var(--primary);
}

.benefit-card.card-green .benefit-icon {
    background: linear-gradient(135deg, #dcfce7 0%, #e0f2fe 100%);
    color: var(--success);
}

.benefit-card.card-purple .benefit-icon {
    background: linear-gradient(135deg, #f3e8ff 0%, #e0f2fe 100%);
    color: #a855f7;
}

.benefit-card.card-red .benefit-icon {
    background: linear-gradient(135deg, #fee2e2 0%, #e0f2fe 100%);
    color: #ef4444;
}

.benefit-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.benefit-card.card-green .benefit-number {
    color: var(--success);
}

.benefit-card.card-purple .benefit-number {
    color: #a855f7;
}

.benefit-card.card-red .benefit-number {
    color: #ef4444;
}

.benefit-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.benefit-description {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Services Section */
.services {
    padding: 3rem 1.5rem;
    background: white;
}

.services-container {
    max-width: 1280px;
    margin: 0 auto;
}

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

@media (min-width: 768px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.service-card {
    background: linear-gradient(135deg, #f0f9ff 0%, #f0fdfa 100%);
    border-radius: 2rem;
    padding: 2rem;
    border: 1px solid var(--border-light);
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.service-card:nth-child(2) {
    background: linear-gradient(135deg, #f0fdfa 0%, #ecfdf5 100%);
}

.service-card:nth-child(3) {
    background: linear-gradient(135deg, #faf5ff 0%, #f0fdfa 100%);
}

.service-card:nth-child(4) {
    background: linear-gradient(135deg, #fef3c7 0%, #fef9e7 100%);
}

.service-card:nth-child(5) {
    background: linear-gradient(135deg, #fed7aa 0%, #fef3c7 100%);
}

.service-card:nth-child(6) {
    background: linear-gradient(135deg, #fbcfe8 0%, #fce7f3 100%);
}

.service-card:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 20px 40px rgba(0, 102, 255, 0.15);
}

.service-icon {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 1.75rem;
    background: linear-gradient(135deg, var(--primary), #0052CC);
    color: white;
    box-shadow: 0 4px 15px rgba(0, 102, 255, 0.3);
}

.service-card:nth-child(2) .service-icon {
    background: linear-gradient(135deg, var(--success), #059669);
}

.service-card:nth-child(3) .service-icon {
    background: linear-gradient(135deg, #a855f7, #9333ea);
}

.service-card:nth-child(4) .service-icon {
    background: linear-gradient(135deg, #06b6d4, #0891b2);
}

.service-card:nth-child(5) .service-icon {
    background: linear-gradient(135deg, #f59e0b, #d97706);
}

.service-card:nth-child(6) .service-icon {
    background: linear-gradient(135deg, #ec4899, #db2777);
}

.service-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
}

.service-description {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.service-link {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: gap 0.3s;
}

.service-card:hover .service-link {
    gap: 1rem;
}

/* CTA Section */
.cta {
    padding: 3rem 1.5rem;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: white;
    text-align: center;
}

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

.cta h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

@media (min-width: 768px) {
    .cta h2 {
        font-size: 2.5rem;
    }
}

.cta p {
    font-size: 1.125rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: center;
}

@media (min-width: 640px) {
    .cta-buttons {
        flex-direction: row;
    }
}

.btn-white {
    padding: 1rem 1.5rem;
    border-radius: 2rem;
    border: none;
    background: white;
    color: var(--primary);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 1rem;
}

.btn-white:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

/* Footer */
footer {
    background: var(--text-dark);
    color: white;
    padding: 3rem 1.5rem;
}

.footer-container {
    max-width: 1280px;
    margin: 0 auto;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .footer-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.footer-section h3 {
    font-size: 1rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

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

.footer-section li {
    margin-bottom: 0.75rem;
}

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

.footer-section a:hover {
    color: var(--secondary);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    text-align: center;
    color: #94a3b8;
    font-size: 0.875rem;
}

/* Utility Classes */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

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

.mt-4 {
    margin-top: 1rem;
}

.mt-8 {
    margin-top: 2rem;
}

.mb-4 {
    margin-bottom: 1rem;
}

.mb-8 {
    margin-bottom: 2rem;
}

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

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

/* Scroll Animations */
.fade-in-on-scroll {
    opacity: 0;
    transition: opacity 0.6s ease-out;
}

.fade-in-on-scroll.visible {
    opacity: 1;
}

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

/* WhatsApp Floating Button */
.whatsapp-button {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 3.5rem;
    height: 3.5rem;
    background: linear-gradient(135deg, #25D366 0%, #20BA5A 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    z-index: 999;
    text-decoration: none;
    border: none;
    font-size: 1.75rem;
}

.whatsapp-button:hover {
    transform: scale(1.1) translateY(-5px);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.6);
}

.whatsapp-button:active {
    transform: scale(0.95);
}

@media (max-width: 768px) {
    .whatsapp-button {
        bottom: 1.5rem;
        right: 1.5rem;
        width: 3rem;
        height: 3rem;
        font-size: 1.5rem;
    }
}

/* Tooltip para o botão WhatsApp */
.whatsapp-tooltip {
    position: absolute;
    right: 4.5rem;
    bottom: 0.5rem;
    background: rgba(15, 23, 42, 0.95);
    color: white;
    padding: 0.75rem 1rem;
    border-radius: 0.5rem;
    font-size: 0.875rem;
    font-weight: 500;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.whatsapp-tooltip::after {
    content: '';
    position: absolute;
    right: -0.5rem;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-left: 0.5rem solid rgba(15, 23, 42, 0.95);
    border-top: 0.3rem solid transparent;
    border-bottom: 0.3rem solid transparent;
}

.whatsapp-button:hover .whatsapp-tooltip {
    opacity: 1;
}

@media (max-width: 768px) {
    .whatsapp-tooltip {
        display: none;
    }
}


/* Pain Points Section */
.pain-points {
    padding: 3rem 1.5rem;
    background: #f8fafc;
}

.pain-points-container {
    max-width: 1280px;
    margin: 0 auto;
}

.pain-points-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 2rem;
}

@media (min-width: 768px) {
    .pain-points-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.pain-point-card {
    background: white;
    border-radius: 2rem;
    padding: 2rem;
    border: 1px solid var(--border-light);
    text-align: center;
    transition: all 0.3s;
}

.pain-point-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.pain-point-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.pain-point-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.pain-point-description {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.pain-point-alert {
    background: linear-gradient(135deg, #fef3c7 0%, #fef9e7 100%);
    border-left: 4px solid #f59e0b;
    padding: 1rem;
    border-radius: 0.5rem;
    font-size: 0.875rem;
    color: #92400e;
    font-weight: 500;
}

/* Solution Section */
.solution {
    padding: 3rem 1.5rem;
    background: white;
}

.solution-container {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .solution-container {
        grid-template-columns: 1fr 1fr;
    }
}

.solution-image {
    display: none;
    order: 2;
}

@media (min-width: 1024px) {
    .solution-image {
        display: block;
    }

    .solution-image img {
        width: 100%;
        height: auto;
        border-radius: 2rem;
        box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    }
}

.solution-content {
    order: 1;
}

.solution-content h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: var(--text-dark);
}

@media (min-width: 768px) {
    .solution-content h2 {
        font-size: 2.5rem;
    }
}

.solution-checklist {
    list-style: none;
    margin-bottom: 2rem;
}

.solution-checklist li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
    font-size: 1rem;
    color: var(--text-dark);
    font-weight: 500;
}

.solution-checklist li::before {
    content: '✓';
    color: var(--success);
    font-weight: bold;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.solution-highlight {
    background: linear-gradient(135deg, #dbeafe 0%, #e0f2fe 100%);
    border-left: 4px solid var(--primary);
    padding: 1.5rem;
    border-radius: 1rem;
    margin-top: 2rem;
}

.solution-highlight-icon {
    font-size: 1.5rem;
    margin-right: 0.5rem;
}

.solution-highlight-title {
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.solution-highlight-text {
    color: var(--text-light);
    font-size: 0.95rem;
}

/* Process Section */
.process {
    padding: 3rem 1.5rem;
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
}

.process-container {
    max-width: 1280px;
    margin: 0 auto;
}

.process-header {
    text-align: center;
    margin-bottom: 3rem;
}

.process-header h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

@media (min-width: 768px) {
    .process-header h2 {
        font-size: 2.5rem;
    }
}

.process-header p {
    color: var(--text-light);
    font-size: 1rem;
}

.process-steps {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
    position: relative;
}

@media (min-width: 768px) {
    .process-steps {
        grid-template-columns: repeat(3, 1fr);
    }
}

.process-step {
    background: white;
    border-radius: 2rem;
    padding: 2rem;
    border: 1px solid var(--border-light);
    text-align: center;
    position: relative;
    transition: all 0.3s;
}

.process-step:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 102, 255, 0.15);
}

.process-step-number {
    width: 3rem;
    height: 3rem;
    background: linear-gradient(135deg, var(--primary), #0052CC);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto 1rem;
    box-shadow: 0 4px 15px rgba(0, 102, 255, 0.3);
}

.process-step-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.process-step-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.process-step-description {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
}

.process-arrow {
    display: none;
    position: absolute;
    right: -1.5rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
    color: var(--primary);
}

@media (min-width: 768px) {
    .process-arrow {
        display: block;
    }

    .process-step:last-child .process-arrow {
        display: none;
    }
}

.process-timeline {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    background: white;
    border-radius: 2rem;
    padding: 2rem;
    border: 1px solid var(--border-light);
}

@media (min-width: 768px) {
    .process-timeline {
        grid-template-columns: repeat(3, 1fr);
    }
}

.timeline-item {
    text-align: center;
    padding: 1.5rem;
    border-radius: 1rem;
    background: linear-gradient(135deg, #f0f9ff 0%, #f0fdfa 100%);
}

.timeline-item:nth-child(2) {
    background: linear-gradient(135deg, #f0fdfa 0%, #ecfdf5 100%);
}

.timeline-item:nth-child(3) {
    background: linear-gradient(135deg, #ecfdf5 0%, #dcfce7 100%);
}

.timeline-label {
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.timeline-item:nth-child(2) .timeline-label {
    color: #0891b2;
}

.timeline-item:nth-child(3) .timeline-label {
    color: var(--success);
}

.timeline-description {
    color: var(--text-light);
    font-size: 0.875rem;
}

/* Social Proof Section */
.social-proof {
    padding: 3rem 1.5rem;
    background: white;
}

.social-proof-container {
    max-width: 1280px;
    margin: 0 auto;
}

.social-proof-header {
    text-align: center;
    margin-bottom: 3rem;
}

.social-proof-header h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

@media (min-width: 768px) {
    .social-proof-header h2 {
        font-size: 2.5rem;
    }
}

.social-proof-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
}

@media (min-width: 768px) {
    .social-proof-stats {
        grid-template-columns: repeat(4, 1fr);
    }
}

.stat-box {
    background: linear-gradient(135deg, #f0f9ff 0%, #f0fdfa 100%);
    border-radius: 2rem;
    padding: 2rem;
    text-align: center;
    border: 1px solid var(--border-light);
}

.stat-box:nth-child(2) {
    background: linear-gradient(135deg, #f0fdfa 0%, #ecfdf5 100%);
}

.stat-box:nth-child(3) {
    background: linear-gradient(135deg, #faf5ff 0%, #f0fdfa 100%);
}

.stat-box:nth-child(4) {
    background: linear-gradient(135deg, #fef3c7 0%, #fef9e7 100%);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.stat-box:nth-child(2) .stat-number {
    color: var(--success);
}

.stat-box:nth-child(3) .stat-number {
    color: #a855f7;
}

.stat-box:nth-child(4) .stat-number {
    color: #f59e0b;
}

.stat-label {
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.stat-description {
    color: var(--text-light);
    font-size: 0.875rem;
}

.testimonial {
    background: white;
    border-radius: 2rem;
    padding: 2rem;
    border: 1px solid var(--border-light);
    margin-bottom: 2rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.testimonial-text {
    font-size: 1.125rem;
    font-style: italic;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.testimonial-avatar {
    width: 3rem;
    height: 3rem;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 1.25rem;
}

.testimonial-info h4 {
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.25rem;
}

.testimonial-info p {
    color: var(--text-light);
    font-size: 0.875rem;
}

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

@media (min-width: 768px) {
    .badges {
        grid-template-columns: repeat(3, 1fr);
    }
}

.badge {
    background: linear-gradient(135deg, #f0f9ff 0%, #f0fdfa 100%);
    border-radius: 1.5rem;
    padding: 1.5rem;
    text-align: center;
    border: 1px solid var(--border-light);
}

.badge-icon {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.badge-title {
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.25rem;
}

.badge-description {
    color: var(--text-light);
    font-size: 0.875rem;
}

/* FAQ Section */
.faq {
    padding: 3rem 1.5rem;
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
}

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

.faq-header {
    text-align: center;
    margin-bottom: 3rem;
}

.faq-header h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

@media (min-width: 768px) {
    .faq-header h2 {
        font-size: 2.5rem;
    }
}

.faq-header p {
    color: var(--text-light);
    font-size: 1rem;
}

.faq-list {
    list-style: none;
}

.faq-item {
    background: white;
    border-radius: 1.5rem;
    border: 1px solid var(--border-light);
    margin-bottom: 1rem;
    overflow: hidden;
    transition: all 0.3s;
}

.faq-item:hover {
    border-color: var(--primary);
    box-shadow: 0 4px 15px rgba(0, 102, 255, 0.1);
}

.faq-question {
    padding: 1.5rem;
    background: white;
    border: none;
    width: 100%;
    text-align: left;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-dark);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: all 0.3s;
}

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

.faq-question::after {
    content: '+';
    font-size: 1.5rem;
    color: var(--primary);
    font-weight: bold;
    transition: transform 0.3s;
}

.faq-item.active .faq-question::after {
    transform: rotate(45deg);
}

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

.faq-item.active .faq-answer {
    max-height: 500px;
    transition: max-height 0.3s ease-in;
}

.faq-answer-content {
    padding: 1.5rem;
    color: var(--text-light);
    line-height: 1.8;
}

.faq-contact {
    text-align: center;
    margin-top: 3rem;
    padding: 2rem;
    background: linear-gradient(135deg, #dbeafe 0%, #e0f2fe 100%);
    border-radius: 2rem;
    border: 1px solid var(--primary);
}

.faq-contact h3 {
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.faq-contact p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
}
