﻿/* ========================================
   FaturaPro Landing Page - Premium Styling
   SCOPED TO .faturapro-landing to prevent conflicts
   ======================================== */

/* Critical CSS - Override theme/Elementor */
.faturapro-landing {
    --primary: #1e40af;
    --primary-dark: #1e3a8a;
    --primary-light: #dbeafe;
    --accent: #f59e0b;
    --accent-light: #fef3c7;
    --secondary: #0f172a;
    --success: #10b981;
    --text-primary: #0f172a;
    --text-secondary: #64748b;
    --text-muted: #94a3b8;
    --bg-light: #f8fafc;
    --bg-lighter: #f1f5f9;
    --border-color: #e2e8f0;
    --shadow-sm: 0 1px 2px 0 rgba(15, 23, 42, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(15, 23, 42, 0.1), 0 2px 4px -1px rgba(15, 23, 42, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(15, 23, 42, 0.1), 0 4px 6px -2px rgba(15, 23, 42, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(15, 23, 42, 0.1), 0 10px 10px -5px rgba(15, 23, 42, 0.04);
    
    overflow-x: hidden !important;
    scroll-behavior: smooth !important;
    margin: 0 !important;
    padding: 0 !important;
    background-color: #ffffff !important;
    color: var(--text-primary) !important;
    font-family: 'Sora', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif !important;
    font-size: 17px !important;
    line-height: 1.6 !important;
    box-sizing: border-box !important;
}

/* Reset Elementor & Theme Conflicts */
.faturapro-landing * {
    margin: 0;
    padding: 0;
    box-sizing: border-box !important;
}

.faturapro-landing *::before,
.faturapro-landing *::after {
    box-sizing: border-box !important;
}

/* ========================================
   Typography - SCOPED
   ======================================== */

.faturapro-landing h1,
.faturapro-landing h2,
.faturapro-landing h3,
.faturapro-landing h4,
.faturapro-landing h5,
.faturapro-landing h6 {
    font-family: 'Outfit', sans-serif !important;
    font-weight: 700 !important;
    line-height: 1.2 !important;
    margin-bottom: 1rem !important;
    color: var(--text-primary) !important;
    padding: 0 !important;
    background: none !important;
}

.faturapro-landing h1 {
    font-size: clamp(2.5rem, 5vw, 4rem) !important;
    font-weight: 800 !important;
    letter-spacing: -0.02em !important;
}

.faturapro-landing h2 {
    font-size: clamp(2rem, 4vw, 3rem) !important;
    margin-bottom: 1.5rem !important;
}

.faturapro-landing h3 {
    font-size: clamp(1.5rem, 3vw, 2rem) !important;
}

.faturapro-landing p {
    color: var(--text-secondary);
    margin-bottom: 1rem !important;
    font-size: 12px !important;
    line-height: 1.8 !important;
}

/* ========================================
   Container & Grid - SCOPED
   ======================================== */

.faturapro-landing .faturapro-container {
    max-width: 1280px !important;
    margin: 0 auto !important;
    padding: 0 1.5rem !important;
    width: 100% !important;
    box-sizing: border-box !important;
}

.faturapro-landing .faturapro-grid {
    display: grid !important;
    gap: 2rem !important;
}

.faturapro-landing .faturapro-grid-2 {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)) !important;
}

.faturapro-landing .faturapro-grid-3 {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)) !important;
}

.faturapro-landing .faturapro-grid-4 {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)) !important;
}

.faturapro-landing .faturapro-flex-row {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 1.5rem !important;
    align-items: center !important;
}

/* ========================================
   Buttons & CTAs - SCOPED
   ======================================== */

.faturapro-landing .faturapro-btn {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 0.5rem !important;
    padding: 0.75rem 1.75rem !important;
    border: none !important;
    border-radius: 0.625rem !important;
    font-family: 'Sora', sans-serif !important;
    font-weight: 600 !important;
    font-size: 1rem !important;
    cursor: pointer !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
    text-decoration: none !important;
    white-space: nowrap !important;
    position: relative !important;
    overflow: hidden !important;
    box-shadow: none !important;
    filter: none !important;
}

