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

:root {
    /* Colors */
    --bg-primary: #0a0a0f;
    --bg-secondary: #12121a;
    --bg-card: #1a1a28;
    --accent-green: #00ff9d;
    --accent-white: #ffffff;
    --text-primary: #ffffff;
    --text-secondary: #a0a0b8;
    --border-color: #2a2a3e;

    /* Gradients */
    --gradient-primary: #ffffff;
    --gradient-card: linear-gradient(135deg, rgba(0, 255, 157, 0.1) 0%, rgba(0, 212, 255, 0.1) 100%);

    /* Spacing */
    --container-padding: 1.5rem;
    --section-padding: 4rem 0;

    /* Typography */
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

body {
    font-family: var(--font-primary);
    background-color: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

/* Header */
.header {
    padding: 0.75rem 0;
    position: sticky;
    top: 0;
    background: rgba(10, 10, 15, 0.7);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid rgba(42, 42, 62, 0.3);
}

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

.logo {
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--accent-white);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo-icon {
    width: 24px;
    height: 24px;
    color: var(--accent-white);
}

.secondary-button {
    display: inline-block;
    background: linear-gradient(135deg, var(--accent-green), #00d4ff);
    color: white;
    padding: 1.25rem 3rem;
    border: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.125rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 255, 157, 0.3);
    text-decoration: none;
}

.cta-button {
    display: inline-block;
    background: var(--accent-green);
    color: var(--bg-primary);
    border: none;
    padding: 0.75rem 2rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 255, 157, 0.3);
    text-decoration: none;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 255, 157, 0.4);
}

.cta-button.large {
    padding: 1.2rem 3rem;
    font-size: 1.1rem;
}

/* Hero Section */
.hero {
    padding: var(--section-padding);
    text-align: center;
}

.hero-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: white;
    animation: fadeInUp 0.8s ease-out;
}

.gradient-text {
    color: #a78bfa;
    position: relative;
    display: inline-block;
}

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-description {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto 3rem;
    line-height: 1.8;
}

/* Mockup */
.hero-mockup {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 3rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.browser-bar {
    background: #2d2d2d;
    padding: 0.75rem 1rem;
    border-radius: 12px 12px 0 0;
    display: flex;
    align-items: center;
}

.browser-dots {
    display: none;
}

.browser-dots span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #666;
}

.browser-dots span:nth-child(1) {
    background: #ff5f56;
}

.browser-dots span:nth-child(2) {
    background: #ffbd2e;
}

.browser-dots span:nth-child(3) {
    background: #27c93f;
}

/* Chart Container */
.chart-container {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
    animation: gradientShift 8s ease infinite;
    background-size: 200% 200%;
}

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

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

.mockup-content-fixed {
    height: 400px;
    position: relative;
    background:
        linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
    background-size: 200% 200%;
    animation: gradientShift 8s ease infinite;
    display: flex;
    align-items: center;
    background-size: 200% 200%;
}

.growth-chart {
    width: 100%;
    height: 100%;
    max-width: 900px;
    filter: drop-shadow(0 4px 20px rgba(0, 0, 0, 0.3));
}

.growth-line {
    stroke-dasharray: 1000;
    stroke-dashoffset: 1000;
    animation: drawLine 2s ease-out forwards;
}

@keyframes drawLine {
    to {
        stroke-dashoffset: 0;
    }
}

.data-point {
    cursor: pointer;
    transition: all 0.3s ease;
}

.data-point:hover {
    filter: brightness(1.3);
}


.card-indicator {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    box-shadow: 0 0 15px currentColor;
}

.stat-item:nth-child(1) .card-indicator {
    background: #10b981;
    color: #10b981;
}

.stat-item:nth-child(2) .card-indicator {
    background: #3b82f6;
    color: #3b82f6;
}

.stat-item:nth-child(3) .card-indicator {
    background: #f59e0b;
    color: #f59e0b;
}

.stat-item:nth-child(4) .card-indicator {
    background: #ef4444;
    color: #ef4444;
}

