:root {
    --primary: #9241e9;
    --primary-light: #3399FF;
    --primary-dark: #0066CC;
    --secondary: #00C2FF;
    --dark: #111827;
    --dark-lighter: #1F2937;
    --gray: #6B7280;
    --light-gray: #9CA3AF;
    --lighter-gray: #E5E7EB;
    --white: #FFFFFF;
    --section-padding: 100px 0;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--white);
    background-color: var(--dark);
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--white);
}

.section-header p {
    font-size: 1.2rem;
    color: var(--light-gray);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Buttons */
.btn-primary, .btn-secondary {
    display: inline-block;
    padding: 14px 28px;
    border-radius: 8px;
    font-weight: 500;
    font-size: 1rem;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-primary {
    background: var(--primary);
    color: var(--white);
    box-shadow: 0 4px 12px rgba(0, 128, 255, 0.25);
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 128, 255, 0.35);
}

.btn-secondary {
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

/* Header */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(17, 24, 39, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

header.scrolled {
    background-color: rgba(17, 24, 39, 0.95);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.header-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0;
}

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

.logo img {
    height: 40px;
    max-width: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.logo:hover img {
    transform: scale(1.05);
}

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

.nav-menu a {
    color: var(--light-gray);
    font-weight: 500;
    font-size: 1rem;
    position: relative;
}

.nav-menu a:hover {
    color: var(--white);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -4px;
    left: 0;
    background-color: var(--primary);
    transition: width 0.3s ease;
}

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

.nav-button {
    background-color: var(--primary);
    color: var(--white) !important;
    padding: 10px 20px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 128, 255, 0.25);
}

.nav-button:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 128, 255, 0.35);
}

.nav-button::after {
    display: none;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
}

.menu-toggle span {
    display: block;
    width: 28px;
    height: 2px;
    background-color: var(--white);
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    padding: 160px 0 80px;
    position: relative;
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-kicker {
    color: var(--primary);
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 16px;
}

.hero-title {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 24px;
    font-weight: 700;
    color: var(--white);
}

.hero-description {
    color: var(--light-gray);
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 32px;
}

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

.stats-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-value {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 4px;
}

.stat-label {
    color: var(--light-gray);
    font-size: 0.95rem;
}

.hero-image {
    position: relative;
}

.chat-window {
    background-color: rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.12);
    width: 100%;
    max-width: 500px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
}

.chat-header {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 15px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.chat-title {
    color: var(--white);
    font-weight: 600;
    font-size: 1rem;
}

.chat-messages {
    padding: 20px;
}

.chat-message {
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
}

.chat-message:last-child {
    margin-bottom: 0;
}

.chat-message.user {
    align-items: flex-end;
}

.chat-message.assistant {
    align-items: flex-start;
}

.message-content {
    padding: 12px 16px;
    border-radius: 16px;
    max-width: 85%;
    line-height: 1.5;
    font-size: 0.95rem;
}

.chat-message.user .message-content {
    background-color: var(--primary);
    color: var(--white);
    border-bottom-right-radius: 4px;
}

.chat-message.assistant .message-content {
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--white);
    border-bottom-left-radius: 4px;
}

.message-content ul {
    margin-top: 8px;
    margin-bottom: 8px;
    padding-left: 20px;
}

.message-content li {
    margin-bottom: 4px;
}

/* How It Works Section */
.how-it-works {
    padding: var(--section-padding);
    background: linear-gradient(to bottom, var(--dark), var(--dark-lighter));
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.step-card {
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 32px 24px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.step-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    background-color: rgba(255, 255, 255, 0.08);
}

.step-number {
    width: 48px;
    height: 48px;
    background-color: var(--primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 700;
    margin: 0 auto 20px;
}

.step-card h3 {
    font-size: 1.2rem;
    margin-bottom: 12px;
    font-weight: 600;
}

.step-card p {
    color: var(--light-gray);
    font-size: 0.95rem;
}

/* Case Studies Section */
.case-studies {
    padding: var(--section-padding);
}

.cases-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.case-card {
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 32px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.case-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    background-color: rgba(255, 255, 255, 0.08);
}

.company-logo {
    height: 30px;
    width: auto;
    margin-bottom: 24px;
    filter: brightness(0) invert(1);
    opacity: 0.9;
    display: inline-block;
}

.case-quote {
    color: var(--white);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 24px;
    min-height: 96px;
}

.case-results {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.result {
    text-align: center;
}

.result-value {
    display: block;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 4px;
}

.result-label {
    display: block;
    color: var(--light-gray);
    font-size: 0.9rem;
}

/* Client Benefits Section */
.client-benefits {
    padding: var(--section-padding);
    background-color: var(--white);
    color: var(--dark);
}

.client-benefits .section-header h2 {
    color: var(--dark);
    margin-bottom: 50px;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 24px;
}

.benefit-item {
    background-color: var(--white);
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid #f0f0f0;
    transition: all 0.3s ease;
}

.benefit-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.benefit-icon {
    display: inline-block;
    width: 60px;
    height: 60px;
    background-color: var(--primary);
    border-radius: 12px;
    color: var(--white);
    font-size: 1.8rem;
    display: flex;
    align-items: center;
        justify-content: center;
    margin-bottom: 20px;
}

.benefit-item h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--dark);
}

.benefit-item p {
    color: var(--gray);
    font-size: 1rem;
    line-height: 1.6;
}

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

@media (max-width: 576px) {
    .benefits-grid {
        grid-template-columns: 1fr;
    }
}

/* Future Section */
.future {
    padding: var(--section-padding);
    background: linear-gradient(to bottom, var(--dark-lighter), var(--dark));
}

.future-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.future-item {
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 32px 24px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.future-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    background-color: rgba(255, 255, 255, 0.08);
}

.future-item i {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 20px;
}

.future-item h3 {
        font-size: 1.2rem;
    margin-bottom: 12px;
    font-weight: 600;
}

.future-item p {
    color: var(--light-gray);
    font-size: 0.95rem;
}

/* Growth Section */
.growth-section {
    padding: var(--section-padding);
    background-color: var(--white);
    color: var(--dark);
}

.growth-title {
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--dark);
        text-align: center;
    margin-bottom: 50px;
}

.growth-boxes {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.growth-box {
    background-color: var(--white);
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    position: relative;
    height: 100%;
    display: flex;
        flex-direction: column;
    background-image: url('https://via.placeholder.com/500x500/FFFFFF/FFFFFF?text=');
    background-position: center;
    background-size: cover;
    overflow: hidden;
}

.growth-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
        width: 100%;
    height: 100%;
    background: linear-gradient(140deg, rgba(255, 255, 255, 0.9) 50%, rgba(255, 255, 255, 0.8) 100%);
    z-index: 0;
}

.growth-box h3 {
    position: relative;
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 16px;
    z-index: 1;
}

.growth-box h3::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background-color: var(--primary);
    margin-top: 10px;
}

