/* ========================================
   METAS DIGITAIS - LANDING PAGE
   Cores Oficiais do Mídia Kit
   Atualização Forçada
   ======================================== */

:root {
    /* Cores Oficiais do Mídia Kit */
    --primary-bg: #0F0F10;           /* Fundo preto oficial */
    --secondary-bg: #161616;         /* Preto mais claro */
    --accent-green: #7DD80C;         /* Verde neon oficial */
    --accent-green-dark: #4A7015;    /* Verde escuro */
    --text-primary: #FFFFFF;         /* Texto branco */
    --text-secondary: #DCDCDC;       /* Cinza claro */
    --text-muted: #999999;           /* Cinza médio */
    
    /* Gradientes */
    --gradient-green: linear-gradient(135deg, #7DD80C 0%, #4A7015 100%);
    --gradient-dark: linear-gradient(180deg, #0F0F10 0%, #1A1A1A 100%);
    
    /* Sombras */
    --shadow-sm: 0 2px 8px rgba(125, 216, 12, 0.1);
    --shadow-md: 0 4px 16px rgba(125, 216, 12, 0.15);
    --shadow-lg: 0 8px 32px rgba(125, 216, 12, 0.2);
    --shadow-xl: 0 16px 48px rgba(125, 216, 12, 0.25);
    
    /* Tipografia */
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-display: 'Playfair Display', Georgia, serif;
    
    /* Transições */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
}

/* ========================================
   RESET & BASE
   ======================================== */

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-primary);
    background-color: var(--primary-bg);
    color: var(--text-secondary);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: all var(--transition-normal);
}

ul {
    list-style: none;
}

/* ========================================
   UTILITIES
   ======================================== */

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

.highlight {
    color: var(--accent-green);
    position: relative;
    display: inline-block;
}

.section-badge {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(125, 216, 12, 0.1);
    border: 1px solid var(--accent-green);
    border-radius: 50px;
    color: var(--accent-green);
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

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

.section-title {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 20px;
    line-height: 1.2;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto;
}

/* ========================================
   BUTTONS
   ======================================== */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all var(--transition-normal);
    border: 2px solid transparent;
    text-align: center;
    position: relative;
    overflow: hidden;
    min-width: 200px;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary {
    background: var(--gradient-green);
    color: var(--primary-bg);
    font-weight: 700;
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background: transparent;
    color: var(--text-primary);
    border-color: var(--text-secondary);
}

.btn-secondary:hover {
    border-color: var(--accent-green);
    color: var(--accent-green);
    transform: translateY(-3px);
}

.btn-outline {
    background: transparent;
    color: var(--accent-green);
    border-color: var(--accent-green);
}

.btn-outline:hover {
    background: var(--accent-green);
    color: var(--primary-bg);
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.btn-large {
    padding: 18px 40px;
    font-size: 1.125rem;
    min-width: 250px;
}

.btn-huge {
    padding: 22px 50px;
    font-size: 1.25rem;
    min-width: 300px;
}

/* ========================================
   WHATSAPP FLUTUANTE
   ======================================== */

.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    transition: all var(--transition-normal);
    animation: pulse 2s infinite;
}

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

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    }
    50% {
        box-shadow: 0 4px 30px rgba(37, 211, 102, 0.8);
    }
}

/* ========================================
   SCROLL PROGRESS BAR
   ======================================== */

.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 4px;
    background: var(--gradient-green);
    z-index: 9999;
    transition: width 0.1s ease;
}

/* ========================================
   HERO SECTION
   ======================================== */

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 100px 20px 80px;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 50%, rgba(125, 216, 12, 0.15) 0%, transparent 50%),
                radial-gradient(circle at 70% 80%, rgba(74, 112, 21, 0.1) 0%, transparent 50%);
}