.feature-card {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.15) 0%, rgba(118, 75, 162, 0.15) 50%, rgba(240, 147, 251, 0.15) 100%);
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.mockup-heading {
    font-size: 2.5rem;
    font-weight: 900;
    color: white;
    margin-bottom: 1rem;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
    letter-spacing: -0.5px;
}

.mockup-subheading {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.95);
    font-weight: 500;
    text-shadow: 0 1px 10px rgba(0, 0, 0, 0.2);
}

/* Portfolio Gallery Section */
.portfolio-gallery {
    padding: var(--section-padding);
    background: var(--bg-secondary);
}

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

.portfolio-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
}

.portfolio-card:hover {
    transform: translateY(-8px);
    border-color: var(--accent-green);
    box-shadow: 0 12px 35px rgba(0, 255, 157, 0.2);
}

.portfolio-image {
    width: 100%;
    aspect-ratio: 16/9;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-color: var(--bg-secondary);
}


.mockup-carousel {
    position: relative;
    height: 400px;
    width: 100%;
    border-radius: 0 0 12px 12px;
    overflow: hidden;
}

.mockup-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.mockup-slide.active {
    opacity: 1;
}

/* Mockup slide backgrounds - Replace with your own images */

/* DESKTOP IMAGES - Show only on screens > 768px */
@media (min-width: 769px) {
    .mockup-slide-mobile {
        display: none !important;
    }

    .mockup-slide-desktop:nth-child(1) {
        background-image: url('lumina-beauty.png.png');
        background-size: cover;
        background-position: center;
    }

    /* Add more desktop images here */
    /* .mockup-slide-desktop:nth-child(2) { background-image: url('image2.png'); } */
}

/* MOBILE IMAGES - Show only on screens <= 768px */
@media (max-width: 768px) {
    .mockup-slide-desktop {
        display: none !important;
    }

    .mockup-slide-mobile:nth-child(5) {
        background-image: url('lumina-beauty-mobile.png');
        background-size: cover;
        background-position: center;
    }

    /* Add more mobile images here */
    /* .mockup-slide-mobile:nth-child(2) { background-image: url('image2-mobile.png'); } */
}

.mockup-slide-1 {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.mockup-slide-1::after {
    content: 'OdontoPrime';
    font-size: 3rem;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.2);
    text-transform: uppercase;
    letter-spacing: 0.2em;
}

.mockup-slide-2 {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.mockup-slide-2::after {
    content: 'Lumière Odonto';
    font-size: 3rem;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.2);
    text-transform: uppercase;
    letter-spacing: 0.2em;
}

.mockup-slide-3 {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.mockup-slide-3::after {
    content: 'Beauty Clinic';
    font-size: 3rem;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.2);
    text-transform: uppercase;
    letter-spacing: 0.2em;
}

.mockup-slide-4 {
    background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.mockup-slide-4::after {
    content: 'Medical Center';
    font-size: 3rem;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.2);
    text-transform: uppercase;
    letter-spacing: 0.2em;
}

.mockup-content {
    height: 400px;
    position: relative;
    background: var(--bg-secondary);
}

.mockup-gradient {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg,
            rgba(0, 255, 157, 0.2) 0%,
            rgba(0, 212, 255, 0.1) 50%,
            rgba(10, 10, 15, 0.8) 100%);
}

.mockup-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem;
    background: var(--bg-card);
}

.mockup-dots span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--border-color);
    transition: all 0.3s ease;
}

.mockup-dots span.active {
    background: var(--accent-green);
    width: 24px;
    border-radius: 4px;
}

/* Stats */
.stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
    margin-bottom: 3rem;
    width: 100%;
}

.stat-item {
    position: relative;
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.stat-item:hover {
    border-color: var(--accent-green);
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0, 255, 157, 0.15);
}

.stat-icon {
    width: 40px;
    height: 40px;
    color: var(--accent-white);
    flex-shrink: 0;
}

.stat-text {
    color: var(--text-secondary);
}

.secondary-button {
    background: var(--accent-green);
    color: var(--bg-primary);
    border: none;
    padding: 0.75rem 2rem;
    border-radius: 50px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.secondary-button:hover {
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 6px 20px rgba(0, 255, 157, 0.4);
}

/* Section Titles */
.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    text-align: center;
    margin-bottom: 3rem;
}