.faturapro-landing .faturapro-btn::before {
    content: '' !important;
    position: absolute !important;
    top: 50% !important;
    left: 50% !important;
    width: 0 !important;
    height: 0 !important;
    border-radius: 50% !important;
    background: rgba(255, 255, 255, 0.2) !important;
    transform: translate(-50%, -50%) !important;
    transition: width 0.6s, height 0.6s !important;
    pointer-events: none !important;
    z-index: 0 !important;
}

.faturapro-landing .faturapro-btn:hover::before {
    width: 300px !important;
    height: 300px !important;
}

.faturapro-landing .faturapro-btn-primary {
    background: linear-gradient(135deg, var(--primary) 0%, #186db8 100%) !important;
    color: white !important;
    box-shadow: var(--shadow-md) !important;
}

.faturapro-landing .faturapro-btn-primary:hover {
    transform: translateY(-2px) !important;
    box-shadow: var(--shadow-lg) !important;
    background: linear-gradient(135deg, var(--primary-dark) 0%, #1e3a8a 100%) !important;
}

.faturapro-landing .faturapro-btn-secondary {
    background: transparent !important;
    color: var(--primary) !important;
    border: 2px solid var(--primary) !important;
}

.faturapro-landing .faturapro-btn-secondary:hover {
    background: var(--primary-light) !important;
    transform: translateY(-2px) !important;
}

.faturapro-landing .faturapro-btn-accent {
    background: linear-gradient(135deg, var(--accent) 0%, #d97706 100%) !important;
    color: white !important;
}

.faturapro-landing .faturapro-btn-accent:hover {
    transform: translateY(-2px) !important;
    box-shadow: var(--shadow-lg) !important;
}

/* ========================================
   Section Styling - SCOPED
   ======================================== */

.faturapro-landing .faturapro-section {
    padding: clamp(3rem, 8vh, 6rem) 0 !important;
    position: relative !important;
    margin: 0 !important;
    background: transparent !important;
}

.faturapro-landing .faturapro-section-light {
    background: var(--bg-light) !important;
}

.faturapro-landing .faturapro-section-dark {
    background: var(--text-primary) !important;
    color: white !important;
}

/* ========================================
   Header - SCOPED
   ======================================== */

.faturapro-landing .faturapro-header {
    background: white !important;
    position: sticky !important;
    top: 0 !important;
    z-index: 1000 !important;
    border-bottom: 1px solid var(--border-color) !important;
    box-shadow: var(--shadow-sm) !important;
}

.faturapro-landing .faturapro-header-content {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    padding: 1rem 0 !important;
}

.faturapro-landing .faturapro-logo {
    font-family: 'Outfit', sans-serif !important;
    font-size: 1.5rem !important;
    font-weight: 800 !important;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
    text-decoration: none !important;
}

.faturapro-landing .faturapro-nav-buttons {
    display: flex !important;
    gap: 1rem !important;
    align-items: center !important;
}

.faturapro-landing .faturapro-lang-switch {
    background: var(--bg-light) !important;
    border: none !important;
    padding: 0.5rem 1rem !important;
    border-radius: 0.5rem !important;
    cursor: pointer !important;
    font-weight: 600 !important;
    color: var(--primary) !important;
    transition: all 0.3s ease !important;
    font-size: 0.875rem !important;
    line-height: 25px !important;
}

.faturapro-landing .faturapro-lang-switch:hover {
    background: var(--primary-light) !important;
}

.faturapro-landing .faturapro-lang-switch.active {
    background: var(--primary) !important;
    color: white !important;
}

/* ========================================
   Hero Section - SCOPED
   ======================================== */

.faturapro-landing .faturapro-hero {
    background: linear-gradient(135deg, #ffffff 0%, var(--bg-light) 100%) !important;
    padding: 4rem 0 !important;
    position: relative !important;
    overflow: hidden !important;
}

.faturapro-landing .faturapro-hero::before {
    content: '' !important;
    position: absolute !important;
    top: -50% !important;
    right: -10% !important;
    width: 600px !important;
    height: 600px !important;
    background: radial-gradient(circle, rgba(30, 64, 175, 0.1) 0%, transparent 70%) !important;
    border-radius: 50% !important;
    pointer-events: none !important;
    z-index: 1 !important;
}

.faturapro-landing .faturapro-hero::after {
    content: '' !important;
    position: absolute !important;
    bottom: -30% !important;
    left: -5% !important;
    width: 500px !important;
    height: 500px !important;
    background: radial-gradient(circle, rgba(245, 158, 11, 0.08) 0%, transparent 70%) !important;
    border-radius: 50% !important;
    pointer-events: none !important;
    z-index: 0 !important;
}

.faturapro-landing .faturapro-hero-content {
    position: relative !important;
    z-index: 2 !important;
}

.faturapro-landing .faturapro-hero-title {
    margin-bottom: 1.5rem !important;
}

.faturapro-landing .faturapro-hero-subtitle {
    font-size: clamp(1rem, 2vw, 16px) !important;
    color: var(--text-secondary) !important;
    margin-bottom: 2rem !important;
    line-height: 1.8 !important;
    max-width: 600px !important;
}

.faturapro-landing .faturapro-hero-cta-group {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 1rem !important;
    margin-bottom: 3rem !important;
}

.faturapro-landing .faturapro-hero-trust {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 2rem !important;
    align-items: center !important;
    padding-top: 2rem !important;
    border-top: 1px solid var(--border-color) !important;
    max-width: 400px !important;
}

.faturapro-landing .faturapro-trust-item {
    display: flex !important;
    gap: 0.75rem !important;
    align-items: center !important;
}

.faturapro-landing .faturapro-trust-icon {
    width: 24px !important;
    height: 24px !important;
    background: var(--accent-light) !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    color: var(--accent) !important;
    font-size: 0.75rem !important;
    flex-shrink: 0 !important;
}

.faturapro-landing .faturapro-trust-text {
    font-size: 16px !important;
    color: var(--text-secondary) !important;
}

.faturapro-landing .faturapro-trust-section {
    padding: 1.25rem 0 0 !important;
    background: #ffffff !important;
}

.faturapro-landing .faturapro-trust-section .faturapro-container {
    display: grid !important;
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
    gap: 1rem !important;
}

.faturapro-landing .faturapro-trust-badge {
    display: flex !important;
    align-items: center !important;
    gap: 0.875rem !important;
    padding: 1rem 1.125rem !important;
    background: #ffffff !important;
    border: 1px solid var(--border-color) !important;
    border-radius: 1rem !important;
    box-shadow: var(--shadow-sm) !important;
}

.faturapro-landing .faturapro-trust-badge-icon {
    width: 2.75rem !important;
    height: 2.75rem !important;
    border-radius: 0.9rem !important;
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--accent-light) 100%) !important;
    color: var(--primary) !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    flex-shrink: 0 !important;
    font-size: 1.1rem !important;
}

.faturapro-landing .faturapro-trust-badge-text {
    color: var(--text-primary) !important;
    font-size: 16px !important;
    font-weight: 600 !important;
    line-height: 1.4 !important;
}

.faturapro-landing .faturapro-hero-visual {
    position: relative !important;
    height: 400px !important;
    background: linear-gradient(135deg, var(--primary-light) 0%, rgba(245, 158, 11, 0.1) 100%) !important;
    border-radius: 1.5rem !important;
    border: 1px solid var(--border-color) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    overflow: hidden !important;
}

.faturapro-landing .faturapro-hero-visual-placeholder {
    text-align: center !important;
    color: var(--text-muted) !important;
}

.faturapro-landing .faturapro-hero-visual-placeholder i {
    font-size: 4rem !important;
    color: var(--primary) !important;
    margin-bottom: 1rem !important;
    display: block !important;
}

/* ========================================
   Feature Cards - SCOPED
   ======================================== */

.faturapro-landing .faturapro-feature-card {
    background: white !important;
    border: 1px solid var(--border-color) !important;
    border-radius: 1rem !important;
    padding: 2rem !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
    position: relative !important;
    overflow: hidden !important;
}

.faturapro-landing .faturapro-feature-card::before {
    content: '' !important;
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    height: 4px !important;
    background: linear-gradient(90deg, var(--primary) 0%, var(--accent) 100%) !important;
    transform: scaleX(0) !important;
    transform-origin: left !important;
    transition: transform 0.3s ease !important;
}

.faturapro-landing .faturapro-feature-card:hover {
    border-color: var(--primary) !important;
    box-shadow: var(--shadow-lg) !important;
    transform: translateY(-8px) !important;
}

.faturapro-landing .faturapro-feature-card:hover::before {
    transform: scaleX(1) !important;
}

.faturapro-landing .faturapro-feature-icon {
    width: 60px !important;
    height: 60px !important;
    background: var(--primary-light) !important;
    border-radius: 1rem !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 1.75rem !important;
    color: var(--primary) !important;
    margin-bottom: 1rem !important;
}

.faturapro-landing .faturapro-feature-card h3 {
    margin-bottom: 0.75rem !important;
    color: var(--text-primary) !important;
}

.faturapro-landing .faturapro-feature-card p {
    color: var(--text-secondary) !important;
    font-size: 11px !important;
    line-height: 1.6 !important;
}

/* ========================================
   Steps Section - SCOPED
   ======================================== */

.faturapro-landing .faturapro-steps {
    display: grid !important;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)) !important;
    gap: 2rem !important;
    counter-reset: steps !important;
}

