/* ============================================
   LemFi Referral Code - Vanilla CSS
   Converted from React
   ============================================ */

/* CSS Reset & Base */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #1F2937;
    -webkit-font-smoothing: antialiased;
    background: #FFFFFF;
    transition: background-color 0.3s ease, color 0.3s ease;
    overflow-x: hidden;
    width: 100vw;
    max-width: 100vw;
    position: relative;
}

/* Dark Mode */
html.dark {
    color-scheme: dark;
}

html.dark body {
    background: #111827;
    color: #F3F4F6;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

@media (max-width: 768px) {
    .container { padding: 0 16px; }
}

@media (max-width: 480px) {
    .container { padding: 0 12px; }
}

/* Layout */
.min-h-screen {
    min-height: 100vh;
    width: 100%;
    overflow-x: hidden;
}

section {
    padding: 80px 0;
    width: 100%;
    max-width: 100vw;
    overflow-x: hidden;
    position: relative;
}

@media (max-width: 768px) {
    section { padding: 48px 0; }
}

@media (max-width: 480px) {
    section { padding: 32px 0; }
}

/* Header */
.header {
    position: sticky;
    top: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid #E5E7EB;
    z-index: 100;
    padding: 16px 0;
}

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

.logo {
    font-weight: 700;
    font-size: 1.1rem;
    color: #1F2937;
    display: flex;
    align-items: center;
}

.logo svg {
    margin-right: 8px;
}

/* Dark mode toggle */
.dark-mode-toggle {
    background: transparent;
    border: 2px solid #E5E7EB;
    border-radius: 8px;
    padding: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    color: #6B7280;
}

.dark-mode-toggle:hover {
    border-color: #10B981;
    color: #10B981;
    transform: scale(1.05);
}

html.dark .dark-mode-toggle {
    border-color: #374151;
    color: #D1D5DB;
}

/* Mobile nav actions - visible on tablet/mobile */
.mobile-nav-actions {
    display: none;
    gap: 12px;
    align-items: center;
}

@media (max-width: 968px) {
    .mobile-nav-actions { display: flex; }
    .nav .dark-mode-toggle { display: none; }
}

/* Navigation */
.nav {
    display: flex;
    gap: 24px;
    align-items: center;
}

.nav a {
    color: #6B7280;
    font-weight: 500;
    text-decoration: none;
    transition: color 0.2s;
}

.nav a:hover {
    color: #10B981;
}

@media (max-width: 968px) {
    .nav { display: none; }
}

/* Mobile nav toggle */
.mobile-nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

@media (max-width: 968px) {
    .mobile-nav-toggle { display: block; }
}

/* Mobile nav dropdown */
.mobile-nav {
    display: none;
    position: fixed;
    top: 65px;
    left: 0;
    right: 0;
    background: white;
    border-bottom: 1px solid #E5E7EB;
    padding: 20px;
    z-index: 99;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.mobile-nav.active {
    display: block;
}

.mobile-nav a {
    display: block;
    padding: 12px 0;
    color: #1F2937;
    font-weight: 500;
    border-bottom: 1px solid #E5E7EB;
    text-decoration: none;
}

.mobile-nav a:last-child {
    border-bottom: none;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.2s;
    text-decoration: none;
    white-space: nowrap;
}

.btn-primary {
    background: #10B981;
    color: white;
}

.btn-primary:hover {
    background: #059669;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
}

.btn-secondary {
    background: white;
    color: #10B981;
    border: 2px solid #10B981;
}

.btn-secondary:hover {
    background: #D1FAE5;
}

/* Hero Section */
.hero {
    padding: 100px 0 80px;
    background: linear-gradient(135deg, #F0FDF4 0%, #FFFFFF 100%);
    position: relative;
    overflow: hidden;
}

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

@media (max-width: 968px) {
    .hero { padding: 48px 0 32px; }
    .hero-content { grid-template-columns: 1fr; gap: 32px; }
}

.hero h1 {
    font-size: clamp(1.75rem, 5vw, 3.5rem);
    line-height: 1.2;
    margin-bottom: 1rem;
}

.hero .subtitle {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: #6B7280;
    margin-bottom: 32px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

@media (max-width: 768px) {
    .hero-buttons { flex-direction: column; width: 100%; }
    .hero-buttons .btn { width: 100%; justify-content: center; }
}

/* Code highlight - clickable */
.code-highlight {
    background: #D1FAE5;
    color: #059669;
    padding: 4px 8px;
    border-radius: 4px;
    font-weight: 700;
    font-family: 'Courier New', monospace;
    cursor: pointer;
    transition: all 0.2s;
    display: inline-block;
}

.code-highlight:hover {
    background: #10B981;
    color: white;
    transform: scale(1.05);
}

.bonus-highlight {
    display: inline-block;
    background: linear-gradient(135deg, #10B981 0%, #059669 100%);
    color: white;
    padding: 4px 12px;
    border-radius: 6px;
    font-weight: 700;
    font-size: 1.1em;
}

.stats-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(16, 185, 129, 0.1);
    border: 2px solid #10B981;
    padding: 12px 20px;
    border-radius: 50px;
    font-weight: 600;
    color: #059669;
    margin-top: 16px;
}

.hero-definition {
    padding: 24px;
    background: white;
    border-radius: 12px;
    border-left: 4px solid #10B981;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    margin-top: 24px;
}

.hero-definition h3 {
    font-size: 1.1rem;
    margin-bottom: 12px;
}

.hero-definition p {
    color: #6B7280;
    margin-bottom: 0;
}

.hero-graphic {
    position: relative;
    min-height: 400px;
    display: none;
    align-items: center;
    justify-content: center;
}

@media (min-width: 768px) {
    .hero-graphic { display: flex; }
}

@media (max-width: 968px) {
    .hero-graphic { min-height: 300px; }
}

/* Floating animation */
@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

.floating {
    animation: float 3s ease-in-out infinite;
}

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

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* Testimonials Section */
.testimonials-section {
    background: linear-gradient(135deg, #059669 0%, #10B981 100%);
    padding: 80px 0 40px;
    color: white;
    position: relative;
}

.testimonials-header {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.testimonials-header h2 {
    margin: 0;
    font-size: 2.5rem;
    color: white;
}

.testimonials-subtitle {
    font-size: 1.1rem;
    max-width: 650px;
    margin: 0 auto 48px;
    color: rgba(255, 255, 255, 0.95);
    text-align: center;
}

.testimonial-card {
    max-width: 900px;
    margin: 0 auto;
    padding: 32px 40px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
}

.testimonial-text {
    font-size: 1.25rem;
    font-style: italic;
    margin-bottom: 20px;
    line-height: 1.6;
    color: white;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

.testimonial-name {
    font-weight: 700;
    font-size: 1.1rem;
    color: white;
}

.testimonial-location {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
}

.testimonial-transfer {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.9rem;
    color: white;
}

.testimonial-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
}

.testimonial-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    transition: all 0.3s;
}

.testimonial-dot.active {
    background: white;
    width: 24px;
    border-radius: 4px;
}

.verified-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.2);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    margin-top: 16px;
}

/* Floating icons in testimonials */
.floating-icons {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    overflow: hidden;
}

/* Quick Summary */
.quick-summary {
    background: #10B981;
    color: white;
    padding: 40px 0;
    position: relative;
    overflow: hidden;
}

.quick-summary h2 {
    color: white;
    margin-bottom: 48px;
}

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

@media (max-width: 768px) {
    .summary-grid { grid-template-columns: 1fr; gap: 20px; }
}

.summary-step {
    text-align: center;
}

.summary-step .step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    font-weight: 700;
    margin-bottom: 16px;
}

.summary-step h3 {
    color: white;
    font-size: 1.25rem;
    margin-bottom: 8px;
}

.summary-step p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0;
}

.summary-code {
    background: rgba(255, 255, 255, 0.3) !important;
    color: white !important;
}

/* Circle decorations */
.circle-decoration {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    pointer-events: none;
}

.circle-decoration-1 {
    width: 300px;
    height: 300px;
    top: -100px;
    right: -50px;
}

.circle-decoration-2 {
    width: 200px;
    height: 200px;
    bottom: -50px;
    left: -30px;
}

/* Wave Divider */
.wave-divider {
    position: relative;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.wave-divider svg {
    position: relative;
    display: block;
    width: 100%;
    height: 60px;
}

.wave-divider-flip {
    transform: rotate(180deg);
}

/* Section with bg */
.section-with-bg {
    position: relative;
    overflow: hidden;
}

.section-with-bg .circle-decoration {
    background: linear-gradient(135deg, #D1FAE5 0%, #10B981 50%);
    opacity: 0.1;
}

/* How It Works - Steps */
.text-secondary {
    color: #6B7280;
    text-align: center;
    max-width: 700px;
    margin: 0 auto 40px;
}

h2 {
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    text-align: center;
    margin-bottom: 1rem;
}

h3 {
    text-align: center;
    margin-bottom: 24px;
}

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

.step-item {
    display: flex;
    gap: 20px;
    margin-bottom: 24px;
    padding: 20px;
    background: #F9FAFB;
    border-radius: 12px;
    border: 1px solid #E5E7EB;
}

.step-number-circle {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background: #10B981;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.25rem;
}

.step-content h3 {
    text-align: left;
    margin-bottom: 8px;
}

.step-content p {
    color: #6B7280;
    margin-bottom: 0;
}

.note {
    margin-top: 32px;
    padding: 20px;
    background: #D1FAE5;
    border-radius: 8px;
    border-left: 4px solid #10B981;
}

.note p {
    color: #6B7280;
    font-size: 0.95rem;
    margin-bottom: 0;
}

/* Countries */
.bg-surface {
    background: #F9FAFB;
}

.countries-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 16px;
    margin-top: 32px;
}

.country-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
    background: #F9FAFB;
    border-radius: 8px;
    border: 1px solid #E5E7EB;
    transition: all 0.2s;
}

.country-item:hover {
    border-color: #10B981;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.country-item span:last-child {
    font-weight: 500;
}

.country-item .flag {
    font-size: 28px;
    flex-shrink: 0;
}

/* Platforms Grid */
.platforms-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    max-width: 900px;
    margin: 0 auto;
}

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