/* Portfolio Gallery Section */
.portfolio-gallery {
    padding: var(--section-padding);
    background: var(--bg-primary);
}

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

.portfolio-card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
    cursor: pointer;
}

.portfolio-card:hover {
    transform: translateY(-8px);
    border-color: var(--accent-green);
    box-shadow: 0 12px 35px rgba(0, 255, 157, 0.2);
}

.portfolio-image {
    width: 100%;
    padding-top: 56.25%;
    /* 16:9 aspect ratio */
    background-size: cover;
    background-position: center;
    transition: transform 0.3s ease;
}

.portfolio-card:hover .portfolio-image {
    transform: scale(1.05);
}

.portfolio-button {
    display: block;
    width: calc(100% - 2rem);
    margin: 1rem;
    padding: 0.875rem 1.5rem;
    background: var(--accent-green);
    color: var(--bg-primary);
    text-align: center;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 255, 157, 0.3);
}

.portfolio-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 255, 157, 0.5);
}

.portfolio-button:active {
    transform: translateY(0);
}

/* Benefits Section */
.benefits {
    padding: var(--section-padding);
    background: var(--bg-secondary);
}

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

.benefit-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 2rem;
    transition: all 0.3s ease;
}

.benefit-card:hover {
    border-color: var(--accent-green);
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(0, 255, 157, 0.2);
}

.benefit-icon {
    width: 48px;
    height: 48px;
    color: var(--accent-white);
    margin-bottom: 1.5rem;
}

.benefit-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.benefit-description {
    color: var(--text-secondary);
    line-height: 1.7;
}

/* Process Section */
.process {
    padding: var(--section-padding);
}

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

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

.process-step:hover {
    border-color: var(--accent-green);
    transform: translateY(-8px);
}

.step-number {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--gradient-primary);
    color: var(--bg-primary);
    font-size: 2rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.step-title {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.step-description {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Social Proof Section */
.social-proof {
    padding: var(--section-padding);
    background: var(--bg-secondary);
    text-align: center;
}

.proof-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900;
    margin-bottom: 3rem;
}

.carousel-wrapper {
    position: relative;
    max-width: 100%;
    margin: 0 auto;
}

.clients-carousel {
    display: flex;
    gap: 2rem;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    padding: 1rem 0;
    scrollbar-width: none;
    /* Firefox */
    -ms-overflow-style: none;
    /* IE and Edge */
}

.clients-carousel::-webkit-scrollbar {
    display: none;
    /* Chrome, Safari, Opera */
}

.client-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 2rem;
    text-align: left;
    transition: all 0.3s ease;
    flex: 0 0 calc(33.333% - 1.35rem);
    min-width: 320px;
    max-height: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    scroll-snap-align: start;
    scroll-snap-stop: always;
}

.client-card:hover {
    border-color: var(--accent-green);
    transform: translateY(-4px);
}

.client-name {
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--text-primary);
    margin: 0;
}

.client-role {
    font-size: 0.9rem;
    color: var(--accent-green);
    font-weight: 600;
    margin: 0;
}

.client-testimonial {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-secondary);
    margin: 0;
    font-style: italic;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 50%;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
}

.carousel-btn svg {
    width: 24px;
    height: 24px;
    color: var(--text-primary);
    transition: color 0.3s ease;
}

.carousel-btn:hover {
    background: var(--accent-green);
    border-color: var(--accent-green);
    transform: translateY(-50%) scale(1.1);
}

.carousel-btn:hover svg {
    color: var(--bg-primary);
}

.carousel-btn-prev {
    left: -24px;
}

.carousel-btn-next {
    right: -24px;
}

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

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

.faq-item {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    margin-bottom: 1rem;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: var(--accent-green);
}

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

.faq-question:hover {
    color: var(--accent-white);
}

.faq-icon {
    font-size: 1.5rem;
    font-weight: 300;
    transition: transform 0.3s ease;
}

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

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

.faq-item.active .faq-answer {
    max-height: 300px;
}