.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(2px 2px at 20% 30%, rgba(125, 216, 12, 0.3), transparent),
        radial-gradient(2px 2px at 60% 70%, rgba(125, 216, 12, 0.2), transparent),
        radial-gradient(1px 1px at 50% 50%, rgba(125, 216, 12, 0.1), transparent),
        radial-gradient(2px 2px at 80% 10%, rgba(125, 216, 12, 0.2), transparent);
    background-size: 200% 200%;
    animation: particlesFloat 20s ease infinite;
}

@keyframes particlesFloat {
    0%, 100% {
        background-position: 0% 0%, 100% 100%, 50% 50%, 0% 100%;
    }
    50% {
        background-position: 100% 100%, 0% 0%, 80% 20%, 100% 0%;
    }
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 24px;
    background: rgba(125, 216, 12, 0.1);
    border: 1px solid var(--accent-green);
    border-radius: 50px;
    color: var(--accent-green);
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 30px;
}

.hero-title {
    font-family: var(--font-display);
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--text-primary);
    line-height: 1.1;
    margin-bottom: 30px;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 50px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

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

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--accent-green);
    display: block;
    line-height: 1;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 0.875rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-cta {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: var(--text-muted);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.mouse {
    width: 24px;
    height: 38px;
    border: 2px solid var(--text-muted);
    border-radius: 12px;
    position: relative;
}

.mouse::before {
    content: '';
    position: absolute;
    width: 4px;
    height: 8px;
    background: var(--accent-green);
    left: 50%;
    top: 8px;
    transform: translateX(-50%);
    border-radius: 2px;
    animation: scroll 2s infinite;
}

@keyframes scroll {
    0% {
        opacity: 1;
        top: 8px;
    }
    100% {
        opacity: 0;
        top: 20px;
    }
}

/* ========================================
   PROBLEMS SECTION
   ======================================== */

.problems {
    padding: 100px 20px;
    background: var(--secondary-bg);
}

.problems-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.problem-card {
    background: var(--primary-bg);
    padding: 40px 30px;
    border-radius: 20px;
    border: 1px solid rgba(125, 216, 12, 0.1);
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.problem-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-green);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition-slow);
}

.problem-card:hover::before {
    transform: scaleX(1);
}

.problem-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent-green);
}

.problem-icon {
    width: 70px;
    height: 70px;
    background: rgba(125, 216, 12, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    font-size: 32px;
    color: var(--accent-green);
    transition: all var(--transition-normal);
}

.problem-card:hover .problem-icon {
    background: var(--accent-green);
    color: var(--primary-bg);
    transform: scale(1.1) rotate(5deg);
}

.problem-card h3 {
    font-size: 1.5rem;
    color: var(--text-primary);
    margin-bottom: 15px;
    font-weight: 700;
}

.problem-card p {
    color: var(--text-secondary);
    line-height: 1.7;
}

.problems-cta {
    text-align: center;
    margin-top: 60px;
}

.problems-text {
    font-size: 1.125rem;
    color: var(--text-secondary);
    max-width: 800px;
    margin: 0 auto 30px;
    line-height: 1.8;
}

/* ========================================
   SOLUTION SECTION
   ======================================== */

.solution {
    padding: 100px 20px;
    background: var(--primary-bg);
}

.solution-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.solution-description {
    font-size: 1.125rem;
    color: var(--text-secondary);
    margin-bottom: 25px;
    line-height: 1.8;
}

.solution-description strong {
    color: var(--accent-green);
}

.solution-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 40px;
}

.feature-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    padding: 20px;
    background: rgba(125, 216, 12, 0.05);
    border-radius: 12px;
    border-left: 3px solid var(--accent-green);
    transition: all var(--transition-normal);
}

.feature-item:hover {
    background: rgba(125, 216, 12, 0.1);
    transform: translateX(10px);
}

.feature-item i {
    font-size: 24px;
    color: var(--accent-green);
    margin-top: 3px;
}

.feature-item h4 {
    color: var(--text-primary);
    font-size: 1.125rem;
    margin-bottom: 5px;
    font-weight: 600;
}