/* Platform Card Enhanced */
.platform-card-enhanced {
    background: white;
    border-radius: 16px;
    padding: 32px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    border: 2px solid #F3F4F6;
    transition: all 0.3s ease;
}

.platform-card-enhanced:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(16, 185, 129, 0.15);
    border-color: #10B981;
}

.platform-header {
    text-align: center;
    margin-bottom: 24px;
}

.platform-logo {
    width: 80px;
    height: 80px;
    margin: 0 auto 16px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.platform-logo.ios {
    background: linear-gradient(135deg, #000000 0%, #434343 100%);
    color: white;
}

.platform-logo.android {
    background: linear-gradient(135deg, #3DDC84 0%, #07C160 100%);
    color: white;
}

.store-name {
    color: #6B7280;
    font-size: 0.95rem;
    margin: 0;
}

.highlight-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #D1FAE5 0%, #A7F3D0 100%);
    border: 2px solid #10B981;
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: 700;
    color: #059669;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.highlight-badge:hover {
    background: linear-gradient(135deg, #A7F3D0 0%, #6EE7B7 100%);
    transform: scale(1.05);
}

.platform-process {
    margin-bottom: 28px;
    margin-top: 20px;
}

.process-step {
    display: flex;
    gap: 16px;
    margin-bottom: 20px;
    align-items: flex-start;
}

.step-indicator {
    width: 36px;
    height: 36px;
    min-width: 36px;
    background: linear-gradient(135deg, #10B981 0%, #059669 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1rem;
}

.step-text strong {
    display: block;
    margin-bottom: 4px;
}

.step-text p {
    margin: 0;
    color: #6B7280;
    font-size: 0.9rem;
}

.platform-cta-button {
    width: 100%;
    background: linear-gradient(135deg, #10B981 0%, #059669 100%);
    color: white;
    border: none;
    padding: 16px 24px;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.platform-cta-button:hover {
    transform: translateY(-2px);
}

/* Benefits Grid */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 32px;
}

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

.benefit-card {
    padding: 24px;
    background: white;
    border-radius: 12px;
    border: 1px solid #E5E7EB;
    transition: all 0.2s;
}

.benefit-card:hover {
    border-color: #10B981;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    transform: translateY(-4px);
}

.benefit-icon {
    width: 56px;
    height: 56px;
    background: #D1FAE5;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: #10B981;
}

.benefit-card h3 {
    font-size: 1.25rem;
    margin-bottom: 12px;
    text-align: left;
}

.benefit-card p {
    color: #6B7280;
    margin-bottom: 0;
}

/* Keyword Section */
.keyword-variations {
    margin-top: 32px;
    padding: 32px;
    background: #F9FAFB;
    border-radius: 12px;
}

.keyword-variations h3 {
    text-align: center;
    margin-bottom: 20px;
}

.keyword-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 12px;
}

.keyword-item {
    padding: 12px 16px;
    background: white;
    border-radius: 8px;
    border: 1px solid #E5E7EB;
    font-weight: 500;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    transition: all 0.2s;
}

.keyword-item:hover {
    border-color: #10B981;
}

.keyword-item .code {
    color: #10B981;
    font-weight: 700;
}

.copy-btn-small {
    background: #10B981;
    color: white;
    border: none;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}

.copy-btn-small:hover {
    background: #059669;
}

/* Blog Section */
.blog-section {
    padding: 80px 20px;
    background: #FAFAFA;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
}

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

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

.blog-card {
    background: white;
    border-radius: 16px;
    padding: 28px;
    border: 2px solid #F3F4F6;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
}

.blog-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #10B981 0%, #059669 100%);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-4px);
    border-color: #10B981;
}

.blog-category {
    display: inline-block;
    background: #D1FAE5;
    color: #059669;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 16px;
}

.blog-title {
    font-size: 1.25rem;
    margin: 0 0 12px 0;
    color: #1F2937;
}

.blog-excerpt {
    color: #6B7280;
    margin: 0 0 20px 0;
    font-size: 0.95rem;
}

.blog-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 16px;
    padding-bottom: 16px;
    border-bottom: 1px solid #F3F4F6;
}

.blog-date, .blog-read-time {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
    color: #9CA3AF;
}

.blog-read-more {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #10B981;
    font-weight: 600;
}

/* Article Modal */
.article-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    padding: 20px;
    overflow-y: auto;
}

.article-modal-overlay.active {
    display: flex;
}

.article-modal {
    background: white;
    border-radius: 16px;
    max-width: 800px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
}

.close-article {
    position: sticky;
    top: 20px;
    right: 20px;
    float: right;
    background: white;
    border: 2px solid #F3F4F6;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s;
    z-index: 10;
}

.close-article:hover {
    background: #F3F4F6;
    transform: rotate(90deg);
}

.article-header {
    padding: 40px 40px 30px;
    border-bottom: 2px solid #F3F4F6;
}

.article-header h1 {
    font-size: 2rem;
    margin: 16px 0 20px;
}

.article-content {
    padding: 40px;
    color: #374151;
    line-height: 1.8;
}

.article-content h2 {
    font-size: 1.6rem;
    margin: 32px 0 16px;
    text-align: left;
}

.article-content h3 {
    font-size: 1.3rem;
    margin: 24px 0 12px;
    text-align: left;
}

.article-content p, .article-content ul, .article-content ol {
    margin: 16px 0;
}

.article-content strong {
    color: #10B981;
}

/* FAQ Section */
.faq-header {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.faq-header h2 {
    margin: 0 0 0 16px;
}

.faq-decorator {
    padding: 12px;
    border: 3px solid #10B981;
    border-radius: 20px;
    background: white;
}

.faq-icon-circle {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1) 0%, rgba(5, 150, 105, 0.15) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.faq-item {
    margin-bottom: 16px;
    border: 1px solid #E5E7EB;
    border-radius: 8px;
    overflow: hidden;
    background: white;
}

.faq-question {
    width: 100%;
    padding: 20px 24px;
    background: white;
    border: none;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    font-weight: 600;
    font-size: 1.05rem;
    color: #1F2937;
    transition: background 0.2s;
}

.faq-question:hover {
    background: #F9FAFB;
}

.faq-icon {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    transition: transform 0.2s;
}

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

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

.faq-answer-content {
    padding: 0 24px 20px;
    color: #6B7280;
}

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

/* Terms */
.terms-list ul {
    list-style: none;
    padding: 0;
}

.terms-list li {
    padding: 16px 20px;
    margin-bottom: 12px;
    background: #F9FAFB;
    border-radius: 8px;
    border-left: 4px solid #10B981;
}

/* Final CTA */
.final-cta {
    background: linear-gradient(135deg, #10B981 0%, #059669 100%);
    padding: 60px 0;
}

.cta-card {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    color: white;
}

.cta-card h2 {
    color: white;
    margin-bottom: 16px;
}

.cta-card p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 32px;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 24px;
}

.cta-buttons .btn-primary {
    background: white;
    color: #10B981;
}

.cta-buttons .btn-primary:hover {
    background: #F9FAFB;
}

.cta-code {
    background: rgba(255, 255, 255, 0.3) !important;
    color: white !important;
}

.cta-urgency {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0;
}

/* Footer */
.footer {
    background: #F9FAFB;
    padding: 40px 0;
    border-top: 1px solid #E5E7EB;
}

.footer-content {
    text-align: center;
    color: #6B7280;
}

.footer .disclaimer {
    max-width: 800px;
    margin: 0 auto 20px;
    padding: 20px;
    background: white;
    border-radius: 8px;
    border: 1px solid #E5E7EB;
}

/* Mobile Sticky Bar */
.mobile-sticky-bar {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: white;
    border-top: 1px solid #E5E7EB;
    padding: 16px 20px;
    z-index: 98;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.1);
}

.mobile-sticky-buttons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

@media (max-width: 768px) {
    .mobile-sticky-bar { display: block; }
    body { padding-bottom: 90px; }
}

/* Toast */
.toast {
    position: fixed;
    bottom: 120px;
    left: 50%;
    transform: translateX(-50%) translateY(100px);
    background: #1F2937;
    color: white;
    padding: 16px 32px;
    border-radius: 16px;
    font-weight: 600;
    z-index: 1000;
    opacity: 0;
    transition: all 0.3s ease;
    pointer-events: none;
}

.toast.show {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

@media (min-width: 769px) {
    .toast { bottom: 40px; }
}

/* Icon pulse */
@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.7; transform: scale(1.05); }
}

