﻿:root {
  --brand: #a278cf;
  --brand-dark: #8b5ebd;
  --brand-soft: #e5d9f2;
  --brand-pale: #f4effa;
  --bg-color: #fbf9fe;
  --text-main: #0f172a;
  --text-muted: #475569;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
body { font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif; background-color: var(--bg-color); color: var(--text-main); line-height: 1.6; overflow-x: hidden; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* Header */
.site-header { position: sticky; top: 0; background: rgba(255, 255, 255, 0.9); backdrop-filter: blur(10px); z-index: 50; border-bottom: 1px solid rgba(0,0,0,0.05); }
.navbar { display: flex; justify-content: space-between; align-items: center; padding: 15px 0; flex-wrap: wrap; gap: 15px; }
.brand { font-size: 1.5rem; font-weight: 900; color: var(--text-main); display: flex; align-items: center; gap: 12px; letter-spacing: -0.5px; }
.brand-logo { width: 40px; height: 40px; background: var(--brand) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M17.5 19C19.8 19 22 17.3 22 15c0-2.4-1.8-4.2-4-4.5C17.3 7 14.5 5 12 5c-3 0-5.5 2.2-6.5 5.5C3 10.5 1 12.3 1 15c0 2.2 2 4 4.5 4H17.5z'/%3E%3Cpath d='M9 11l6 6M15 11l-6 6'/%3E%3C/svg%3E") no-repeat center center; background-size: 70%; border-radius: 10px; display: inline-block; }
.nav-links { display: flex; gap: 20px; }
.nav-links a { color: var(--text-muted); text-decoration: none; font-weight: 600; transition: color 0.2s; white-space: nowrap; }
.nav-links a:hover { color: var(--brand); }

/* Hero */
.hero { padding: 100px 0 60px; text-align: center; }
.hero-pill { display: inline-block; background: white; border: 1px solid var(--brand-soft); color: var(--brand-dark); padding: 5px 15px; border-radius: 50px; font-size: 0.9rem; font-weight: 700; margin-bottom: 20px; }
.hero h1 { font-size: 3.5rem; font-weight: 900; line-height: 1.2; margin-bottom: 20px; letter-spacing: -1px; }
.hero p { font-size: 1.2rem; color: var(--text-muted); max-width: 700px; margin: 0 auto 40px; }
.cta-group { display: flex; justify-content: center; gap: 15px; flex-wrap: wrap; }

/* Buttons */
.cta, .btn { display: inline-block; padding: 15px 30px; background: var(--brand); color: white; text-decoration: none; border-radius: 12px; font-weight: bold; font-size: 1.1rem; transition: all 0.3s; box-shadow: 0 10px 25px rgba(162,120,207,0.3); text-align: center; border: none; cursor: pointer; }
.cta:hover, .btn:hover { background: var(--brand-dark); transform: translateY(-2px); }
.btn-outline { background: white; color: var(--text-main); border: 1px solid #e2e8f0; box-shadow: none; }
.btn-outline:hover { background: #f8fafc; border-color: var(--brand); color: var(--brand-dark); }

/* Sections */
.section { padding: 80px 0; }
.section-header { text-align: center; margin-bottom: 50px; }
.section-header p { color: var(--brand-dark); font-weight: 700; margin-bottom: 5px; font-size: 0.9rem; text-transform: uppercase; }
.section-header h2 { font-size: 2.2rem; font-weight: 900; }

/* Grid Cards */
.grid-3 { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; }
.card { background: white; border-radius: 20px; padding: 30px; box-shadow: 0 10px 30px rgba(0,0,0,0.03); border: 1px solid #f1f5f9; transition: transform 0.3s; }
.card:hover { transform: translateY(-5px); }

/* Pricing */
.pricing-card { text-align: center; position: relative; }
.pricing-card .badge { position: absolute; top: -12px; left: 50%; transform: translateX(-50%); background: var(--brand); color: white; padding: 4px 12px; border-radius: 20px; font-size: 0.8rem; font-weight: bold; }
.pricing-card h3 { font-size: 1.5rem; margin-bottom: 5px; }
.pricing-card .plan-name { color: var(--text-muted); font-size: 0.9rem; margin-bottom: 20px; }
.pricing-card .price { font-size: 3rem; font-weight: 900; color: var(--brand-dark); margin-bottom: 20px; }
.pricing-card .price span, .pricing-card .price small { font-size: 1rem; color: var(--text-muted); font-weight: normal; }
.pricing-card ul { list-style: none; margin-bottom: 30px; text-align: left; }
.pricing-card ul li { padding: 10px 0; border-bottom: 1px solid #f1f5f9; color: var(--text-muted); font-size: 0.95rem; }
.pricing-card ul li:last-child { border: none; }
.pricing-card .cta { width: 100%; padding: 12px; font-size: 1rem; }

/* Article Cards */
.article-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; max-width: 1000px; margin: 0 auto; }
.article-card { background: white; padding: 20px; border-radius: 15px; border: 1px solid #e2e8f0; display: block; text-decoration: none; color: var(--text-main); font-weight: 600; transition: all 0.2s; }
.article-card:hover { border-color: var(--brand); box-shadow: 0 5px 15px rgba(162,120,207,0.1); color: var(--brand-dark); }

/* Footer */
.site-footer { background: #0f172a; color: white; padding: 60px 0 30px; margin-top: 60px; }
.footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 40px; margin-bottom: 40px; }
.footer-col h4 { font-size: 1.1rem; margin-bottom: 20px; color: white; }
.footer-col a { display: block; color: #94a3b8; text-decoration: none; margin-bottom: 10px; transition: color 0.2s; }
.footer-col a:hover { color: white; }
.footer-bottom { border-top: 1px solid #1e293b; padding-top: 20px; text-align: center; color: #64748b; font-size: 0.9rem; }

/* Mobile */
@media (max-width: 768px) { .article-grid { grid-template-columns: 1fr; }
  .hero h1 { font-size: 2.5rem; }
  .navbar { flex-direction: column; gap: 15px; }
  .nav-links { flex-wrap: wrap; justify-content: center; }
  .cta-group { flex-direction: column; }
  .cta, .btn-outline { width: 100%; }
}
/* Hero Layout & Animations */
.hero-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; max-width: 1200px; margin: 0 auto; text-align: left; padding: 60px 20px; }
@media (max-width: 768px) { .article-grid { grid-template-columns: 1fr; } .hero-grid { grid-template-columns: 1fr; text-align: center; } }
.hero-visual { position: relative; animation: float 6s ease-in-out infinite; }
.hero-visual img { width: 100%; border-radius: 20px; box-shadow: 0 20px 40px rgba(162,120,207,0.2); }
@keyframes float { 0% { transform: translateY(0px); } 50% { transform: translateY(-20px); } 100% { transform: translateY(0px); } }

/* FAQ & Reviews */
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item { background: white; margin-bottom: 15px; border-radius: 10px; border: 1px solid #e2e8f0; overflow: hidden; }
.faq-item summary { padding: 20px; font-weight: 600; cursor: pointer; list-style: none; }
.faq-item p { padding: 0 20px 20px; color: var(--text-muted); }
.review-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 20px; }
.review-card { background: white; padding: 25px; border-radius: 15px; box-shadow: 0 5px 15px rgba(0,0,0,0.05); }
.star-rating { color: #f59e0b; margin-bottom: 10px; }
.pbn-links { text-align: center; margin-top: 20px; padding-top: 20px; border-top: 1px solid #1e293b; }
.pbn-links a { color: #a278cf !important; margin: 0 10px; font-weight: bold; }





/* Article Page Typography */
.article-content { max-width: 800px; margin: 0 auto; padding: 40px; background: white; border-radius: 15px; box-shadow: 0 10px 30px rgba(0,0,0,0.03); border: 1px solid #f1f5f9; }
@media (max-width: 768px) { .article-content { padding: 25px 15px; } }
.article-content h1 { font-size: 2.2rem; margin-bottom: 20px; color: var(--text-main); font-weight: 900; line-height: 1.3; text-align: center; }
.article-content h2 { font-size: 1.5rem; margin: 40px 0 20px; padding-bottom: 10px; border-bottom: 2px solid var(--brand-soft); color: var(--brand-dark); }
.article-content p { font-size: 1.1rem; line-height: 1.8; color: var(--text-muted); margin-bottom: 20px; }
.article-content strong { color: var(--text-main); }
.article-content a:not(.cta) { color: var(--brand); text-decoration: underline; }
.article-content ul { padding-left: 20px; margin-bottom: 20px; color: var(--text-muted); }
.article-content li { margin-bottom: 10px; line-height: 1.6; }
.article-cta-box { text-align: center; margin: 40px 0; padding: 40px 20px; background: linear-gradient(135deg, var(--brand-pale) 0%, white 100%); border-radius: 15px; border: 2px dashed var(--brand-soft); }
.article-cta-box h3 { margin-bottom: 15px; font-size: 1.4rem; color: var(--text-main); }

