/* =========================================
   BACKUP-INSPIRED CLEAN DESIGN SYSTEM
   Bringing back the original clean aesthetic
   ========================================= */

/* Reset excessive effects */
* {
    animation-duration: 0.3s !important;
    animation-timing-function: ease !important;
}

/* Clean Typography */
body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    color: #1e293b;
    line-height: 1.6;
    background: #ffffff;
}

/* Simple Headers */
h1, h2, h3, h4, h5, h6 {
    color: #0f172a;
    font-weight: 700;
    line-height: 1.2;
}

/* Clean Hero like backup */
.hero {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    min-height: 70vh;
    padding: 4rem 0 3rem;
}

.hero-content-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

/* Hero badge like backup */
.badge {
    display: inline-block;
    padding: 0.375rem 0.875rem;
    background: rgba(255, 255, 255, 0.15);
    color: white;
    font-size: 0.875rem;
    font-weight: 500;
    border-radius: 20px;
    margin-bottom: 1.5rem;
}

/* Clean buttons like backup */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.2s ease;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background: #3b82f6;
    color: white;
}

.btn-primary:hover {
    background: #2563eb;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.25);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
}

/* Clean cards */
.feature-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    text-align: center;
    transition: all 0.2s ease;
}

.feature-card:hover {
    border-color: #cbd5e1;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transform: translateY(-2px);
}

/* Simple icons */
.feature-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 1rem;
    color: #3b82f6;
}

/* Clean sections */
.section {
    padding: 4rem 0;
}

.bg-light {
    background: #f8fafc;
}

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

.section-title {
    font-size: 2rem;
    color: #0f172a;
    margin-bottom: 1rem;
}

.section-description {
    font-size: 1.125rem;
    color: #64748b;
    max-width: 600px;
    margin: 0 auto;
}

/* Grid layouts */
.grid {
    display: grid;
    gap: 1.5rem;
}

.grid-3 {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

/* Feature list like backup */
.feature-item {
    display: flex;
    gap: 1rem;
    padding: 1.5rem;
    background: white;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
    margin-bottom: 1rem;
}

.feature-check {
    width: 24px;
    height: 24px;
    color: #10b981;
    flex-shrink: 0;
}

.feature-content h3 {
    font-size: 1.125rem;
    color: #0f172a;
    margin-bottom: 0.5rem;
}

.feature-content p {
    font-size: 0.95rem;
    color: #64748b;
    margin: 0;
}

/* Clean FAQ */
.faq-item {
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    margin-bottom: 1rem;
    overflow: hidden;
}

.faq-question {
    padding: 1.25rem;
    font-size: 1.125rem;
    font-weight: 600;
    color: #0f172a;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0;
}

.faq-toggle {
    width: 20px;
    height: 20px;
    transition: transform 0.2s ease;
}

.faq-toggle.rotate {
    transform: rotate(180deg);
}

.faq-answer-wrapper {
    padding: 0 1.25rem 1.25rem;
}

.faq-answer {
    color: #475569;
    line-height: 1.6;
}

/* Clean footer */
.footer {
    background: #0f172a;
    color: #94a3b8;
    padding: 3rem 0 2rem;
    text-align: center;
}

/* Remove all excessive effects */
.hero::before,
.hero::after,
.parallax-layer,
.loading-screen,
.cursor-trail,
.scroll-indicator {
    display: none !important;
}

/* Simple animations only */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Disable complex animations */
*::before,
*::after {
    animation: none !important;
}

/* Clean mobile styles */
@media (max-width: 768px) {
    .hero {
        min-height: auto;
        padding: 3rem 0 2rem;
    }
    
    .hero-title {
        font-size: 1.75rem;
    }
    
    .section {
        padding: 3rem 0;
    }
    
    .grid-3 {
        grid-template-columns: 1fr;
    }
}

/* Override perfect addon styles */
.feature-card-visual {
    background: white !important;
    border: 1px solid #e2e8f0 !important;
    padding: 2rem !important;
    border-radius: 12px !important;
    box-shadow: none !important;
    backdrop-filter: none !important;
}

.feature-card-visual:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08) !important;
}

.feature-icon-wrapper {
    width: 64px !important;
    height: 64px !important;
    background: #eff6ff !important;
    border-radius: 12px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    margin: 0 auto 1.5rem !important;
    box-shadow: none !important;
}

.feature-icon-wrapper::before,
.feature-icon-wrapper::after {
    display: none !important;
}

/* Simple country highlight */
.country-highlight {
    color: #3b82f6;
    font-weight: 700;
}

/* Clean comparison table */
.comparison-table {
    background: white !important;
    border-radius: 12px !important;
    overflow: hidden !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05) !important;
}

/* Simple testimonial */
.testimonial-highlight {
    background: #fef3c7 !important;
    border-left: 4px solid #f59e0b !important;
    padding: 1.5rem !important;
    border-radius: 8px !important;
    box-shadow: none !important;
}