.icon-pulse {
    animation: pulse 2s ease-in-out infinite;
}

/* Dark mode overrides */
html.dark .header {
    background: rgba(17, 24, 39, 0.95);
    border-bottom-color: #374151;
}

html.dark .logo { color: #F3F4F6; }
html.dark .mobile-nav { background: #1F2937; border-bottom-color: #374151; }
html.dark .mobile-nav a { color: #F3F4F6; border-bottom-color: #374151; }
html.dark h1, html.dark h2, html.dark h3 { color: #F3F4F6; }
html.dark .hero { background: linear-gradient(135deg, #1F2937 0%, #111827 100%); }
html.dark .hero-definition { background: #1F2937; border-left-color: #10B981; }
html.dark .bg-surface { background: #111827; }
html.dark .benefit-card { background: #1F2937; border-color: #374151; }
html.dark .benefit-card:hover { border-color: #10B981; }
html.dark .faq-item { background: #1F2937; border-color: #374151; }
html.dark .faq-question { background: #1F2937; color: #F3F4F6; }
html.dark .faq-question:hover { background: #374151; }
html.dark .faq-answer-content { color: #D1D5DB; }
html.dark .step-item { background: #1F2937; border-color: #374151; }
html.dark .country-item { background: #1F2937; border-color: #374151; }
html.dark .country-item:hover { border-color: #10B981; }
html.dark .platform-card-enhanced { background: #1F2937; border-color: #374151; }
html.dark .platform-card-enhanced:hover { border-color: #10B981; }
html.dark .note { background: #1F2937; border-left-color: #10B981; }
html.dark .note p { color: #D1D5DB; }
html.dark .keyword-variations { background: #1F2937; }
html.dark .keyword-item { background: #374151; border-color: #4B5563; }
html.dark .terms-list li { background: #1F2937; border-left-color: #10B981; }
html.dark .footer { background: #1F2937; border-top-color: #374151; }
html.dark .footer .disclaimer { background: #1F2937; border-color: #374151; }
html.dark .mobile-sticky-bar { background: #1F2937; border-top-color: #374151; }
html.dark .btn-secondary { background: #1F2937; color: #10B981; border-color: #10B981; }
html.dark .btn-secondary:hover { background: #374151; }
html.dark .code-highlight { background: #1F2937; color: #10B981; }
html.dark .subtitle, html.dark .text-secondary { color: #D1D5DB; }
html.dark p { color: #D1D5DB; }
html.dark .blog-card { background: #1F2937; border-color: #374151; }
html.dark .blog-card:hover { border-color: #10B981; }
html.dark .article-modal { background: #1F2937; color: #F3F4F6; }
html.dark .article-content { color: #D1D5DB; }
html.dark .article-content h2, html.dark .article-content h3 { color: #F3F4F6; }
html.dark .toast { background: #F3F4F6; color: #111827; }
html.dark .testimonials-section { background: linear-gradient(135deg, #1f2937 0%, #111827 100%); }
html.dark .quick-summary { background: linear-gradient(135deg, #1f2937 0%, #111827 100%); }
html.dark .final-cta { background: linear-gradient(135deg, #1f2937 0%, #111827 100%); }