.feature-item p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.solution-card {
    background: var(--secondary-bg);
    padding: 40px;
    border-radius: 24px;
    border: 1px solid rgba(125, 216, 12, 0.2);
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
}

.solution-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(125, 216, 12, 0.1) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}

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

.card-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: var(--gradient-green);
    color: var(--primary-bg);
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.875rem;
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
}

.card-stats {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
}

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

.card-stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--accent-green);
    line-height: 1;
    margin-bottom: 8px;
}

.card-stat-label {
    font-size: 0.875rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.card-testimonial {
    padding: 25px;
    background: rgba(125, 216, 12, 0.05);
    border-radius: 12px;
    border-left: 3px solid var(--accent-green);
    position: relative;
    z-index: 1;
}

.card-testimonial p {
    font-style: italic;
    color: var(--text-primary);
    margin-bottom: 10px;
    line-height: 1.6;
}

.card-testimonial span {
    font-size: 0.875rem;
    color: var(--text-muted);
}

/* ========================================
   METHOD SECTION (Timeline)
   ======================================== */

.method {
    padding: 100px 20px;
    background: var(--secondary-bg);
}

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

.method-timeline::before {
    content: '';
    position: absolute;
    left: 50px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, var(--accent-green) 0%, rgba(125, 216, 12, 0.1) 100%);
}

.timeline-item {
    display: grid;
    grid-template-columns: 100px 1fr;
    gap: 40px;
    margin-bottom: 60px;
    position: relative;
}

.timeline-number {
    width: 100px;
    height: 100px;
    background: var(--gradient-green);
    color: var(--primary-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 800;
    box-shadow: var(--shadow-lg);
    position: relative;
    z-index: 1;
}

.timeline-content {
    background: var(--primary-bg);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid rgba(125, 216, 12, 0.2);
    transition: all var(--transition-normal);
}

.timeline-content:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent-green);
}

.timeline-icon {
    width: 60px;
    height: 60px;
    background: rgba(125, 216, 12, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: var(--accent-green);
    margin-bottom: 20px;
}

.timeline-content h3 {
    font-size: 1.75rem;
    color: var(--text-primary);
    margin-bottom: 15px;
    font-weight: 700;
}

.timeline-content p {
    color: var(--text-secondary);
    margin-bottom: 20px;
    line-height: 1.7;
}

.timeline-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.timeline-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.timeline-list li::before {
    content: '✓';
    color: var(--accent-green);
    font-weight: 700;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.method-cta {
    text-align: center;
    margin-top: 60px;
}

/* ========================================
   BENEFITS SECTION
   ======================================== */

.benefits {
    padding: 100px 20px;
    background: var(--primary-bg);
}

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

.benefit-card {
    background: var(--secondary-bg);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid rgba(125, 216, 12, 0.1);
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.benefit-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-green);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition-slow);
}

.benefit-card:hover::after {
    transform: scaleX(1);
}

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent-green);
}

.benefit-icon {
    width: 70px;
    height: 70px;
    background: rgba(125, 216, 12, 0.1);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    font-size: 32px;
    color: var(--accent-green);
    transition: all var(--transition-normal);
}

.benefit-card:hover .benefit-icon {
    background: var(--accent-green);
    color: var(--primary-bg);
    transform: scale(1.1) rotate(-5deg);
}

.benefit-card h3 {
    font-size: 1.5rem;
    color: var(--text-primary);
    margin-bottom: 15px;
    font-weight: 700;
}

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

/* ========================================
   TESTIMONIALS SECTION
   ======================================== */

.testimonials {
    padding: 100px 20px;
    background: var(--secondary-bg);
}

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

.testimonial-card {
    background: var(--primary-bg);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid rgba(125, 216, 12, 0.2);
    transition: all var(--transition-normal);
    position: relative;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 20px;
    left: 30px;
    font-size: 100px;
    font-family: Georgia, serif;
    color: rgba(125, 216, 12, 0.1);
    line-height: 1;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent-green);
}