.faq-answer p {
    padding: 0 1.5rem 1.5rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* Guarantee Section */
.guarantee {
    padding: var(--section-padding);
    background: var(--bg-secondary);
}

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

.guarantee-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.guarantee-card:hover {
    border-color: var(--accent-green);
    transform: translateY(-4px);
}

.guarantee-icon {
    width: 48px;
    height: 48px;
    color: var(--accent-white);
    margin-bottom: 1rem;
}

.guarantee-text {
    font-weight: 600;
    font-size: 1.1rem;
}

/* Final CTA Section */
.final-cta {
    padding: var(--section-padding);
}

.cta-content {
    background: var(--bg-card);
    border: 2px solid var(--accent-green);
    border-radius: 20px;
    padding: 3rem;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0, 255, 157, 0.2);
}

.cta-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    margin-bottom: 1rem;
}

.cta-subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

.cta-list li {
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
    color: var(--text-primary);
}

.cta-note {
    margin-top: 1rem;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* Footer */
.footer {
    padding: 4rem 0 0;
    background: var(--bg-secondary);
    border-top: 1px solid var(--border-color);
}

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

.footer-about {
    max-width: 350px;
}

.footer-logo {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--accent-white);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-logo .logo-icon {
    width: 28px;
    height: 28px;
}

.footer-description {
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: 0.95rem;
}

.footer-section h4 {
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

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

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

.footer-section a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

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

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.contact-icon {
    width: 18px;
    height: 18px;
    color: var(--accent-white);
    flex-shrink: 0;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-icon {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.social-icon svg {
    width: 20px;
    height: 20px;
    color: var(--text-secondary);
    transition: color 0.3s ease;
}

.social-icon:hover {
    background: var(--accent-green);
    transform: translateY(-3px);
}

.social-icon:hover svg {
    color: var(--bg-primary);
}

.footer-bottom {
    border-top: 1px solid var(--border-color);
    padding: 2rem 0;
    text-align: center;
}

.footer-bottom p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin: 0;
}

/* Cookie Consent Popup */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--bg-card);
    border-top: 1px solid var(--border-color);
    padding: 1.5rem;
    z-index: 10000;
    transform: translateY(100%);
    transition: transform 0.4s ease;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
}

.cookie-consent.show {
    transform: translateY(0);
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
}

.cookie-content p {
    color: var(--text-secondary);
    margin: 0;
    flex: 1;
    min-width: 300px;
    line-height: 1.6;
}

.cookie-content a {
    color: var(--accent-green);
    text-decoration: underline;
    transition: color 0.3s ease;
}

.cookie-content a:hover {
    color: #00ff9d;
}

.cookie-button {
    background: var(--accent-green);
    color: var(--bg-primary);
    border: none;
    padding: 0.875rem 2rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 255, 157, 0.3);
    white-space: nowrap;
}

.cookie-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 255, 157, 0.5);
}

.cookie-button:active {
    transform: translateY(0);
}

/* Privacy Policy Modal */
.privacy-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    z-index: 11000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    backdrop-filter: blur(5px);
}

.privacy-modal.show {
    display: flex;
}

.privacy-modal-content {
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    max-width: 900px;
    max-height: 90vh;
    width: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    animation: modalSlideIn 0.3s ease;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.privacy-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: var(--text-primary);
    font-size: 2rem;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
}

.privacy-close:hover {
    background: rgba(255, 0, 0, 0.2);
    transform: rotate(90deg);
}

.privacy-header {
    padding: 2rem 3rem 1rem;
    border-bottom: 1px solid var(--border-color);
}

.privacy-header h2 {
    color: var(--accent-green);
    margin: 0;
    font-size: 2rem;
}

.privacy-body {
    padding: 2rem 3rem;
    overflow-y: auto;
    flex: 1;
}

.privacy-body::-webkit-scrollbar {
    width: 8px;
}

.privacy-body::-webkit-scrollbar-track {
    background: var(--bg-primary);
    border-radius: 4px;
}

.privacy-body::-webkit-scrollbar-thumb {
    background: var(--accent-green);
    border-radius: 4px;
}

.privacy-body::-webkit-scrollbar-thumb:hover {
    background: #00ff9d;
}

.privacy-body p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.privacy-body h3 {
    color: var(--text-primary);
    margin: 2rem 0 1rem;
    font-size: 1.5rem;
}