.growth-box p {
    position: relative;
    color: var(--gray);
    font-size: 1.1rem;
    margin-bottom: 30px;
    z-index: 1;
}

.growth-metrics {
    position: relative;
    display: flex;
    flex-direction: column;
    margin: auto 0 30px;
    z-index: 1;
    }
    
    .metric-value {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 8px;
    }
    
    .metric-label {
    font-size: 1.1rem;
    color: var(--gray);
    font-weight: 500;
}

.percentage-label {
    position: absolute;
    top: 10px;
    right: 0;
    font-size: 1rem;
    color: #FF5A87;
    font-weight: 600;
    background-color: rgba(255, 90, 135, 0.1);
    padding: 4px 10px;
    border-radius: 20px;
    z-index: 1;
}

.integration-icons {
    position: relative;
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: auto;
    z-index: 1;
}

.integration-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background-color: rgba(146, 65, 233, 0.1);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.integration-icon i {
    font-size: 24px;
    color: var(--primary);
}

.integration-icon:hover {
    transform: translateY(-5px);
    background-color: var(--primary);
}

.integration-icon:hover i {
    color: var(--white);
}

.feature-boxes {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: auto;
    z-index: 1;
}

.feature-box {
    display: flex;
        gap: 15px;
    background-color: var(--primary);
    border-radius: 10px;
    padding: 15px;
    color: var(--white);
    transition: transform 0.3s ease;
}

.feature-box:hover {
    transform: translateY(-3px);
}

.feature-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    font-size: 1.5rem;
}

.feature-content h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 5px;
}

.feature-content p {
    font-size: 0.9rem;
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.8);
}