.faturapro-landing .faturapro-step {
    display: flex !important;
    flex-direction: column !important;
    position: relative !important;
    padding-top: 4rem !important;
}

.faturapro-landing .faturapro-step::before {
    content: counter(steps) !important;
    counter-increment: steps !important;
    position: relative !important;
    top: 0 !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    width: 60px !important;
    height: 60px !important;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%) !important;
    color: white !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 1.5rem !important;
    font-weight: 800 !important;
    font-family: 'Outfit', sans-serif !important;
}

.faturapro-landing .faturapro-step h3 {
    text-align: center !important;
    margin-bottom: 0.75rem !important;
    color: var(--text-primary) !important;
}

.faturapro-landing .faturapro-step p {
    text-align: center !important;
    color: var(--text-secondary) !important;
    font-size: 12px !important;
}

/* ========================================
   Benefits Section - SCOPED
   ======================================== */

.faturapro-landing .faturapro-benefits {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 3rem !important;
    align-items: center !important;
}

.faturapro-landing .faturapro-benefit-list {
    display: flex !important;
    flex-direction: column !important;
    gap: 1.5rem !important;
}

.faturapro-landing .faturapro-benefit-item {
    display: flex !important;
    gap: 1rem !important;
}

.faturapro-landing .faturapro-benefit-icon {
    flex-shrink: 0 !important;
    width: 40px !important;
    height: 40px !important;
    background: var(--accent-light) !important;
    border-radius: 0.75rem !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    color: var(--accent) !important;
    font-size: 1.25rem !important;
}

