﻿/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  color: #1a1a2e; background: #fff; line-height: 1.6; overflow-x: hidden;
}
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 12px 28px; border-radius: 12px; font-weight: 600; font-size: 15px;
  cursor: pointer; border: none; transition: all 0.25s ease;
}
.btn-primary { background: linear-gradient(135deg, #7c3aed, #a855f7); color: #fff; }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 25px rgba(124,58,237,0.3); }
.btn-secondary { background: #fff; color: #7c3aed; border: 2px solid #e2d5f5; }
.btn-secondary:hover { border-color: #7c3aed; transform: translateY(-2px); }
.btn-sm { padding: 8px 18px; font-size: 13px; border-radius: 8px; }
.btn-lg { padding: 16px 36px; font-size: 17px; }

/* ===== SECTION HEADER ===== */
.section-header { text-align: center; max-width: 700px; margin: 0 auto 50px; }
.section-header h2 { font-size: 2.2rem; font-weight: 800; color: #1a1a2e; margin-bottom: 12px; }
.section-header p { font-size: 1.1rem; color: #6b7280; }

/* ===== TOP BAR ===== */
.top-bar { background: linear-gradient(135deg, #1e1b4b, #312e81); color: #e0d7ff; padding: 10px 0; font-size: 13px; text-align: center; }
.top-bar strong { color: #fff; }

/* ===== HEADER ===== */
.header { position: sticky; top: 0; z-index: 1000; background: rgba(255,255,255,0.95); backdrop-filter: blur(12px); border-bottom: 1px solid #f0ecf9; }
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 70px; }
.logo { display: flex; align-items: center; gap: 8px; font-size: 1.3rem; font-weight: 800; }
.logo span { background: linear-gradient(135deg, #7c3aed, #a855f7); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.nav { display: flex; align-items: center; gap: 32px; }
.nav-list { display: flex; align-items: center; gap: 24px; }
.nav-link { font-size: 14px; font-weight: 500; color: #4b5563; transition: color 0.2s; }
.nav-link:hover { color: #7c3aed; }
.dropdown-trigger { position: relative; }
.dropdown { display: none; position: absolute; top: 100%; left: 0; margin-top: 8px; background: #fff; border-radius: 12px; box-shadow: 0 12px 40px rgba(0,0,0,0.1); padding: 12px; min-width: 220px; z-index: 100; }
.dropdown-trigger:hover .dropdown { display: block; }
.dropdown a { display: block; padding: 10px 14px; border-radius: 8px; font-size: 14px; color: #374151; transition: background 0.2s; }
.dropdown a:hover { background: #f5f3ff; color: #7c3aed; }
.nav-actions { display: flex; align-items: center; gap: 12px; }
.lang-select { padding: 6px 10px; border: 1px solid #e5e7eb; border-radius: 8px; font-size: 13px; background: #fff; cursor: pointer; }
.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
.hamburger span { width: 24px; height: 2.5px; background: #1a1a2e; border-radius: 2px; transition: 0.3s; }

/* ===== HERO ===== */
.hero { position: relative; min-height: 85vh; display: flex; align-items: center; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; background: linear-gradient(135deg, #0f0720 0%, #1a0a3e 30%, #2d1b69 60%, #1a1a2e 100%); z-index: 0; }
.hero-overlay { position: absolute; inset: 0; background: radial-gradient(ellipse at 80% 20%, rgba(124,58,237,0.15) 0%, transparent 50%), radial-gradient(ellipse at 20% 80%, rgba(168,85,247,0.1) 0%, transparent 50%); z-index: 1; }
.hero-container { position: relative; z-index: 2; display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; padding: 60px 20px; }
.hero-badge { display: inline-block; background: rgba(168,85,247,0.15); color: #c4a5ff; padding: 6px 16px; border-radius: 100px; font-size: 13px; font-weight: 600; margin-bottom: 20px; border: 1px solid rgba(168,85,247,0.25); }
.hero-title { font-size: 3.2rem; font-weight: 800; line-height: 1.2; color: #fff; margin-bottom: 16px; }
.gradient-text { background: linear-gradient(135deg, #a855f7, #ec4899, #f59e0b); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.hero-subtitle { font-size: 1.1rem; color: #b0a5c4; margin-bottom: 32px; max-width: 520px; }

.hero-options { display: flex; gap: 16px; margin-bottom: 32px; }
.hero-option-card { flex: 1; background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1); border-radius: 16px; padding: 20px; cursor: pointer; transition: all 0.3s ease; backdrop-filter: blur(4px); }
.hero-option-card:hover { background: rgba(168,85,247,0.12); border-color: rgba(168,85,247,0.3); transform: translateY(-3px); }
.hero-option-card .option-icon { font-size: 1.8rem; margin-bottom: 8px; }
.hero-option-card h3 { font-size: 1rem; font-weight: 700; color: #fff; margin-bottom: 6px; }
.hero-option-card p { font-size: 0.85rem; color: #a0a0b8; }
.option-cta { color: #a855f7; font-weight: 600; font-size: 0.85rem; display: inline-block; margin-top: 8px; }
.hero-option-divider { display: flex; align-items: center; color: rgba(255,255,255,0.3); font-weight: 700; font-size: 0.9rem; }

.hero-search-wrapper { margin-bottom: 24px; }
.search-label { color: #b0a5c4; font-size: 0.9rem; font-weight: 600; margin-bottom: 12px; }
.hero-search { display: flex; gap: 0; background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.12); border-radius: 14px; overflow: hidden; max-width: 560px; }
.search-input { flex: 1 1 0; min-width: 0; padding: 14px 14px; background: transparent; border: none; color: #fff; font-size: 14px; outline: none; }
.search-input::placeholder { color: rgba(255,255,255,0.35); }
.search-btn { border-radius: 0; padding: 14px 20px; font-size: 14px; flex: 0 0 auto; white-space: nowrap; }
.search-results { display: none; background: #fff; border-radius: 12px; box-shadow: 0 12px 40px rgba(0,0,0,0.2); max-width: 500px; margin-top: 8px; overflow: hidden; }
.search-results.show { display: block; }
.search-result-item { padding: 12px 16px; cursor: pointer; display: flex; align-items: center; gap: 12px; border-bottom: 1px solid #f3f4f6; transition: background 0.2s; }
.search-result-item:hover { background: #f5f3ff; }
.search-result-item:last-child { border: none; }

.hero-trust { display: flex; gap: 24px; flex-wrap: wrap; }
.hero-trust span { color: #8888a8; font-size: 13px; font-weight: 500; }

/* Phone Mockup */
.hero-visual { display: flex; justify-content: center; }
.phone-mockup { width: 260px; background: #111; border-radius: 30px; padding: 10px; box-shadow: 0 20px 80px rgba(0,0,0,0.5), 0 0 0 1px rgba(255,255,255,0.08); }
.phone-screen { background: #1a1a2e; border-radius: 22px; padding: 16px; min-height: 420px; }
.phone-header { font-size: 1rem; font-weight: 700; color: #fff; margin-bottom: 20px; text-align: center; padding-bottom: 12px; border-bottom: 1px solid rgba(255,255,255,0.08); }
.phone-app-row { display: flex; align-items: center; gap: 12px; padding: 10px 12px; background: rgba(255,255,255,0.04); border-radius: 10px; margin-bottom: 8px; }
.app-icon { width: 28px; height: 28px; border-radius: 7px; display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 14px; color: #fff; flex-shrink: 0; }
.w-icon { background: #25D366; } .g-icon { background: #4285F4; }
.i-icon { background: linear-gradient(135deg,#f58529,#dd2a7b,#8134af); } .m-icon { background: #34A853; }
.phone-app-row span:nth-child(2) { color: #d0d0e0; font-size: 13px; flex: 1; }
.p-check { color: #34d399; font-weight: 700; font-size: 14px; }
.phone-note { text-align: center; color: #a855f7; font-size: 12px; font-weight: 600; margin-top: 16px; padding: 8px; background: rgba(168,85,247,0.1); border-radius: 8px; }

/* ===== TRUST BANNER ===== */
.trust-banner { background: linear-gradient(90deg, #f5f3ff, #ede9fe, #f5f3ff); padding: 20px 0; border-top: 1px solid #e4d9ff; border-bottom: 1px solid #e4d9ff; }
.trust-inner { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px; }
.trust-stars { color: #f59e0b; font-size: 15px; }
.trust-stars strong { color: #1a1a2e; font-weight: 700; }
.trust-stars span { color: #6b7280; }
.trust-logos { display: flex; gap: 20px; flex-wrap: wrap; }
.trust-logos span { font-size: 13px; color: #374151; font-weight: 500; }
/* ===== PROBLEM SECTION ===== */
.problem-section { padding: 80px 0; background: #faf9ff; }
.problem-grid { display: grid; grid-template-columns: 1fr auto 1fr; gap: 24px; align-items: center; }
.problem-card { padding: 32px; border-radius: 20px; border: 2px solid; }
.problem-card--bad { background: #fef2f2; border-color: #fecaca; }
.problem-card--good { background: #f0fdf4; border-color: #bbf7d0; }
.problem-card h3 { font-size: 1.1rem; font-weight: 700; margin: 12px 0 16px; }
.problem-card p { font-size: 0.9rem; color: #4b5563; line-height: 1.7; }
.problem-icon { font-size: 2.5rem; }
.blocked-apps, .working-apps { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 16px; }
.blocked-apps span, .working-apps span { padding: 4px 12px; border-radius: 6px; font-size: 13px; font-weight: 500; }
.blocked-apps span { background: #fee2e2; color: #dc2626; }
.working-apps span { background: #dcfce7; color: #16a34a; }
.problem-vs { font-size: 1.5rem; font-weight: 800; color: #d1a3ff; background: rgba(168,85,247,0.1); width: 48px; height: 48px; border-radius: 50%; display: flex; align-items: center; justify-content: center; }

/* ===== HOW IT WORKS ===== */
.how-it-works { padding: 80px 0; }
.steps { display: flex; align-items: flex-start; justify-content: center; gap: 20px; }
.step { text-align: center; max-width: 260px; padding: 24px; }
.step-num { font-size: 2.5rem; font-weight: 800; color: rgba(168,85,247,0.15); line-height: 1; margin-bottom: 12px; }
.step-icon { font-size: 2.5rem; margin-bottom: 12px; }
.step h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 8px; }
.step p { font-size: 0.9rem; color: #6b7280; }
.step-arrow { font-size: 1.5rem; color: #d1a3ff; padding-top: 60px; }

/* ===== COMPARISON ===== */
.comparison { padding: 80px 0; background: #faf9ff; }
.comparison-table { max-width: 900px; margin: 0 auto; border-radius: 16px; overflow: hidden; border: 1px solid #e5e7eb; }
.comp-row { display: grid; grid-template-columns: 1.2fr 1fr 1fr 1fr; }
.comp-row:nth-child(even) { background: #f9f8ff; }
.comp-header { background: linear-gradient(135deg, #1e1b4b, #312e81); color: #fff; font-weight: 600; }
.comp-feature, .comp-option { padding: 14px 16px; font-size: 14px; }
.comp-feature { color: #374151; font-weight: 500; border-right: 1px solid #e5e7eb; }
.comp-option { text-align: center; border-right: 1px solid #e5e7eb; color: #4b5563; }
.comp-option:last-child { border: none; }
.comp-featured { background: rgba(168,85,247,0.06); color: #7c3aed !important; font-weight: 600; }
.comp-header .comp-option { border-color: rgba(255,255,255,0.1); }

/* ===== PLANS ===== */
.plans { padding: 80px 0; }
.plan-badge { display: inline-block; background: rgba(168,85,247,0.1); color: #7c3aed; padding: 4px 14px; border-radius: 100px; font-size: 13px; font-weight: 600; margin-bottom: 12px; }
.plan-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 20px; max-width: 800px; margin: 0 auto; }
.plan-card { background: #fff; border: 1px solid #e5e7eb; border-radius: 16px; padding: 24px; text-align: center; transition: all 0.25s ease; }
.plan-card:hover { border-color: #7c3aed; box-shadow: 0 8px 30px rgba(124,58,237,0.1); transform: translateY(-3px); }
.plan-card.featured { border-color: #7c3aed; background: linear-gradient(180deg, #f5f3ff, #fff); }
.plan-card .plan-days { font-size: 0.85rem; color: #6b7280; margin-bottom: 4px; }
.plan-card .plan-price { font-size: 1.8rem; font-weight: 800; color: #1a1a2e; margin: 8px 0; }
.plan-card .plan-gb { font-size: 0.85rem; color: #7c3aed; font-weight: 600; }
.plan-card .plan-features { margin: 16px 0; }
.plan-card .plan-features li { font-size: 13px; color: #4b5563; padding: 4px 0; }
.plan-card .btn { width: 100%; margin-top: 12px; }

/* ===== FEATURES ===== */
.features { padding: 80px 0; }
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.feature-card { background: #faf9ff; border: 1px solid #ede9fe; border-radius: 16px; padding: 28px; transition: all 0.25s ease; }
.feature-card:hover { border-color: #d1a3ff; transform: translateY(-2px); box-shadow: 0 8px 25px rgba(124,58,237,0.06); }
.feature-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: 8px; }
.feature-card p { font-size: 0.88rem; color: #6b7280; line-height: 1.7; }

/* ===== TESTIMONIALS ===== */
.testimonials { padding: 80px 0; background: #faf9ff; }
.testimonial-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testimonial-card { background: #fff; border: 1px solid #e5e7eb; border-radius: 16px; padding: 28px; transition: all 0.25s ease; }
.testimonial-card .stars { color: #f59e0b; font-size: 1.1rem; margin-bottom: 12px; }
.testimonial-card p { font-size: 0.9rem; color: #4b5563; font-style: italic; margin-bottom: 16px; line-height: 1.7; }
.t-author { display: flex; flex-direction: column; }
.t-author strong { font-size: 0.9rem; color: #1a1a2e; }
.t-author span { font-size: 0.8rem; color: #9ca3af; }

/* ===== APP BANNER ===== */
.app-banner-section { padding: 80px 0; }
.app-banner { background: linear-gradient(135deg, #bfebff -20%, #f9eef8 50%, #ffccb0 130%); border-radius: 24px; padding: 48px 60px; display: flex; align-items: center; justify-content: space-between; gap: 40px; }
.app-banner-content h2 { font-size: 1.6rem; font-weight: 700; margin-bottom: 12px; }
.app-banner-content p { color: #4b5563; margin-bottom: 24px; }
.app-buttons { display: flex; gap: 12px; flex-wrap: wrap; }
.store-btn { display: inline-flex; align-items: center; gap: 8px; padding: 12px 24px; border-radius: 12px; background: #1a1a2e; color: #fff; font-weight: 600; font-size: 14px; transition: all 0.25s ease; }
.store-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 20px rgba(0,0,0,0.15); }
.mini-phone { width: 180px; background: #111; border-radius: 24px; padding: 12px; }
.mini-header { color: #fff; font-weight: 700; font-size: 14px; text-align: center; margin-bottom: 12px; }
.mini-data { background: rgba(255,255,255,0.06); border-radius: 8px; padding: 10px; }
.mini-bar { height: 6px; background: rgba(255,255,255,0.1); border-radius: 3px; margin-bottom: 6px; }
.mini-bar div { height: 100%; background: #34d399; border-radius: 3px; }
.mini-data span { color: #b0a5c4; font-size: 12px; }
.mini-vpn-note { color: #34d399; font-size: 11px; text-align: center; margin-top: 8px; font-weight: 600; }

/* ===== FAQ ===== */
.faq { padding: 80px 0; background: #faf9ff; }
.faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.faq-item { background: #fff; border: 1px solid #e5e7eb; border-radius: 12px; overflow: hidden; }
.faq-item summary { display: flex; justify-content: space-between; align-items: center; padding: 16px 20px; cursor: pointer; font-weight: 600; font-size: 14px; list-style: none; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item .chevron { transition: transform 0.3s; font-size: 12px; color: #9ca3af; }
.faq-item[open] .chevron { transform: rotate(180deg); }
.faq-item p { padding: 0 20px 16px; font-size: 14px; color: #6b7280; line-height: 1.7; }

/* ===== CTA BANNER ===== */
.cta-banner { padding: 80px 0; background: linear-gradient(135deg, #0f0720, #1a0a3e, #2d1b69); }
.cta-inner { text-align: center; }
.cta-inner h2 { font-size: 2rem; font-weight: 800; color: #fff; margin-bottom: 12px; }
.cta-inner p { color: #b0a5c4; margin-bottom: 32px; font-size: 1.05rem; }
.cta-buttons { display: flex; gap: 16px; justify-content: center; margin-bottom: 24px; }
.cta-whatsapp { color: #a0a0b8 !important; font-size: 0.9rem !important; }
.cta-whatsapp strong { color: #34d399; }

/* ===== FOOTER ===== */
.footer { padding: 60px 0 30px; background: #0f0720; border-top: 1px solid rgba(255,255,255,0.06); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
.footer-brand h3 { color: #fff; font-size: 1.2rem; font-weight: 700; margin-bottom: 12px; }
.footer-brand p { color: #8888a8; font-size: 0.9rem; line-height: 1.7; }
.footer-links h4 { color: #fff; font-size: 0.9rem; font-weight: 600; margin-bottom: 16px; }
.footer-links a { display: block; color: #8888a8; font-size: 0.85rem; margin-bottom: 10px; transition: color 0.2s; }
.footer-links a:hover { color: #a855f7; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 24px; border-top: 1px solid rgba(255,255,255,0.06); }
.footer-bottom p { color: #666688; font-size: 0.85rem; }
.footer-payments { display: flex; gap: 16px; }
.footer-payments span { color: #8888a8; font-size: 0.8rem; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero-container { grid-template-columns: 1fr; text-align: center; }
  .hero-subtitle { margin: 0 auto 32px; }
  .hero-options { justify-content: center; }
  .hero-search { margin: 0 auto; }
  .hero-trust { justify-content: center; }
  .hero-visual { display: none; }
  .problem-grid { grid-template-columns: 1fr; }
  .problem-vs { margin: 0 auto; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonial-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .steps { flex-direction: column; align-items: center; }
  .step-arrow { transform: rotate(90deg); padding: 0; }
}
@media (max-width: 768px) {
  .hamburger { display: flex; }
  .nav { position: fixed; top: 0; right: -100%; width: 300px; height: 100vh; background: #fff; flex-direction: column; padding: 80px 24px 24px; box-shadow: -10px 0 40px rgba(0,0,0,0.1); transition: right 0.3s; z-index: 999; gap: 20px; align-items: flex-start; }
  .nav.open { right: 0; }
  .nav-list { flex-direction: column; align-items: flex-start; width: 100%; }
  .dropdown { position: static; box-shadow: none; padding: 8px 0 8px 16px; }
  .nav-actions { width: 100%; flex-wrap: wrap; }
  .hero-title { font-size: 2rem; }
  .hero-options { flex-direction: column; }
  .features-grid { grid-template-columns: 1fr; }
  .comp-row { min-width: 600px; }
  .faq-grid { grid-template-columns: 1fr; }
  .app-banner { flex-direction: column; text-align: center; padding: 32px 24px; }
  .app-buttons { justify-content: center; }
  .trust-inner { flex-direction: column; text-align: center; }
  .trust-logos { justify-content: center; }
  .section-header h2 { font-size: 1.6rem; }
  .footer-grid { grid-template-columns: 1fr; text-align: center; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .cta-buttons { flex-direction: column; align-items: center; }
}
@media (max-width: 480px) {
  .hero-title { font-size: 1.7rem; }
  .comp-feature, .comp-option { padding: 10px 8px; }
}

/* ===== SEARCH DAYS SELECTOR ===== */
.search-days {
  flex: 0 0 auto; padding: 14px 12px; background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.12);
  border-left: 1px solid rgba(255,255,255,0.08); color: #fff; font-size: 14px; outline: none;
  cursor: pointer; -webkit-appearance: none; appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23a855f7' stroke-width='2'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 12px center; padding-right: 36px;
}
.search-days option { background: #1a1a2e; color: #fff; }
.search-days:focus { border-color: rgba(168,85,247,0.4); }

/* ===== PLAN HIGHLIGHT ===== */
.plan-card.plan-highlight {
  border-color: #7c3aed !important; border-width: 3px !important;
  box-shadow: 0 0 0 4px rgba(124,58,237,0.15), 0 12px 40px rgba(124,58,237,0.2) !important;
  transform: translateY(-5px) scale(1.02); transition: all 0.4s ease;
  position: relative; z-index: 10;
}

/* ===== BLOG / ARTICLE ===== */
.article-page { padding: 40px 0 80px; background: #faf8ff; }
.article-container { max-width: 760px; }
.back-link { display: inline-block; color: #7c3aed; font-size: 14px; font-weight: 600; margin-bottom: 24px; transition: opacity 0.2s; }
.back-link:hover { opacity: 0.7; }
.article-title { font-size: 2.4rem; font-weight: 800; color: #1a1a2e; line-height: 1.25; margin-bottom: 12px; }
.article-meta { color: #6b7280; font-size: 14px; margin-bottom: 32px; padding-bottom: 20px; border-bottom: 1px solid #ede7fa; }
.article-content h2 { font-size: 1.6rem; font-weight: 700; color: #1a1a2e; margin: 36px 0 14px; }
.article-content h3 { font-size: 1.25rem; font-weight: 700; color: #1a1a2e; margin: 28px 0 10px; }
.article-content p { color: #374151; font-size: 1.05rem; line-height: 1.8; margin-bottom: 18px; }
.article-content ul, .article-content ol { margin: 0 0 18px 22px; color: #374151; font-size: 1.05rem; line-height: 1.8; }
.article-content li { margin-bottom: 6px; }
.article-content blockquote { border-left: 4px solid #a855f7; background: #f5f0ff; padding: 14px 20px; border-radius: 0 10px 10px 0; margin: 0 0 18px; color: #4c1d95; }
.article-content code { background: #f3f0ff; color: #7c3aed; padding: 2px 7px; border-radius: 5px; font-size: 0.92em; font-family: 'Courier New', monospace; }
.article-content pre { background: #1a1a2e; color: #e5e7eb; padding: 18px; border-radius: 12px; overflow-x: auto; margin-bottom: 18px; }
.article-content pre code { background: none; color: inherit; padding: 0; }
.article-content img { max-width: 100%; height: auto; border-radius: 12px; margin: 18px 0; }
.article-content hr { border: none; border-top: 1px solid #ede7fa; margin: 32px 0; }
.article-cta { text-align: center; margin-top: 50px; padding: 40px 24px; background: linear-gradient(135deg, #f5f0ff, #fdf4ff); border-radius: 20px; border: 1px solid #ede7fa; }
.article-cta h2 { font-size: 1.5rem; font-weight: 800; color: #1a1a2e; margin-bottom: 18px; }
.cta-whatsapp { margin-top: 16px; color: #6b7280; font-size: 14px; }

/* ===== BLOG LIST ===== */
.blog-list-section { padding: 60px 0 80px; background: #faf8ff; min-height: 50vh; }
.blog-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 24px; }
.blog-card { display: block; background: #fff; border-radius: 16px; overflow: hidden; border: 1px solid #ede7fa; transition: all 0.3s ease; text-decoration: none; }
.blog-card:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(124,58,237,0.12); border-color: #d9ccf8; }
.blog-card-body { padding: 24px; }
.blog-card-meta { color: #a855f7; font-size: 13px; font-weight: 600; margin-bottom: 10px; }
.blog-card-title { font-size: 1.25rem; font-weight: 700; color: #1a1a2e; line-height: 1.35; margin-bottom: 10px; }
.blog-card-excerpt { color: #6b7280; font-size: 0.95rem; line-height: 1.6; margin-bottom: 14px; }
.blog-card-cta { color: #7c3aed; font-size: 14px; font-weight: 600; }
.blog-empty { color: #6b7280; text-align: center; font-size: 1.1rem; padding: 60px 0; }
@media (max-width: 640px) { .article-title { font-size: 1.8rem; } .blog-grid { grid-template-columns: 1fr; } }