/* FAQ Section */
.faq {
    padding: var(--section-padding);
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.faq-question {
    padding: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.faq-question h3 {
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--white);
}

.faq-icon {
    font-size: 1.5rem;
    color: var(--primary);
    transition: transform 0.3s ease;
}

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

.faq-answer p {
    padding: 0 24px 24px;
    color: var(--light-gray);
    font-size: 1rem;
    line-height: 1.6;
}

.faq-item.active .faq-question {
    background-color: rgba(255, 255, 255, 0.08);
}

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

.faq-item.active .faq-answer {
    height: auto;
}

/* Process Section */
.process-section {
    padding: var(--section-padding);
    background: linear-gradient(135deg, #EAF6FF 0%, #CCE6FF 100%);
    color: var(--dark);
}

.process-header {
    text-align: center;
    margin-bottom: 60px;
    max-width: 760px;
    margin-left: auto;
    margin-right: auto;
}

.process-kicker {
    color: var(--primary);
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 10px;
}

.process-title {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--dark);
}

.process-description {
    font-size: 1.2rem;
    color: var(--gray);
    line-height: 1.6;
}

.process-timeline {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    padding: 20px 0;
}

.process-timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 2px;
    background: repeating-linear-gradient(to right, var(--primary) 0, var(--primary) 8px, transparent 8px, transparent 16px);
    top: 40px;
    z-index: 1;
}

.process-step {
    display: flex;
    gap: 30px;
    margin-bottom: 50px;
    position: relative;
    z-index: 2;
}

.step-number {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    background-color: var(--primary);
    color: white;
    font-size: 2rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    box-shadow: 0 10px 25px rgba(0, 128, 255, 0.3);
}

.step-content {
    background-color: var(--white);
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
    flex: 1;
}

.step-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--dark);
}

.step-content p {
    color: var(--gray);
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 24px;
}

.step-cta {
    display: inline-block;
    color: var(--primary);
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.step-cta:hover {
    color: var(--primary-dark);
    transform: translateX(5px);
}

@media (max-width: 992px) {
    .process-title {
        font-size: 2.4rem;
    }
    
    .process-timeline::before {
        left: 40px;
        width: 2px;
        height: calc(100% - 80px);
        background: repeating-linear-gradient(to bottom, var(--primary) 0, var(--primary) 8px, transparent 8px, transparent 16px);
    }
    
    .process-step {
        flex-direction: column;
        margin-left: 0;
    }
    
    .step-number {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
        margin-left: 10px;
    }
    
    .step-content {
    width: 100%;
        margin-left: 0;
    }
}

@media (max-width: 576px) {
    .process-title {
        font-size: 2rem;
    }
    
    .process-description {
        font-size: 1rem;
    }
    
    .step-content {
        padding: 20px;
    }
    
    .step-content h3 {
        font-size: 1.3rem;
    }
    
    .step-content p {
        font-size: 1rem;
    }
}

/* Contact Section */
.contact {
    padding: var(--section-padding);
    background: linear-gradient(to bottom, var(--dark), var(--dark-lighter));
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: flex-start;
}

.contact-info h2 {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--white);
}

.contact-info p {
    color: var(--light-gray);
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 40px;
}

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

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

.contact-method i {
    font-size: 1.2rem;
    color: var(--primary);
    margin-top: 4px;
}

.contact-method h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 4px;
    color: var(--white);
}

.contact-method p {
    color: var(--light-gray);
    font-size: 1rem;
    margin-bottom: 0;
}

.contact-form {
    background-color: rgba(255, 255, 255, 0.07);
    border-radius: 16px;
    padding: 40px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.contact-form:hover {
    border-color: rgba(146, 65, 233, 0.4);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
    transform: translateY(-5px);
}

.form-row {
    display: flex;
    gap: 16px;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 20px;
    position: relative;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--white);
}

.form-group.half {
    flex: 1;
    margin-bottom: 0;
}

.form-group input,
.form-group textarea {
    width: 100%;
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    padding: 16px 18px;
    color: var(--white);
    font-size: 1rem;
    transition: all 0.3s ease;
    -webkit-appearance: none; /* Fix for iOS input styling */
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(146, 65, 233, 0.25);
    background-color: rgba(255, 255, 255, 0.15);
}

.form-group textarea {
    height: 150px;
    resize: none;
}