.faturapro-landing .faturapro-benefit-text h4 {
    margin-bottom: 0.25rem !important;
    color: var(--text-primary) !important;
    font-size: 18px !important;
}

.faturapro-landing .faturapro-benefit-text p {
    color: var(--text-secondary) !important;
    font-size: 14px !important;
    margin: 0 !important;
}

.faturapro-landing .faturapro-benefits-visual {
    height: 400px !important;
    background: linear-gradient(135deg, var(--primary-light) 0%, rgba(245, 158, 11, 0.1) 100%) !important;
    border-radius: 1.5rem !important;
    border: 1px solid var(--border-color) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    color: var(--text-muted) !important;
}

/* ========================================
   FAQ Section - SCOPED
   ======================================== */

.faturapro-landing .faturapro-faq-container {
    max-width: 800px !important;
    margin: 0 auto !important;
}

.faturapro-landing .faturapro-faq-item {
    border: 1px solid var(--border-color) !important;
    border-radius: 1rem !important;
    margin-bottom: 1rem !important;
    overflow: hidden !important;
    transition: all 0.3s ease !important;
}

.faturapro-landing .faturapro-faq-item.active {
    border-color: var(--primary) !important;
    box-shadow: var(--shadow-md) !important;
}

.faturapro-landing .faturapro-faq-question {
    background: var(--bg-light) !important;
    padding: 1.5rem !important;
    cursor: pointer !important;
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    -webkit-user-select: none !important;
    user-select: none !important;
    transition: background 0.3s ease !important;
}

