/* ===== Reset & Base ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif; background: #0f0f13; color: #e0e0e0; line-height: 1.6; min-height: 100vh; }
a { color: #6c5ce7; text-decoration: none; transition: color 0.3s; }
a:hover { color: #a29bfe; }
img { max-width: 100%; height: auto; }
ul { list-style: none; }
.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }

/* ===== Typography ===== */
h1, h2, h3, h4, h5, h6 { color: #fff; font-weight: 700; line-height: 1.2; margin-bottom: 0.75rem; }
h1 { font-size: 2.75rem; }
h2 { font-size: 2.125rem; text-align: center; margin-bottom: 2.5rem; }
h2::after { content: ''; display: block; width: 60px; height: 3px; background: linear-gradient(90deg, #6c5ce7, #00cec9); margin: 0.75rem auto 0; border-radius: 2px; }
h3 { font-size: 1.375rem; }
p { margin-bottom: 1rem; color: #b0b0b0; }

/* ===== Buttons ===== */
.btn { display: inline-flex; align-items: center; gap: 0.5rem; padding: 0.75rem 1.75rem; border-radius: 8px; font-weight: 600; font-size: 0.9375rem; cursor: pointer; border: 2px solid transparent; transition: all 0.3s; white-space: nowrap; text-align: center; }
.btn-lg { padding: 1rem 2.25rem; font-size: 1.0625rem; }
.btn-sm { padding: 0.5rem 1rem; font-size: 0.8125rem; }
.btn-primary { background: linear-gradient(135deg, #6c5ce7, #00cec9); color: #fff; border-color: transparent; }
.btn-primary:hover { background: linear-gradient(135deg, #5a4bd1, #00b8b3); color: #fff; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(108, 92, 231, 0.35); }
.btn-outline { background: transparent; color: #6c5ce7; border-color: #6c5ce7; }
.btn-outline:hover { background: #6c5ce7; color: #fff; }
.btn-success { background: linear-gradient(135deg, #00b894, #00cec9); color: #fff; }
.btn-success:hover { background: linear-gradient(135deg, #00a381, #00b8b3); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0, 184, 148, 0.35); }
.btn-danger { background: linear-gradient(135deg, #d63031, #e17055); color: #fff; }
.btn-danger:hover { background: linear-gradient(135deg, #c0392b, #d35400); transform: translateY(-2px); }

/* ===== Navbar ===== */
.navbar { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; background: rgba(15, 15, 19, 0.92); backdrop-filter: blur(12px); border-bottom: 1px solid rgba(108, 92, 231, 0.15); padding: 0.75rem 0; }
.navbar .container { display: flex; align-items: center; justify-content: space-between; }
.logo { font-size: 1.5rem; font-weight: 800; color: #fff; }
.logo span { color: #6c5ce7; }
.nav-links { display: flex; align-items: center; gap: 2rem; }
.nav-links a { color: #b0b0b0; font-weight: 500; font-size: 0.9375rem; position: relative; padding: 0.25rem 0; }
.nav-links a::after { content: ''; position: absolute; bottom: 0; left: 0; width: 0; height: 2px; background: #6c5ce7; transition: width 0.3s; }
.nav-links a:hover { color: #fff; }
.nav-links a:hover::after { width: 100%; }
.nav-buttons { display: flex; align-items: center; gap: 0.75rem; }
.mobile-toggle { display: none; background: none; border: none; color: #fff; font-size: 1.5rem; cursor: pointer; padding: 0.25rem; }

/* ===== Hero ===== */
.hero { padding: 8rem 0 4rem; background: linear-gradient(135deg, #0f0f13 0%, #1a1a2e 50%, #0f0f13 100%); position: relative; overflow: hidden; min-height: 85vh; display: flex; align-items: center; }
.hero::before { content: ''; position: absolute; top: -50%; left: -50%; width: 200%; height: 200%; background: radial-gradient(circle at 70% 30%, rgba(108, 92, 231, 0.08) 0%, transparent 50%), radial-gradient(circle at 30% 70%, rgba(0, 206, 201, 0.06) 0%, transparent 50%); pointer-events: none; }
.hero .container { position: relative; z-index: 1; }
.hero-content { max-width: 680px; text-align: center; margin: 0 auto 3rem; }
.hero-content h1 { font-size: 3rem; margin-bottom: 1.25rem; background: linear-gradient(135deg, #fff 0%, #a29bfe 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.hero-content p { font-size: 1.125rem; color: #999; max-width: 540px; margin: 0 auto 2rem; }
.hero-buttons { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.hero-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; max-width: 900px; margin: 0 auto; }
.stat { text-align: center; padding: 1.5rem; background: rgba(255, 255, 255, 0.03); border-radius: 12px; border: 1px solid rgba(108, 92, 231, 0.12); }
.stat-number { display: block; font-size: 1.75rem; font-weight: 800; color: #fff; margin-bottom: 0.25rem; }
.stat-label { font-size: 0.875rem; color: #888; }

/* ===== Sections ===== */
section { padding: 5rem 0; }
section:nth-child(even) { background: rgba(255, 255, 255, 0.015); }

/* ===== Features Grid ===== */
.features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1.5rem; }
.feature-card { background: rgba(255, 255, 255, 0.03); border: 1px solid rgba(255, 255, 255, 0.06); border-radius: 12px; padding: 2rem; transition: all 0.3s; }
.feature-card:hover { border-color: rgba(108, 92, 231, 0.3); transform: translateY(-4px); box-shadow: 0 12px 32px rgba(108, 92, 231, 0.12); }
.feature-icon { font-size: 2.5rem; margin-bottom: 1rem; }
.feature-card h3 { margin-bottom: 0.5rem; }
.feature-card p { font-size: 0.9375rem; color: #999; }

/* ===== Testimonial Cards ===== */
.testimonial-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 1.5rem; }
.testimonial-slider { overflow: hidden; position: relative; }
.testimonial-slider-track { display: flex; transition: transform 0.5s ease; }
.testimonial-card { background: rgba(255, 255, 255, 0.03); border: 1px solid rgba(255, 255, 255, 0.06); border-radius: 12px; padding: 2rem; flex-shrink: 0; }
.testimonial-card .testimonial-stars { color: #f9ca24; font-size: 1.125rem; margin-bottom: 0.75rem; }
.testimonial-card p { font-style: italic; font-size: 0.9375rem; color: #ccc; }
.testimonial-author { display: flex; flex-direction: column; margin-top: 1rem; padding-top: 1rem; border-top: 1px solid rgba(255, 255, 255, 0.06); }
.testimonial-author strong { color: #fff; font-size: 0.9375rem; }
.testimonial-author span { font-size: 0.8125rem; color: #6c5ce7; }
.slider-controls { display: flex; justify-content: center; gap: 1rem; margin-top: 2rem; }
.slider-btn { background: rgba(108, 92, 231, 0.15); border: 1px solid rgba(108, 92, 231, 0.25); color: #fff; width: 44px; height: 44px; border-radius: 50%; cursor: pointer; font-size: 1.125rem; transition: all 0.3s; display: flex; align-items: center; justify-content: center; }
.slider-btn:hover { background: #6c5ce7; }

/* ===== Blog Cards ===== */
.blog-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 1.5rem; }
.blog-card { background: rgba(255, 255, 255, 0.03); border: 1px solid rgba(255, 255, 255, 0.06); border-radius: 12px; padding: 2rem; transition: all 0.3s; }
.blog-card:hover { transform: translateY(-4px); border-color: rgba(108, 92, 231, 0.25); }
.blog-card h3 { margin-bottom: 0.5rem; }
.blog-card h3 a { color: #fff; }
.blog-card h3 a:hover { color: #6c5ce7; }
.blog-excerpt { font-size: 0.9375rem; color: #999; margin-bottom: 0.75rem; }
.blog-meta { display: flex; gap: 1rem; font-size: 0.8125rem; color: #666; }
.blog-date { font-size: 0.8125rem; color: #666; }

/* ===== CTA ===== */
.cta { text-align: center; background: linear-gradient(135deg, rgba(108, 92, 231, 0.1) 0%, rgba(0, 206, 201, 0.05) 100%); border-top: 1px solid rgba(108, 92, 231, 0.12); border-bottom: 1px solid rgba(108, 92, 231, 0.12); }
.cta h2 { font-size: 2.25rem; margin-bottom: 1rem; }
.cta p { font-size: 1.125rem; margin-bottom: 2rem; }
.cta .btn { margin: 0 auto; }

/* ===== Page Header ===== */
.page-header { padding: 8rem 0 3rem; text-align: center; background: linear-gradient(135deg, #0f0f13, #1a1a2e); }
.page-header h1 { margin-bottom: 0.5rem; }
.page-header p { color: #888; max-width: 600px; margin: 0 auto; }
.breadcrumb { display: flex; justify-content: center; gap: 0.5rem; font-size: 0.875rem; color: #666; margin-bottom: 1rem; }
.breadcrumb a { color: #6c5ce7; }

/* ===== Products ===== */
.products-header { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1rem; margin-bottom: 2rem; padding-bottom: 1.5rem; border-bottom: 1px solid rgba(255, 255, 255, 0.06); }
.products-header h2 { margin-bottom: 0; }
.products-header h2::after { display: none; }
.filter-bar { display: flex; flex-wrap: wrap; gap: 1rem; align-items: center; }
.filter-bar select, .filter-bar input { background: rgba(255, 255, 255, 0.06); border: 1px solid rgba(255, 255, 255, 0.1); color: #e0e0e0; padding: 0.625rem 1rem; border-radius: 8px; font-size: 0.875rem; min-width: 160px; }
.filter-bar select:focus, .filter-bar input:focus { outline: none; border-color: #6c5ce7; }
.filter-bar select option { background: #1a1a2e; }
.search-input { min-width: 220px; }
.product-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 1.5rem; }
.product-card { background: rgba(255, 255, 255, 0.03); border: 1px solid rgba(255, 255, 255, 0.06); border-radius: 12px; overflow: hidden; transition: all 0.3s; }
.product-card:hover { transform: translateY(-4px); border-color: rgba(108, 92, 231, 0.25); box-shadow: 0 12px 32px rgba(108, 92, 231, 0.12); }
.product-image { height: 200px; background: linear-gradient(135deg, #1a1a2e, #2d2d44); display: flex; align-items: center; justify-content: center; position: relative; }
.product-image img { width: 100%; height: 100%; object-fit: cover; }
.product-badge { position: absolute; top: 0.75rem; right: 0.75rem; background: #6c5ce7; color: #fff; padding: 0.25rem 0.75rem; border-radius: 20px; font-size: 0.75rem; font-weight: 600; }
.product-body { padding: 1.5rem; }
.product-body h3 { margin-bottom: 0.5rem; font-size: 1.125rem; }
.product-body h3 a { color: #fff; }
.product-body h3 a:hover { color: #6c5ce7; }
.product-body p { font-size: 0.875rem; color: #999; margin-bottom: 0; }
.product-footer { display: flex; align-items: center; justify-content: space-between; padding: 1rem 1.5rem; border-top: 1px solid rgba(255, 255, 255, 0.06); }
.product-price { font-size: 1.25rem; font-weight: 700; color: #6c5ce7; }
.product-pv { font-size: 0.8125rem; color: #666; }
.product-rating { font-size: 0.8125rem; color: #f9ca24; }

/* ===== Product Detail ===== */
.product-detail-wrapper { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: start; }
.product-gallery { background: linear-gradient(135deg, #1a1a2e, #2d2d44); border-radius: 12px; height: 400px; display: flex; align-items: center; justify-content: center; overflow: hidden; }
.product-info h1 { font-size: 2rem; }
.product-meta { display: flex; gap: 1.5rem; flex-wrap: wrap; margin: 1rem 0; font-size: 0.875rem; color: #888; }
.product-meta span { display: flex; align-items: center; gap: 0.375rem; }
.product-price-lg { font-size: 2.5rem; font-weight: 800; color: #6c5ce7; margin: 1rem 0; }
.product-variants { display: flex; gap: 0.75rem; margin: 1.5rem 0; }
.variant-btn { padding: 0.5rem 1.25rem; border: 1px solid rgba(255, 255, 255, 0.12); border-radius: 8px; background: transparent; color: #e0e0e0; cursor: pointer; font-size: 0.875rem; transition: all 0.3s; }
.variant-btn:hover, .variant-btn.active { border-color: #6c5ce7; background: rgba(108, 92, 231, 0.15); }
.product-description { margin: 1.5rem 0; }
.product-description h2 { text-align: left; font-size: 1.25rem; }
.product-description h2::after { margin-left: 0; }
.reviews-section { margin-top: 3rem; }
.review-card { background: rgba(255, 255, 255, 0.03); border: 1px solid rgba(255, 255, 255, 0.06); border-radius: 12px; padding: 1.5rem; margin-bottom: 1rem; }

/* ===== Pricing ===== */
.pricing-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.5rem; align-items: start; }
.pricing-card { background: rgba(255, 255, 255, 0.03); border: 1px solid rgba(255, 255, 255, 0.06); border-radius: 12px; padding: 2.5rem 2rem; text-align: center; transition: all 0.3s; }
.pricing-card:hover { transform: translateY(-4px); border-color: rgba(108, 92, 231, 0.25); }
.pricing-card.popular { border-color: #6c5ce7; box-shadow: 0 8px 32px rgba(108, 92, 231, 0.2); position: relative; }
.pricing-card.popular::before { content: 'Most Popular'; position: absolute; top: -12px; left: 50%; transform: translateX(-50%); background: linear-gradient(135deg, #6c5ce7, #00cec9); color: #fff; padding: 0.25rem 1.25rem; border-radius: 20px; font-size: 0.75rem; font-weight: 600; }
.pricing-name { font-size: 1.125rem; color: #888; margin-bottom: 0.5rem; }
.pricing-price { font-size: 2.75rem; font-weight: 800; color: #fff; margin-bottom: 0.25rem; }
.pricing-price span { font-size: 1rem; color: #888; font-weight: 400; }
.pricing-pv { font-size: 0.875rem; color: #6c5ce7; margin-bottom: 1.5rem; }
.pricing-features { text-align: left; margin: 1.5rem 0; padding: 0; }
.pricing-features li { padding: 0.625rem 0; border-bottom: 1px solid rgba(255, 255, 255, 0.04); display: flex; align-items: center; gap: 0.5rem; font-size: 0.9375rem; color: #ccc; }
.pricing-features li::before { content: '\2713'; color: #00b894; font-weight: 700; }
.pricing-billing { text-align: center; margin-bottom: 2rem; }
.billing-toggle { display: inline-flex; background: rgba(255, 255, 255, 0.06); border-radius: 30px; padding: 0.25rem; gap: 0.25rem; }
.billing-toggle button { background: transparent; border: none; color: #888; padding: 0.5rem 1.5rem; border-radius: 30px; cursor: pointer; font-size: 0.875rem; font-weight: 500; transition: all 0.3s; }
.billing-toggle button.active { background: #6c5ce7; color: #fff; }
.save-badge { display: inline-block; background: rgba(0, 206, 201, 0.15); color: #00cec9; padding: 0.125rem 0.5rem; border-radius: 4px; font-size: 0.75rem; margin-left: 0.375rem; }

/* ===== Compensation ===== */
.comp-hero { text-align: center; }
.comp-plan-img { background: linear-gradient(135deg, #1a1a2e, #2d2d44); border-radius: 12px; padding: 3rem; margin: 2rem 0; text-align: center; }
.income-streams { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.5rem; }
.income-card { background: rgba(255, 255, 255, 0.03); border: 1px solid rgba(255, 255, 255, 0.06); border-radius: 12px; padding: 2rem; text-align: center; transition: all 0.3s; }
.income-card:hover { border-color: rgba(108, 92, 231, 0.3); transform: translateY(-4px); }

/* ===== FAQ ===== */
.faq-categories { display: flex; gap: 0.75rem; justify-content: center; flex-wrap: wrap; margin-bottom: 2.5rem; }
.faq-cat-btn { padding: 0.5rem 1.25rem; border: 1px solid rgba(255, 255, 255, 0.1); border-radius: 30px; background: transparent; color: #b0b0b0; cursor: pointer; font-size: 0.875rem; font-weight: 500; transition: all 0.3s; }
.faq-cat-btn:hover, .faq-cat-btn.active { background: #6c5ce7; color: #fff; border-color: #6c5ce7; }
.faq-item { background: rgba(255, 255, 255, 0.02); border: 1px solid rgba(255, 255, 255, 0.06); border-radius: 12px; margin-bottom: 1rem; overflow: hidden; }
.faq-question { width: 100%; padding: 1.25rem 1.5rem; background: none; border: none; color: #fff; font-size: 1rem; font-weight: 500; text-align: left; cursor: pointer; display: flex; justify-content: space-between; align-items: center; transition: background 0.3s; }
.faq-question:hover { background: rgba(255, 255, 255, 0.02); }
.faq-question .faq-icon { font-size: 1.25rem; transition: transform 0.3s; color: #6c5ce7; }
.faq-question.open .faq-icon { transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; }
.faq-answer-inner { padding: 0 1.5rem 1.25rem; color: #b0b0b0; font-size: 0.9375rem; line-height: 1.7; }

/* ===== Contact ===== */
.contact-wrapper { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; }
.contact-info { display: flex; flex-direction: column; gap: 1.5rem; }
.contact-detail { display: flex; align-items: flex-start; gap: 1rem; }
.contact-detail .icon { width: 44px; height: 44px; background: rgba(108, 92, 231, 0.12); border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 1.25rem; flex-shrink: 0; }
.contact-detail h4 { margin-bottom: 0.25rem; }
.contact-detail p { font-size: 0.875rem; color: #888; }
.contact-form { display: flex; flex-direction: column; gap: 1.25rem; }
.contact-form input, .contact-form textarea, .contact-form select { background: rgba(255, 255, 255, 0.06); border: 1px solid rgba(255, 255, 255, 0.1); color: #e0e0e0; padding: 0.75rem 1rem; border-radius: 8px; font-size: 0.9375rem; font-family: inherit; transition: border-color 0.3s; }
.contact-form input:focus, .contact-form textarea:focus, .contact-form select:focus { outline: none; border-color: #6c5ce7; }
.contact-form textarea { min-height: 140px; resize: vertical; }
.contact-form .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.success-message { background: rgba(0, 184, 148, 0.12); border: 1px solid rgba(0, 184, 148, 0.25); border-radius: 12px; padding: 1.5rem; text-align: center; }

/* ===== Blog Detail / Sidebar ===== */
.blog-layout { display: grid; grid-template-columns: 1fr 320px; gap: 3rem; }
.sidebar-card { background: rgba(255, 255, 255, 0.03); border: 1px solid rgba(255, 255, 255, 0.06); border-radius: 12px; padding: 1.5rem; margin-bottom: 1.5rem; }
.sidebar-card h3 { margin-bottom: 1rem; font-size: 1.125rem; }
.sidebar-card h3::after { content: ''; display: block; width: 40px; height: 2px; background: #6c5ce7; margin-top: 0.5rem; border-radius: 2px; }
.sidebar-posts li { padding: 0.75rem 0; border-bottom: 1px solid rgba(255, 255, 255, 0.04); }
.sidebar-posts li:last-child { border-bottom: none; }
.sidebar-posts a { color: #ccc; font-size: 0.9375rem; }
.sidebar-posts a:hover { color: #6c5ce7; }
.tag-cloud { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.tag { padding: 0.375rem 0.875rem; background: rgba(108, 92, 231, 0.1); border: 1px solid rgba(108, 92, 231, 0.15); border-radius: 20px; font-size: 0.8125rem; color: #b0b0b0; transition: all 0.3s; display: inline-block; }
.tag:hover { background: #6c5ce7; color: #fff; }
.blog-categories li { padding: 0.625rem 0; border-bottom: 1px solid rgba(255, 255, 255, 0.04); display: flex; justify-content: space-between; }
.blog-categories a { color: #ccc; }
.blog-categories a:hover { color: #6c5ce7; }
.blog-categories .count { color: #666; font-size: 0.875rem; }
.blog-post-content { line-height: 1.8; }
.blog-post-content h2 { text-align: left; margin-top: 2rem; }
.blog-post-content h2::after { margin-left: 0; }
.blog-post-content ul, .blog-post-content ol { margin-bottom: 1rem; padding-left: 1.5rem; }
.blog-post-content li { margin-bottom: 0.5rem; color: #b0b0b0; }

/* ===== Events ===== */
.event-filters { display: flex; gap: 0.75rem; justify-content: center; flex-wrap: wrap; margin-bottom: 2rem; }
.event-filter-btn { padding: 0.5rem 1.25rem; border: 1px solid rgba(255, 255, 255, 0.1); border-radius: 30px; background: transparent; color: #b0b0b0; cursor: pointer; font-size: 0.875rem; transition: all 0.3s; }
.event-filter-btn:hover, .event-filter-btn.active { background: #6c5ce7; color: #fff; border-color: #6c5ce7; }
.event-card { background: rgba(255, 255, 255, 0.03); border: 1px solid rgba(255, 255, 255, 0.06); border-radius: 12px; display: grid; grid-template-columns: auto 1fr auto; gap: 1.5rem; padding: 1.5rem; margin-bottom: 1rem; align-items: center; transition: all 0.3s; }
.event-card:hover { border-color: rgba(108, 92, 231, 0.25); }
.event-date-box { text-align: center; min-width: 70px; }
.event-date-box .month { display: block; font-size: 0.75rem; color: #6c5ce7; text-transform: uppercase; font-weight: 600; }
.event-date-box .day { display: block; font-size: 1.75rem; font-weight: 800; color: #fff; line-height: 1; }
.event-meta { display: flex; gap: 1rem; flex-wrap: wrap; font-size: 0.8125rem; color: #888; margin: 0.5rem 0; }
.event-meta span { display: flex; align-items: center; gap: 0.25rem; }
.event-type { display: inline-block; background: rgba(108, 92, 231, 0.12); color: #6c5ce7; padding: 0.125rem 0.75rem; border-radius: 20px; font-size: 0.75rem; font-weight: 500; }

/* ===== Event Detail ===== */
.event-detail-header { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; margin-bottom: 3rem; }
.event-detail-info { display: flex; flex-direction: column; gap: 1rem; }
.event-detail-info h1 { font-size: 2rem; }
.event-detail-meta { display: flex; flex-wrap: wrap; gap: 1.5rem; margin: 1rem 0; }
.event-detail-meta .meta-item { display: flex; align-items: center; gap: 0.5rem; font-size: 0.9375rem; color: #b0b0b0; }
.schedule-list { margin: 1.5rem 0; }
.schedule-item { display: flex; gap: 1rem; padding: 0.75rem 1rem; border-left: 2px solid rgba(108, 92, 231, 0.25); margin-bottom: 0.5rem; }
.schedule-item .time { font-weight: 600; color: #6c5ce7; min-width: 100px; font-size: 0.875rem; }
.schedule-item .title { color: #e0e0e0; }

/* ===== Policy Pages ===== */
.policy-content { max-width: 800px; margin: 0 auto; }
.policy-content h2 { text-align: left; margin-top: 2rem; }
.policy-content h2::after { margin-left: 0; }
.policy-content h3 { margin-top: 1.5rem; }
.policy-content ul, .policy-content ol { padding-left: 1.5rem; margin-bottom: 1rem; }
.policy-content li { margin-bottom: 0.5rem; color: #b0b0b0; }
.policy-content p { margin-bottom: 1rem; }
.last-updated { font-size: 0.875rem; color: #666; font-style: italic; margin-bottom: 2rem; display: block; }

/* ===== Opportunity ===== */
.opportunity-steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 1.5rem; counter-reset: step; }
.opportunity-step { background: rgba(255, 255, 255, 0.03); border: 1px solid rgba(255, 255, 255, 0.06); border-radius: 12px; padding: 2rem; text-align: center; position: relative; }
.opportunity-step .step-number { width: 48px; height: 48px; background: linear-gradient(135deg, #6c5ce7, #00cec9); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 1rem; font-size: 1.25rem; font-weight: 800; color: #fff; }

/* ===== Pagination ===== */
.pagination { display: flex; justify-content: center; gap: 0.5rem; margin-top: 2rem; }
.pagination a, .pagination span { padding: 0.5rem 1rem; border: 1px solid rgba(255, 255, 255, 0.1); border-radius: 8px; color: #b0b0b0; font-size: 0.875rem; transition: all 0.3s; }
.pagination a:hover { background: #6c5ce7; color: #fff; border-color: #6c5ce7; }
.pagination .active { background: #6c5ce7; color: #fff; border-color: #6c5ce7; }

/* ===== Empty State ===== */
.empty-state { text-align: center; padding: 3rem; }
.empty-state .empty-icon { font-size: 3rem; margin-bottom: 1rem; opacity: 0.5; }
.empty-state h3 { color: #888; }
.empty-state p { color: #666; }

/* ===== Footer ===== */
.footer { background: #0a0a0e; border-top: 1px solid rgba(255, 255, 255, 0.04); padding: 4rem 0 2rem; }
.footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 2rem; margin-bottom: 2rem; }
.footer-col h4 { color: #fff; margin-bottom: 1rem; font-size: 1rem; }
.footer-col ul li { margin-bottom: 0.5rem; }
.footer-col ul a { color: #888; font-size: 0.875rem; }
.footer-col ul a:hover { color: #6c5ce7; }
.footer-bottom { text-align: center; padding-top: 2rem; border-top: 1px solid rgba(255, 255, 255, 0.04); color: #555; font-size: 0.875rem; }

/* ===== Responsive ===== */
@media (max-width: 1024px) {
  .product-detail-wrapper, .contact-wrapper, .blog-layout, .event-detail-header { grid-template-columns: 1fr; }
  .hero-stats { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.625rem; }
  .hero { padding: 6rem 0 3rem; min-height: auto; }
  .hero-content h1 { font-size: 2.125rem; }
  .hero-stats { grid-template-columns: repeat(2, 1fr); gap: 0.75rem; }
  .nav-links { display: none; position: fixed; top: 60px; left: 0; right: 0; background: rgba(15, 15, 19, 0.98); flex-direction: column; padding: 1.5rem; gap: 1rem; border-bottom: 1px solid rgba(108, 92, 231, 0.15); }
  .nav-links.open { display: flex; }
  .nav-buttons .btn-outline { display: none; }
  .mobile-toggle { display: block; }
  .features-grid, .testimonial-grid, .blog-grid, .pricing-grid, .income-streams { grid-template-columns: 1fr; }
  .event-card { grid-template-columns: 1fr; text-align: center; }
  .event-date-box { display: flex; gap: 0.5rem; justify-content: center; align-items: baseline; }
  .contact-form .form-row { grid-template-columns: 1fr; }
  .products-header { flex-direction: column; align-items: flex-start; }
  .filter-bar { width: 100%; }
  .filter-bar select, .filter-bar input { flex: 1; min-width: 0; }
}
@media (max-width: 480px) {
  .container { padding: 0 1rem; }
  .hero-content h1 { font-size: 1.75rem; }
  .hero-stats { grid-template-columns: 1fr; }
  .stat-number { font-size: 1.5rem; }
}

/* ===== Animations ===== */
.fade-in { opacity: 0; transform: translateY(20px); transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }
@keyframes pulse { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.05); } }
@keyframes spin { to { transform: rotate(360deg); } }
@keyframes slideUp { from { opacity: 0; transform: translateY(40px); } to { opacity: 1; transform: translateY(0); } }
@keyframes slideDown { from { opacity: 0; transform: translateY(-20px); } to { opacity: 1; transform: translateY(0); } }
@keyframes scaleIn { from { opacity: 0; transform: scale(0.8); } to { opacity: 1; transform: scale(1); } }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
@keyframes progressBar { from { width: 0; } to { width: 100%; } }
@keyframes bgPan { 0% { background-position: 0% 50%; } 50% { background-position: 100% 50%; } 100% { background-position: 0% 50%; } }

/* ===== Hero Slideshow ===== */
.hero-slideshow { position: relative; width: 100%; height: 100vh; min-height: 600px; max-height: 900px; overflow: hidden; }
.slides-wrapper { position: relative; width: 100%; height: 100%; }
.slide { position: absolute; top: 0; left: 0; width: 100%; height: 100%; opacity: 0; visibility: hidden; transition: opacity 0.8s ease, visibility 0.8s ease; display: flex; align-items: center; }
.slide.active { opacity: 1; visibility: visible; z-index: 2; }
.slide.active .slide-content > * { animation: slideUp 0.6s ease forwards; }
.slide.active .slide-content > *:nth-child(1) { animation-delay: 0.1s; }
.slide.active .slide-content > *:nth-child(2) { animation-delay: 0.25s; }
.slide.active .slide-content > *:nth-child(3) { animation-delay: 0.4s; }
.slide.active .slide-content > *:nth-child(4) { animation-delay: 0.55s; }
.slide-overlay { position: absolute; inset: 0; z-index: 1; }
.slide[data-bg="1"] .slide-overlay { background: linear-gradient(135deg, rgba(108,92,231,0.85) 0%, rgba(0,0,0,0.6) 50%, rgba(0,206,201,0.4) 100%); }
.slide[data-bg="2"] .slide-overlay { background: linear-gradient(135deg, rgba(0,206,201,0.8) 0%, rgba(0,0,0,0.5) 50%, rgba(108,92,231,0.4) 100%); }
.slide[data-bg="3"] .slide-overlay { background: linear-gradient(135deg, rgba(214,48,49,0.75) 0%, rgba(0,0,0,0.5) 50%, rgba(108,92,231,0.4) 100%); }
.slide[data-bg="4"] .slide-overlay { background: linear-gradient(135deg, rgba(0,184,148,0.8) 0%, rgba(0,0,0,0.5) 50%, rgba(253,203,110,0.3) 100%); }
.slide-bg { position: absolute; inset: 0; z-index: 0; background-size: cover; background-position: center; background-repeat: no-repeat; transition: transform 8s ease; }
.slide.active .slide-bg { transform: scale(1.1); }
.slide[data-bg="1"] .slide-bg { background-image: linear-gradient(rgba(15,15,26,0.3), rgba(15,15,26,0.3)), url('https://images.unsplash.com/photo-1556761175-b413da4baf72?auto=format&fit=crop&w=1920&q=80'); background-size: cover; background-position: center 30%; background-color: #0f0f1a; }
.slide[data-bg="2"] .slide-bg { background-image: linear-gradient(rgba(15,15,26,0.3), rgba(15,15,26,0.3)), url('https://images.unsplash.com/photo-1579621970563-ebec7560ff3e?auto=format&fit=crop&w=1920&q=80'); background-size: cover; background-position: center 40%; background-color: #0a0a12; }
.slide[data-bg="3"] .slide-bg { background-image: linear-gradient(rgba(15,15,26,0.3), rgba(15,15,26,0.3)), url('https://images.unsplash.com/photo-1451187580459-43490279c0fa?auto=format&fit=crop&w=1920&q=80'); background-size: cover; background-position: center; background-color: #0a0a10; }
.slide[data-bg="4"] .slide-bg { background-image: linear-gradient(rgba(15,15,26,0.3), rgba(15,15,26,0.3)), url('https://images.unsplash.com/photo-1524178232363-1fb2b075b655?auto=format&fit=crop&w=1920&q=80'); background-size: cover; background-position: center 35%; background-color: #0a0f0a; }
.slide .container { position: relative; z-index: 2; width: 100%; }
.slide-content { max-width: 700px; }
.slide-content > * { opacity: 0; transform: translateY(40px); }
.slide-badge { display: inline-block; padding: 0.4rem 1rem; border-radius: 50px; font-size: 0.8rem; font-weight: 700; text-transform: uppercase; letter-spacing: 2px; background: rgba(255,255,255,0.1); backdrop-filter: blur(10px); border: 1px solid rgba(255,255,255,0.15); color: #fff; margin-bottom: 1.5rem; }
.slide-title { font-size: 3.5rem; font-weight: 800; line-height: 1.1; margin-bottom: 1.25rem; color: #fff; }
.slide-title .text-gradient { background: linear-gradient(135deg, #6c5ce7, #00cec9, #a29bfe); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.slide-desc { font-size: 1.15rem; line-height: 1.7; color: rgba(255,255,255,0.75); margin-bottom: 2rem; max-width: 580px; }
.slide-actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.btn-glow { position: relative; overflow: hidden; }
.btn-glow::before { content: ''; position: absolute; top: -50%; left: -50%; width: 200%; height: 200%; background: linear-gradient(45deg, transparent, rgba(255,255,255,0.1), transparent); transform: rotate(45deg); transition: all 0.5s; }
.btn-glow:hover::before { left: 100%; }
.btn-glow:hover { box-shadow: 0 0 30px rgba(108,92,231,0.5), 0 0 60px rgba(0,206,201,0.3); }

/* Slider Navigation */
.slider-nav { position: absolute; bottom: 40px; left: 50%; transform: translateX(-50%); z-index: 10; display: flex; align-items: center; gap: 1.5rem; }
.slider-arrow { width: 44px; height: 44px; border-radius: 50%; border: 2px solid rgba(255,255,255,0.2); background: rgba(255,255,255,0.08); backdrop-filter: blur(10px); color: #fff; font-size: 1.1rem; cursor: pointer; transition: all 0.3s; display: flex; align-items: center; justify-content: center; }
.slider-arrow:hover { background: rgba(255,255,255,0.2); border-color: rgba(255,255,255,0.4); transform: scale(1.1); }
.slider-dots { display: flex; gap: 0.6rem; }
.dot { width: 12px; height: 12px; border-radius: 50%; background: rgba(255,255,255,0.25); cursor: pointer; transition: all 0.4s; }
.dot.active { background: #6c5ce7; box-shadow: 0 0 12px rgba(108,92,231,0.6); width: 32px; border-radius: 6px; }

/* Progress Bar */
.slider-progress { position: absolute; bottom: 0; left: 0; width: 100%; height: 3px; z-index: 10; background: rgba(255,255,255,0.1); }
.progress-bar { height: 100%; background: linear-gradient(90deg, #6c5ce7, #00cec9); width: 0; border-radius: 0 2px 2px 0; }
.progress-bar.animating { animation: progressBar 5s linear forwards; }

/* Stats Bar */
.hero-stats-section { position: relative; z-index: 5; background: linear-gradient(180deg, rgba(15,15,19,0.95) 0%, #0f0f13 100%); padding: 3rem 0; margin-top: -1px; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; text-align: center; }
.stat-item { padding: 1.5rem; }
.stat-item .stat-number { display: block; font-size: 2.5rem; font-weight: 800; background: linear-gradient(135deg, #6c5ce7, #00cec9); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; margin-bottom: 0.4rem; }
.stat-item .stat-label { font-size: 0.95rem; color: rgba(255,255,255,0.5); text-transform: uppercase; letter-spacing: 1px; font-weight: 600; }

@media (max-width: 768px) {
  .hero-slideshow { height: 85vh; min-height: 500px; }
  .slide-title { font-size: 2rem; }
  .slide-desc { font-size: 1rem; }
  .slide-actions { flex-direction: column; }
  .slide-actions .btn { width: 100%; justify-content: center; }
  .slider-nav { bottom: 20px; gap: 1rem; }
  .slider-arrow { width: 36px; height: 36px; font-size: 0.9rem; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
  .stat-item .stat-number { font-size: 1.8rem; }
}