.contact-form .btn-primary {
    width: 100%;
    padding: 16px;
    font-size: 1.1rem;
    font-weight: 600;
    margin-top: 10px;
    box-shadow: 0 10px 30px rgba(146, 65, 233, 0.3);
}

.contact-form .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(146, 65, 233, 0.4);
}

@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-form {
        padding: 30px;
    }
}

@media (max-width: 576px) {
    .form-row {
        flex-direction: column;
        gap: 20px;
    }
    
    .form-group.half {
        margin-bottom: 0;
    }
    
    .form-group input,
    .form-group textarea {
        font-size: 16px; /* Prevent iOS zoom */
        padding: 14px 16px;
    }
    
    .contact-form {
        padding: 24px;
    }
}

/* Footer */
footer {
    padding: 80px 0 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-top {
    display: grid;
    grid-template-columns: 2fr 3fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-logo img {
    height: 40px;
    max-width: 100%;
    object-fit: contain;
    margin-bottom: 16px;
}

.footer-logo p {
    color: var(--light-gray);
    font-size: 1rem;
    max-width: 280px;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.footer-group h3 {
    color: var(--white);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 24px;
}

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

.footer-group a {
    color: var(--light-gray);
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.footer-group a:hover {
    color: var(--primary);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    color: var(--light-gray);
    font-size: 0.9rem;
}

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

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background-color: rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    color: var(--light-gray);
    transition: all 0.3s ease;
}

.social-links a:hover {
    background-color: var(--primary);
    color: var(--white);
    transform: translateY(-3px);
}

/* WhatsApp Button */
.whatsapp-button {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    color: var(--white);
    border-radius: 50%;
    display: flex;
        align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    box-shadow: 0 6px 16px rgba(37, 211, 102, 0.4);
    z-index: 99;
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}

.whatsapp-button:hover {
    transform: scale(1.1);
    animation: none;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

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

/* Responsive Styles */
@media (max-width: 1200px) {
    .hero-title {
        font-size: 3rem;
    }
    
    .step-card,
    .case-card,
    .future-item {
        padding: 24px 20px;
    }
}

@media (max-width: 992px) {
    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-content {
        order: 0;
    }
    
    .hero-image {
        display: none;
    }
    
    .hero-actions {
        justify-content: center;
    }
    
    .stats-container {
        max-width: 500px;
        margin: 0 auto;
    }
    
    .steps-grid,
    .future-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .cases-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-top {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-logo img {
        max-width: 150px;
        margin: 0 auto 16px;
    display: block;
}

    .footer-logo p {
        max-width: 100%;
        text-align: center;
    }
    
    .footer-links {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .growth-boxes {
        grid-template-columns: 1fr;
    }
    
    .growth-box {
        padding: 30px;
    }
    
    .growth-title {
        font-size: 2.4rem;
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 80px 0;
    }
    
    .hero {
        padding: 120px 0 60px;
    }
    
    .menu-toggle {
    display: flex;
    }
    
    nav {
        position: fixed;
        top: 73px;
        left: 0;
        width: 100%;
        height: 0;
        background-color: var(--dark);
        overflow: hidden;
    transition: all 0.3s ease;
        z-index: 1000;
    }
    
    nav.active {
        height: auto;
        padding: 30px 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    }
    
    .nav-menu {
        flex-direction: column;
        padding: 0 20px;
    }
    
    .nav-menu a {
        display: block;
        padding: 12px 0;
        width: 100%;
        text-align: center;
    }
    
    .nav-button {
        margin-top: 10px;
        width: 100%;
        display: block;
        text-align: center;
    }
    
    .section-header h2 {
        font-size: 2.4rem;
    }
    
    .hero-title {
        font-size: 2.8rem;
    }
    
    .chat-window {
        max-width: 450px;
        margin: 0 auto;
    }
    
    .footer-links {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-actions {
        flex-direction: column;
        gap: 12px;
    }
    
    .stats-container {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .steps-grid,
    .cases-grid,
    .future-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-links {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .case-quote {
        min-height: auto;
    }
    
    .growth-title {
        font-size: 2rem;
    }
    
    .growth-box h3 {
        font-size: 1.5rem;
    }
    
    .metric-value {
        font-size: 3rem;
    }
    
    .logo img {
        height: 32px;
    }
}

/* Animation Classes */
.animate {
    animation: fadeInUp 0.6s ease forwards;
}

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

.hero-kicker,
.hero-title,
.hero-description,
.hero-actions,
.stats-container {
    opacity: 0;
}

.section-header,
.step-card,
.case-card,
.future-item,
.growth-box,
.benefit-item,
.process-step {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.section-header.animate,
.step-card.animate,
.case-card.animate,
.future-item.animate,
.growth-box.animate,
.benefit-item.animate,
.process-step.animate {
    opacity: 1;
    transform: translateY(0);
}

.step-card:nth-child(1) { transition-delay: 0.1s; }
.step-card:nth-child(2) { transition-delay: 0.2s; }
.step-card:nth-child(3) { transition-delay: 0.3s; }
.step-card:nth-child(4) { transition-delay: 0.4s; }

.growth-box:nth-child(1) { transition-delay: 0.1s; }
.growth-box:nth-child(2) { transition-delay: 0.2s; }

.case-card:nth-child(1) { transition-delay: 0.1s; }
.case-card:nth-child(2) { transition-delay: 0.2s; }
.case-card:nth-child(3) { transition-delay: 0.3s; }

.future-item:nth-child(1) { transition-delay: 0.1s; }
.future-item:nth-child(2) { transition-delay: 0.2s; }
.future-item:nth-child(3) { transition-delay: 0.3s; }
.future-item:nth-child(4) { transition-delay: 0.4s; }

.benefit-item:nth-child(1) { transition-delay: 0.1s; }
.benefit-item:nth-child(2) { transition-delay: 0.2s; }
.benefit-item:nth-child(3) { transition-delay: 0.3s; }
.benefit-item:nth-child(4) { transition-delay: 0.4s; }
.benefit-item:nth-child(5) { transition-delay: 0.5s; }
.benefit-item:nth-child(6) { transition-delay: 0.6s; }

.process-step:nth-child(1) { transition-delay: 0.1s; }
.process-step:nth-child(2) { transition-delay: 0.3s; }
.process-step:nth-child(3) { transition-delay: 0.5s; }

/* Success Message */
.success-message {
    text-align: center;
    padding: 40px 20px;
    background: rgba(255, 255, 255, 0.07);
    border-radius: 16px;
    border: 1px solid rgba(146, 65, 233, 0.3);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 300px;
    height: 100%;
    box-sizing: border-box;
    /* Evitar que a página desloque */
    position: relative;
    margin: 0;
}

.success-message i {
    font-size: 4rem;
    color: var(--primary);
    margin-bottom: 20px;
    animation: pulse 2s infinite;
}

.success-message h3 {
    font-size: 1.8rem;
    margin-bottom: 16px;
    color: var(--white);
}

.success-message p {
    font-size: 1.1rem;
    color: var(--light-gray);
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 0.8;
    }
    50% {
        transform: scale(1.1);
        opacity: 1;
    }
    100% {
        transform: scale(1);
        opacity: 0.8;
    }
}

@media (max-width: 768px) {
    .stats-container {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 24px;
        margin-top: 40px;
    }
    
    .stat-item {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .stat-value {
        font-size: 2.5rem;
        font-weight: 700;
        color: var(--primary);
        margin-bottom: 4px;
    }
    
    .stat-label {
        font-size: 0.9rem;
        color: var(--light-gray);
    }
}

/* Menu Toggle Animation */
.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 6px);
}

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

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

/* Background Gradient Animation */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 30%, rgba(0, 128, 255, 0.15) 0%, transparent 50%);
    z-index: -1;
    animation: gradientShift 15s ease infinite alternate;
}

@keyframes gradientShift {
    0% {
        background-position: 0% 0%;
    }
    50% {
        background-position: 100% 30%;
    }
    100% {
        background-position: 0% 70%;
    }
}

/* Chat Animation */
.chat-message {
    animation: messageAppear 0.5s ease backwards;
}

.chat-message:nth-child(1) { animation-delay: 0.5s; }
.chat-message:nth-child(2) { animation-delay: 1s; }
.chat-message:nth-child(3) { animation-delay: 1.5s; }
.chat-message:nth-child(4) { animation-delay: 2s; }
.chat-message:nth-child(5) { animation-delay: 2.5s; }

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

.form-hint {
    display: block;
    margin-top: 6px;
        font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    font-style: italic;
    }

.form-group input:focus + .form-hint,
.form-group input:active + .form-hint {
    color: rgba(255, 255, 255, 0.8);
} 