.faturapro-landing .faturapro-faq-item:hover .faturapro-faq-question {
    background: var(--bg-lighter) !important;
}

.faturapro-landing .faturapro-faq-question h4 {
    margin: 0 !important;
    color: var(--text-primary) !important;
    font-size: 16px !important;
    flex: 1 !important;
}

.faturapro-landing .faturapro-faq-toggle {
    width: 24px !important;
    height: 24px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    color: var(--primary) !important;
    transition: transform 0.3s ease !important;
}

.faturapro-landing .faturapro-faq-item.active .faturapro-faq-toggle {
    transform: rotate(180deg) !important;
}

.faturapro-landing .faturapro-faq-answer {
    max-height: 0 !important;
    overflow: hidden !important;
    padding: 0 1.5rem !important;
    transition: max-height 0.3s ease, padding 0.3s ease !important;
}

.faturapro-landing .faturapro-faq-item.active .faturapro-faq-answer {
    max-height: 500px !important;
    padding: 1.5rem !important;
}

.faturapro-landing .faturapro-faq-answer p {
    color: var(--text-secondary) !important;
    margin: 0 !important;
}

/* ========================================
   CTA Section - SCOPED
   ======================================== */

.faturapro-landing .faturapro-cta-section {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%) !important;
    color: white !important;
    text-align: center !important;
    padding: 4rem 0 !important;
    position: relative !important;
    overflow: hidden !important;
}

.faturapro-landing .faturapro-cta-section::before {
    content: '' !important;
    position: absolute !important;
    top: -50% !important;
    right: -10% !important;
    width: 500px !important;
    height: 500px !important;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%) !important;
    border-radius: 50% !important;
    pointer-events: none !important;
}

.faturapro-landing .faturapro-cta-content {
    position: relative !important;
    z-index: 2 !important;
}

.faturapro-landing .faturapro-cta-title {
    color: white !important;
    margin-bottom: 1rem !important;
}

.faturapro-landing .faturapro-cta-description {
    color: rgba(255, 255, 255, 0.9) !important;
    font-size: 14px !important;
    margin-bottom: 2rem !important;
    max-width: 600px !important;
    margin-left: auto !important;
    margin-right: auto !important;
}

/* ========================================
   Problem/Solution Section - SCOPED
   ======================================== */

.faturapro-landing .faturapro-problem-solution {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 3rem !important;
    align-items: center !important;
}

.faturapro-landing .faturapro-problem-box,
.faturapro-landing .faturapro-solution-box {
    padding: 2rem !important;
    border-radius: 1rem !important;
    border: 1px solid var(--border-color) !important;
}

.faturapro-landing .faturapro-problem-box {
    background: rgba(239, 68, 68, 0.05) !important;
    border-color: rgba(239, 68, 68, 0.2) !important;
}

.faturapro-landing .faturapro-solution-box {
    background: rgba(16, 185, 129, 0.05) !important;
    border-color: rgba(16, 185, 129, 0.2) !important;
}

.faturapro-landing .faturapro-problem-box h3 {
    color: #dc2626 !important;
    margin-bottom: 1rem !important;
}

.faturapro-landing .faturapro-solution-box h3 {
    color: var(--success) !important;
    margin-bottom: 1rem !important;
}

.faturapro-landing .faturapro-problem-list,
.faturapro-landing .faturapro-solution-list {
    list-style: none !important;
}