.testimonial-rating {
    display: flex;
    gap: 5px;
    margin-bottom: 20px;
}

.testimonial-rating i {
    color: #FFD700;
    font-size: 18px;
}

.testimonial-text {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 30px;
    font-size: 1.05rem;
    position: relative;
    z-index: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.author-avatar {
    width: 50px;
    height: 50px;
    background: rgba(125, 216, 12, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    color: var(--accent-green);
}

.author-info h4 {
    color: var(--text-primary);
    font-weight: 600;
    margin-bottom: 3px;
}

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

.testimonial-result {
    margin-top: 20px;
}

.result-badge {
    display: inline-block;
    padding: 8px 16px;
    background: rgba(125, 216, 12, 0.1);
    border: 1px solid var(--accent-green);
    border-radius: 50px;
    color: var(--accent-green);
    font-weight: 600;
    font-size: 0.875rem;
}

/* ========================================
   PRICING SECTION
   ======================================== */

.pricing {
    padding: 100px 20px;
    background: var(--primary-bg);
}

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

.pricing-card {
    background: var(--secondary-bg);
    padding: 50px 40px;
    border-radius: 24px;
    border: 2px solid rgba(125, 216, 12, 0.1);
    transition: all var(--transition-normal);
    position: relative;
    display: flex;
    flex-direction: column;
}

.pricing-card:hover {
    transform: translateY(-15px);
    box-shadow: var(--shadow-xl);
    border-color: var(--accent-green);
}

.pricing-featured {
    border-color: var(--accent-green);
    box-shadow: var(--shadow-lg);
    transform: scale(1.05);
}

.pricing-featured:hover {
    transform: scale(1.05) translateY(-15px);
}

.pricing-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    padding: 8px 20px;
    background: var(--secondary-bg);
    border: 1px solid var(--accent-green);
    border-radius: 50px;
    color: var(--accent-green);
    font-weight: 600;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.pricing-badge.featured {
    background: var(--gradient-green);
    color: var(--primary-bg);
    border: none;
}

.pricing-title {
    font-size: 1.75rem;
    color: var(--text-primary);
    margin: 30px 0 20px;
    font-weight: 700;
}

.pricing-price {
    display: flex;
    align-items: flex-start;
    gap: 5px;
    margin-bottom: 20px;
}

.price-currency {
    font-size: 1.5rem;
    color: var(--accent-green);
    font-weight: 700;
    margin-top: 10px;
}

.price-value {
    font-size: 4rem;
    color: var(--accent-green);
    font-weight: 800;
    line-height: 1;
}

.price-period {
    font-size: 1rem;
    color: var(--text-muted);
    align-self: flex-end;
    margin-bottom: 15px;
}

.pricing-description {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 30px;
    flex-grow: 1;
}

.pricing-features {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 40px;
}

.pricing-features li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: var(--text-secondary);
}

.pricing-features i {
    color: var(--accent-green);
    font-size: 18px;
    margin-top: 2px;
}

.pricing-note {
    text-align: center;
    padding: 30px;
    background: rgba(125, 216, 12, 0.05);
    border-radius: 16px;
    border: 1px solid rgba(125, 216, 12, 0.2);
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.pricing-note i {
    color: var(--accent-green);
    font-size: 24px;
    flex-shrink: 0;
    margin-top: 5px;
}

.pricing-note p {
    color: var(--text-secondary);
    line-height: 1.7;
    text-align: left;
}

/* ========================================
   FINAL CTA SECTION
   ======================================== */

.final-cta {
    padding: 120px 20px;
    background: var(--secondary-bg);
    position: relative;
    overflow: hidden;
}

.final-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, rgba(125, 216, 12, 0.1) 0%, transparent 70%);
}

.cta-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.cta-title {
    font-family: var(--font-display);
    font-size: 3rem;
    color: var(--text-primary);
    margin-bottom: 25px;
    line-height: 1.2;
}