.privacy-body strong {
    color: var(--accent-green);
}

.privacy-body em {
    color: var(--text-secondary);
    opacity: 0.8;
}

.privacy-footer {
    padding: 1.5rem 3rem 2rem;
    border-top: 1px solid var(--border-color);
    text-align: center;
}

.privacy-back-btn {
    background: var(--accent-green);
    color: var(--bg-primary);
    border: none;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 255, 157, 0.3);
}

.privacy-back-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 255, 157, 0.5);
}

.privacy-back-btn:active {
    transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 768px) {
    :root {
        --section-padding: 3rem 0;
        --container-padding: 1rem;
    }

    .header-content {
        gap: 1rem;
    }

    .logo {
        font-size: 1.2rem;
    }

    .cta-button {
        padding: 0.6rem 1.5rem;
        font-size: 0.85rem;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-description {
        font-size: 1rem;
    }

    .mockup-content {
        height: 250px;
    }

    .stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .process-grid,
    .guarantee-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .clients-carousel {
        gap: 1rem;
    }

    .client-card {
        flex: 0 0 calc(80% - 0.5rem);
        min-width: 280px;
    }

    .carousel-btn {
        width: 40px;
        height: 40px;
    }

    .carousel-btn svg {
        width: 20px;
        height: 20px;
    }

    .carousel-btn-prev {
        left: -12px;
    }

    .carousel-btn-next {
        right: -12px;
    }

    .section-title {
        font-size: 2rem;
    }

    .cta-content {
        padding: 2rem 1.5rem;
    }

    .cta-button.large {
        padding: 1rem 2rem;
        font-size: 1rem;
        width: 100%;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .footer-about {
        max-width: 100%;
    }

    .hero-mockup {
        margin-top: 2rem;
    }

    .mockup-banner {
        height: 300px;
    }

    .chart-container {
        padding: 1rem;
    }

    .growth-chart {
        max-width: 100%;
    }

    .card-indicator {
        width: 10px;
        height: 10px;
        top: 0.75rem;
        right: 0.75rem;
    }

    .stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .stat-item {
        padding: 1.25rem;
    }

    .mockup-heading {
        font-size: 1.5rem;
    }

    .mockup-subheading {
        font-size: 0.875rem;
    }

    .gradient-text::after {
        height: 2px;
        bottom: -4px;
    }

    /* Hero Section Mobile Adjustments */
    .mockup-content-fixed {
        height: 300px;
    }

    .shape-circle {
        opacity: 0.5;
    }

    .shape-1 {
        width: 80px;
        height: 80px;
    }

    .shape-2 {
        width: 60px;
        height: 60px;
    }

    .shape-3 {
        display: none;
    }

    .gradient-orb {
        opacity: 0.3;
    }

    .orb-1 {
        width: 150px;
        height: 150px;
    }

    .orb-2 {
        width: 120px;
        height: 120px;
    }

    .mockup-overlay {
        padding: 1.5rem;
    }

    .mockup-heading {
        font-size: 1.8rem;
    }

    .mockup-subheading {
        font-size: 1rem;
    }

}

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

    .mockup-content {
        height: 200px;
    }

    .stat-item {
        padding: 1rem;
    }

    .benefit-card,
    .process-step {
        padding: 1.5rem;
    }

    .client-card {
        flex: 0 0 calc(100% - 1rem);
        min-width: 180px;
        padding: 2rem 1.5rem;
    }

    .carousel-btn-prev {
        left: 0;
    }

    .carousel-btn-next {
        right: 0;
    }

    .step-number {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    transition: all 0.3s ease;
    text-decoration: none;
}

.whatsapp-float svg {
    width: 32px;
    height: 32px;
    color: white;
}

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

/* Progressive Title Animations */
@keyframes fadeInTitle {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-title {
    opacity: 0;
    animation: fadeInTitle 1.2s ease forwards;
}

.hero-description {
    opacity: 0;
    animation: fadeInTitle 1.4s ease forwards 0.3s;
}

/* Loading Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero,
.benefits,
.process,
.social-proof,
.faq,
.guarantee,
.final-cta {
    animation: fadeInUp 0.8s ease-out;
}