.faturapro-landing .faturapro-problem-list li,
.faturapro-landing .faturapro-solution-list li {
    margin-bottom: 0.75rem !important;
    display: flex !important;
    gap: 0.75rem !important;
    align-items: flex-start !important;
}

.faturapro-landing .faturapro-problem-list li::before {
    content: '✕' !important;
    color: #dc2626 !important;
    font-weight: bold !important;
    flex-shrink: 0 !important;
}

.faturapro-landing .faturapro-solution-list li::before {
    content: '✓' !important;
    color: var(--success) !important;
    font-weight: bold !important;
    flex-shrink: 0 !important;
}

/* ========================================
   Footer - SCOPED
   ======================================== */

.faturapro-landing .faturapro-footer {
    background: var(--text-primary) !important;
    color: white !important;
    padding: 3rem 0 1rem !important;
    border-top: 1px solid rgba(255, 255, 255, 0.1) !important;
}

.faturapro-landing .faturapro-footer-content {
    display: grid !important;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)) !important;
    gap: 2rem !important;
    margin-bottom: 2rem !important;
    padding-bottom: 2rem !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
}

.faturapro-landing .faturapro-footer-section h4 {
    color: white !important;
    margin-bottom: 1rem !important;
}

.faturapro-landing .faturapro-footer-section a {
    display: block !important;
    color: rgba(255, 255, 255, 0.7) !important;
    text-decoration: none !important;
    margin-bottom: 0.5rem !important;
    font-size: 1rem !important;
    transition: color 0.3s ease !important;
}

.faturapro-landing .faturapro-footer-section a:hover {
    color: var(--accent) !important;
}

.faturapro-landing .faturapro-footer-bottom {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    flex-wrap: wrap !important;
    gap: 1rem !important;
    color: rgba(255, 255, 255, 0.7) !important;
    font-size: 1rem !important;
}

.faturapro-landing .faturapro-social-links {
    display: flex !important;
    gap: 1rem !important;
}

.faturapro-landing .faturapro-social-links a {
    width: 40px !important;
    height: 40px !important;
    background: rgba(255, 255, 255, 0.1) !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    color: white !important;
    transition: all 0.3s ease !important;
    text-decoration: none !important;
}

.faturapro-landing .faturapro-social-links a:hover {
    background: var(--accent) !important;
    transform: translateY(-2px) !important;
}

/* ========================================
   Animations - SCOPED
   ======================================== */

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

@keyframes fadeInScale {
    from { opacity: 0 !important; transform: scale(0.95) !important; }
    to { opacity: 1 !important; transform: scale(1) !important; }
}

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

@keyframes slideDown {
    from { opacity: 0 !important; transform: translateY(-10px) !important; }
    to { opacity: 1 !important; transform: translateY(0) !important; }
}

@keyframes slideOutRight {
    from { opacity: 1 !important; transform: translateX(0) !important; }
    to { opacity: 0 !important; transform: translateX(100px) !important; }
}

.faturapro-landing .faturapro-feature-card {
    animation: fadeIn 0.6s ease forwards !important;
}

.faturapro-landing .faturapro-feature-card:nth-child(1) { animation-delay: 0s !important; }
.faturapro-landing .faturapro-feature-card:nth-child(2) { animation-delay: 0.1s !important; }
.faturapro-landing .faturapro-feature-card:nth-child(3) { animation-delay: 0.2s !important; }
.faturapro-landing .faturapro-feature-card:nth-child(4) { animation-delay: 0.3s !important; }
.faturapro-landing .faturapro-feature-card:nth-child(5) { animation-delay: 0.4s !important; }
.faturapro-landing .faturapro-feature-card:nth-child(6) { animation-delay: 0.5s !important; }
.faturapro-landing .faturapro-feature-card:nth-child(7) { animation-delay: 0.6s !important; }
.faturapro-landing .faturapro-feature-card:nth-child(8) { animation-delay: 0.7s !important; }

/* ========================================
   Status States - SCOPED
   ======================================== */

.faturapro-landing .faturapro-loading {
    opacity: 0.6 !important;
    pointer-events: none !important;
}