.cta-description {
    font-size: 1.25rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 40px;
}

.cta-benefits {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.cta-benefit {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-secondary);
    font-weight: 500;
}

.cta-benefit i {
    color: var(--accent-green);
    font-size: 20px;
}

.cta-social {
    margin-top: 30px;
    color: var(--text-muted);
}

.cta-social a {
    color: var(--accent-green);
    font-weight: 600;
}

.cta-social a:hover {
    text-decoration: underline;
}

/* ========================================
   FOOTER
   ======================================== */

.footer {
    background: var(--primary-bg);
    padding: 60px 20px 30px;
    border-top: 1px solid rgba(125, 216, 12, 0.1);
}

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

.footer-logo {
    font-size: 1.75rem;
    color: var(--text-primary);
    font-weight: 800;
    margin-bottom: 10px;
}

.footer-tagline {
    color: var(--accent-green);
    font-weight: 600;
    margin-bottom: 15px;
}

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

.footer-links h4,
.footer-contact h4,
.footer-about h4 {
    color: var(--text-primary);
    font-weight: 700;
    margin-bottom: 20px;
    font-size: 1.125rem;
}

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

.footer-links a,
.footer-contact a {
    color: var(--text-secondary);
    transition: all var(--transition-fast);
}

.footer-links a:hover,
.footer-contact a:hover {
    color: var(--accent-green);
    transform: translateX(5px);
}

.footer-contact li {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-contact i {
    color: var(--accent-green);
    font-size: 18px;
}

.footer-about p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.footer-social {
    display: flex;
    gap: 15px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(125, 216, 12, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-green);
    font-size: 18px;
    transition: all var(--transition-normal);
}

.footer-social a:hover {
    background: var(--accent-green);
    color: var(--primary-bg);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(125, 216, 12, 0.1);
}

.footer-bottom p {
    color: var(--text-muted);
    font-size: 0.875rem;
    margin-bottom: 5px;
}

.footer-bottom i {
    color: var(--accent-green);
}

/* ========================================
   ANIMATIONS (AOS-like)
   ======================================== */

[data-aos] {
    opacity: 0;
    transition: opacity 0.8s ease, transform 0.8s ease;
}

[data-aos].aos-animate {
    opacity: 1;
}

[data-aos="fade-up"].aos-animate {
    transform: translateY(0);
}

[data-aos="fade-down"].aos-animate {
    transform: translateY(0);
}

[data-aos="fade-left"].aos-animate {
    transform: translateX(0);
}

[data-aos="fade-right"].aos-animate {
    transform: translateX(0);
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */

@media (max-width: 1024px) {
    .solution-content {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .timeline-item {
        grid-template-columns: 80px 1fr;
        gap: 30px;
    }
    
    .timeline-number {
        width: 80px;
        height: 80px;
        font-size: 1.75rem;
    }
    
    .method-timeline::before {
        left: 40px;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.125rem;
    }
    
    .hero-stats {
        gap: 40px;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: center;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .problems-grid,
    .benefits-grid,
    .testimonials-grid,
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .timeline-item {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .method-timeline::before {
        display: none;
    }
    
    .timeline-number {
        margin: 0 auto;
    }
    
    .cta-title {
        font-size: 2.25rem;
    }
    
    .cta-description {
        font-size: 1.125rem;
    }
    
    .cta-benefits {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .btn-large {
        min-width: auto;
        width: 100%;
    }
    
    .btn-huge {
        min-width: auto;
        width: 100%;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .whatsapp-float {
        width: 50px;
        height: 50px;
        font-size: 24px;
        bottom: 20px;
        right: 20px;
    }
    
    .problem-card,
    .benefit-card,
    .testimonial-card {
        padding: 30px 20px;
    }
    
    .timeline-content {
        padding: 30px 20px;
    }
    
    .pricing-card {
        padding: 40px 25px;
    }
    
    .price-value {
        font-size: 3rem;
    }
}