.faturapro-landing .hidden {
    display: none !important;
}

/* Keep language toggling reliable even inside highly specific selectors like footer links */
.faturapro-landing [data-lang-content].hidden {
    display: none !important;
}

.faturapro-landing .visible {
    display: block !important;
}

/* ========================================
   RTL Support - SCOPED
   ======================================== */

.faturapro-landing[dir="rtl"] {
    direction: rtl !important;
    text-align: right !important;
}

.faturapro-landing[dir="rtl"] .faturapro-flex-row {
    flex-direction: row-reverse !important;
}

.faturapro-landing[dir="rtl"] .faturapro-text-left {
    text-align: right !important;
}

.faturapro-landing[dir="rtl"] .faturapro-text-right {
    text-align: left !important;
}

/* ========================================
   Responsive - Tablet (768px and below)
   ======================================== */

@media (max-width: 768px) {
    .faturapro-landing .faturapro-container {
        padding: 0 1rem !important;
    }

    .faturapro-landing h1 {
        font-size: 2rem !important;
    }

    .faturapro-landing h2 {
        font-size: 1.5rem !important;
    }

    .faturapro-landing .faturapro-nav-buttons {
        flex-direction: column !important;
        width: 100% !important;
    }

    .faturapro-landing .faturapro-nav-buttons .faturapro-btn {
        width: 100% !important;
    }

    .faturapro-landing .faturapro-hero {
        padding: 2rem 0 !important;
    }

    .faturapro-landing .faturapro-hero-cta-group {
        flex-direction: column !important;
    }

    .faturapro-landing .faturapro-hero-cta-group .faturapro-btn {
        width: 100% !important;
    }

    .faturapro-landing .faturapro-hero-trust {
        gap: 1rem !important;
    }

    .faturapro-landing .faturapro-trust-section .faturapro-container {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        gap: 1rem !important;
    }

    .faturapro-landing .faturapro-section {
        padding: 2rem 0 !important;
    }

    .faturapro-landing .faturapro-hero-visual {
        height: 300px !important;
    }

    .faturapro-landing .faturapro-benefits {
        grid-template-columns: 1fr !important;
    }

    .faturapro-landing .faturapro-benefits-visual {
        height: 300px !important;
    }

    .faturapro-landing .faturapro-problem-solution {
        grid-template-columns: 1fr !important;
    }

    .faturapro-landing .faturapro-footer-bottom {
        flex-direction: column !important;
        text-align: center !important;
    }

    .faturapro-landing .faturapro-grid-2,
    .faturapro-landing .faturapro-grid-3,
    .faturapro-landing .faturapro-grid-4 {
        grid-template-columns: 1fr !important;
    }

    .faturapro-landing .faturapro-flex-row {
        flex-direction: column !important;
    }
}

/* ========================================
   Responsive - Mobile (480px and below)
   ======================================== */

@media (max-width: 480px) {
    .faturapro-landing .faturapro-btn {
        padding: 0.625rem 1.25rem !important;
        font-size: 0.9rem !important;
    }

    .faturapro-landing h1 {
        font-size: 1.5rem !important;
    }

    .faturapro-landing h2 {
        font-size: 1.25rem !important;
    }

    .faturapro-landing .faturapro-hero-subtitle {
        font-size: 1rem !important;
    }

    .faturapro-landing .faturapro-section {
        padding: 1.5rem 0 !important;
    }

    .faturapro-landing .faturapro-hero-visual {
        height: 250px !important;
    }

    .faturapro-landing .faturapro-benefit-item {
        gap: 0.75rem !important;
    }

    .faturapro-landing .faturapro-benefit-icon {
        width: 35px !important;
        height: 35px !important;
        font-size: 1.1rem !important;
    }

    .faturapro-landing .faturapro-footer-content {
        gap: 1.5rem !important;
    }

    .faturapro-landing .faturapro-trust-section .faturapro-container {
        grid-template-columns: 1fr !important;
        gap: 0.75rem !important;
    }
}
