@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Playfair+Display:ital,wght@0,400;0,600;0,700;0,800;1,400&display=swap');

/* ============================================================
   ROOT VARIABLES
============================================================ */
:root {
  --gold: #c9a84c;
  --gold-light: #e2c97e;
  --gold-bright: #f5d76e;
  --gold-dark: #a08030;
  --bg-body: #08080c;
  --bg-section: #0c0c12;
  --bg-alt: #101018;
  --bg-card: #14141c;
  --bg-card-h: #1c1c26;
  --bg-elev: #1e1e28;
  --border: #252530;
  --border-gold: rgba(201,168,76,0.25);
  --text-w: #fff;
  --text-l: #e8e8ec;
  --text-s: #a0a0ac;
  --text-m: #6a6a78;
  --font-h: 'Playfair Display', Georgia, serif;
  --font-b: 'Inter', -apple-system, sans-serif;
  --shadow-g: 0 0 30px rgba(201,168,76,0.12);
  --shadow-c: 0 4px 24px rgba(0,0,0,0.3);
  --r-sm: 8px;
  --r-md: 12px;
  --r-lg: 16px;
  --r-xl: 24px;
  --trans: all .3s cubic-bezier(.4,0,.2,1);
}

/* ============================================================
   BASE RESET
============================================================ */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 85px; }
body { font-family: var(--font-b); background: var(--bg-body); color: var(--text-l); line-height: 1.7; overflow-x: hidden; }
img { max-width: 100%; height: auto; }
a { text-decoration: none; color: inherit; }

/* ============================================================
   LOGO IMAGES
============================================================ */
.nav-logo-img { height: 46px; width: auto; display: block; object-fit: contain; }
.footer-logo-img { height: 52px; width: auto; display: block; object-fit: contain; margin-bottom: 14px; }

/* ============================================================
   NAVIGATION
============================================================ */
.nav-outer-k3m8x { position: fixed; top: 0; left: 0; width: 100%; z-index: 1000; background: rgba(8,8,12,0.92); backdrop-filter: blur(20px); border-bottom: 1px solid var(--border); transition: var(--trans); }
.nav-inner-p7q2r { max-width: 1240px; margin: 0 auto; padding: 0 24px; display: flex; align-items: center; justify-content: space-between; height: 72px; }
.nav-logo-t4v9w { font-family: var(--font-h); font-size: 26px; font-weight: 800; background: linear-gradient(135deg, var(--gold), var(--gold-bright)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; letter-spacing: -0.5px; }
.nav-logo-t4v9w span { -webkit-text-fill-color: var(--text-w); font-weight: 400; font-size: 14px; letter-spacing: 2px; display: block; margin-top: -4px; font-family: var(--font-b); }
.nav-links-b8d3f { display: flex; align-items: center; gap: 32px; list-style: none; }
.nav-links-b8d3f li a { font-size: 14px; font-weight: 500; color: var(--text-s); transition: var(--trans); letter-spacing: 0.3px; }
.nav-links-b8d3f li a:hover, .nav-links-b8d3f li a.nav-active { color: var(--gold); }
.nav-cta-e2g6h { padding: 10px 24px; background: linear-gradient(135deg, var(--gold), var(--gold-light)); color: #0a0a0a !important; font-weight: 700; font-size: 13px; border-radius: 50px; letter-spacing: 0.5px; transition: var(--trans); }
.nav-cta-e2g6h:hover { transform: translateY(-1px); box-shadow: var(--shadow-g); }
.nav-toggle-j5l9m { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 8px; background: none; border: none; }
.nav-toggle-j5l9m span { width: 24px; height: 2px; background: var(--text-w); transition: var(--trans); border-radius: 2px; display: block; }
.nav-mobile-n1p4q { display: none; position: fixed; top: 72px; left: 0; width: 100%; background: rgba(8,8,12,0.98); backdrop-filter: blur(20px); border-bottom: 1px solid var(--border); padding: 24px; z-index: 999; }
.nav-mobile-n1p4q.active-r7s2t { display: block; }
.nav-mobile-n1p4q ul { list-style: none; display: flex; flex-direction: column; gap: 16px; }
.nav-mobile-n1p4q ul li a { font-size: 16px; font-weight: 500; color: var(--text-l); display: block; padding: 8px 0; border-bottom: 1px solid var(--border); }

/* ============================================================
   HERO
============================================================ */
.hero-outer-u3w7x { min-height: 100vh; display: flex; align-items: center; position: relative; overflow: hidden; background: radial-gradient(ellipse at 30% 50%, rgba(201,168,76,0.06) 0%, transparent 60%), radial-gradient(ellipse at 70% 80%, rgba(201,168,76,0.04) 0%, transparent 50%), var(--bg-body); padding: 120px 24px 80px; }
.hero-glow-y5z9a { position: absolute; top: -200px; right: -200px; width: 600px; height: 600px; background: radial-gradient(circle, rgba(201,168,76,0.08) 0%, transparent 70%); pointer-events: none; }
.hero-glow2-b1c4d { position: absolute; bottom: -150px; left: -150px; width: 500px; height: 500px; background: radial-gradient(circle, rgba(201,168,76,0.05) 0%, transparent 70%); pointer-events: none; }
.hero-inner-f6g8h { max-width: 900px; margin: 0 auto; text-align: center; position: relative; z-index: 2; }
.hero-badge-i9j2k { display: inline-flex; align-items: center; gap: 8px; padding: 8px 20px; background: rgba(201,168,76,0.1); border: 1px solid var(--border-gold); border-radius: 50px; font-size: 13px; font-weight: 600; color: var(--gold); margin-bottom: 32px; letter-spacing: 0.5px; }
.hero-badge-i9j2k span { width: 8px; height: 8px; background: var(--gold); border-radius: 50%; animation: pulse-l3m5n 2s infinite; }
@keyframes pulse-l3m5n { 0%,100% { opacity: 1; } 50% { opacity: 0.4; } }
.hero-h1-o6p8q { font-family: var(--font-h); font-size: clamp(36px, 5.5vw, 68px); font-weight: 800; line-height: 1.12; color: var(--text-w); margin-bottom: 24px; letter-spacing: -1px; }
.hero-h1-o6p8q .gold-text-r9s1t { background: linear-gradient(135deg, var(--gold), var(--gold-bright), var(--gold)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.hero-sub-u2v4w { font-size: clamp(16px, 2vw, 20px); color: var(--text-s); max-width: 680px; margin: 0 auto 40px; line-height: 1.8; font-weight: 400; }
.hero-ctas-x5y7z { display: flex; flex-wrap: wrap; gap: 16px; justify-content: center; margin-bottom: 48px; }
.hero-btn-gold-a8b1c { display: inline-block; }
.hero-btn-gold-a8b1c a { display: inline-flex; align-items: center; gap: 8px; padding: 16px 36px; background: linear-gradient(135deg, var(--gold), var(--gold-light)); color: #0a0a0a; font-weight: 700; font-size: 15px; border-radius: 50px; transition: var(--trans); letter-spacing: 0.3px; }
.hero-btn-gold-a8b1c a:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(201,168,76,0.3); }
.hero-btn-outline-d3e5f { display: inline-block; }
.hero-btn-outline-d3e5f a { display: inline-flex; align-items: center; gap: 8px; padding: 16px 32px; background: transparent; border: 1.5px solid var(--border-gold); color: var(--gold); font-weight: 600; font-size: 15px; border-radius: 50px; transition: var(--trans); }
.hero-btn-outline-d3e5f a:hover { background: rgba(201,168,76,0.1); transform: translateY(-2px); }
.hero-btn-ghost-g6h8i { display: inline-block; }
.hero-btn-ghost-g6h8i a { display: inline-flex; align-items: center; gap: 8px; padding: 16px 32px; background: rgba(255,255,255,0.04); border: 1px solid var(--border); color: var(--text-l); font-weight: 600; font-size: 15px; border-radius: 50px; transition: var(--trans); }
.hero-btn-ghost-g6h8i a:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-2px); }
.hero-trust-j9k2l { display: flex; align-items: center; justify-content: center; gap: 24px; flex-wrap: wrap; font-size: 13px; color: var(--text-m); }
.hero-trust-j9k2l span { display: flex; align-items: center; gap: 6px; }
.hero-trust-j9k2l .check-m3n5o { color: var(--gold); font-size: 16px; }

/* ============================================================
   TRUST BAR
============================================================ */
.trust-outer-p6q8r { background: var(--bg-section); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 40px 24px; }
.trust-inner-s9t1u { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; text-align: center; }
.trust-item-v2w4x { padding: 16px; }
.trust-num-y5z7a { font-family: var(--font-h); font-size: clamp(32px, 4vw, 48px); font-weight: 800; background: linear-gradient(135deg, var(--gold), var(--gold-bright)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; line-height: 1.2; }
.trust-label-b8c1d { font-size: 13px; color: var(--text-m); font-weight: 500; margin-top: 4px; letter-spacing: 0.5px; text-transform: uppercase; }

/* ============================================================
   SECTION UTILITIES
============================================================ */
.section-pad-e3f5g { padding: 100px 24px; }
.section-pad-sm-h6i8j { padding: 80px 24px; }
.container-k9l2m { max-width: 1140px; margin: 0 auto; }
.section-label-n3o5p { display: inline-flex; align-items: center; gap: 8px; font-size: 12px; font-weight: 700; color: var(--gold); text-transform: uppercase; letter-spacing: 2px; margin-bottom: 16px; }
.section-label-n3o5p::before { content: ''; width: 24px; height: 1.5px; background: var(--gold); }
.section-title-q6r8s { font-family: var(--font-h); font-size: clamp(28px, 4vw, 44px); font-weight: 700; color: var(--text-w); line-height: 1.2; margin-bottom: 16px; letter-spacing: -0.5px; }
.section-sub-t9u1v { font-size: 17px; color: var(--text-s); max-width: 640px; line-height: 1.8; }
.text-center-w2x4y { text-align: center; }
.mx-auto-z5a7b { margin-left: auto; margin-right: auto; }
.gold-line-c8d1e { width: 60px; height: 3px; background: linear-gradient(90deg, var(--gold), var(--gold-light)); border-radius: 2px; margin: 24px auto 0; }
.bg-alt-f2g4h { background: var(--bg-alt); }
.bg-section-i5j7k { background: var(--bg-section); }

/* ============================================================
   PAGE HERO (inner pages)
============================================================ */
.page-hero { padding: 140px 24px 64px; text-align: center; background: radial-gradient(ellipse at 50% 50%, rgba(201,168,76,0.06) 0%, transparent 60%), var(--bg-body); border-bottom: 1px solid var(--border); position: relative; overflow: hidden; }
.page-hero-glow { position: absolute; top: -100px; left: 50%; transform: translateX(-50%); width: 600px; height: 400px; background: radial-gradient(circle, rgba(201,168,76,0.07) 0%, transparent 70%); pointer-events: none; }
.page-hero-label { display: inline-flex; align-items: center; gap: 8px; font-size: 12px; font-weight: 700; color: var(--gold); text-transform: uppercase; letter-spacing: 2px; margin-bottom: 16px; }
.page-hero-label::before { content: ''; width: 24px; height: 1.5px; background: var(--gold); }
.page-hero-title { font-family: var(--font-h); font-size: clamp(32px, 4.5vw, 52px); font-weight: 800; color: var(--text-w); line-height: 1.15; margin-bottom: 20px; letter-spacing: -0.5px; }
.page-hero-sub { font-size: 18px; color: var(--text-s); max-width: 600px; margin: 0 auto; line-height: 1.8; }

/* ============================================================
   ABOUT SECTION
============================================================ */
.about-grid-l8m1n { display: grid; grid-template-columns: 400px 1fr; gap: 64px; align-items: center; }
.about-img-o2p4q { position: relative; border-radius: var(--r-lg); overflow: hidden; aspect-ratio: 4/5; }
.about-img-o2p4q .img-placeholder-r5s7t { width: 100%; height: 100%; background: linear-gradient(135deg, var(--bg-card), var(--bg-elev)); display: flex; align-items: center; justify-content: center; font-size: 80px; color: var(--gold); border: 2px solid var(--border-gold); border-radius: var(--r-lg); }
.about-img-o2p4q img.founder-photo { width: 100%; height: 100%; object-fit: cover; object-position: top center; border-radius: var(--r-lg); display: block; }
.about-img-o2p4q::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 40%; background: linear-gradient(to top, var(--bg-body), transparent); pointer-events: none; }
.about-badge-u8v1w { position: absolute; bottom: 24px; left: 24px; right: 24px; background: rgba(8,8,12,0.85); backdrop-filter: blur(10px); border: 1px solid var(--border-gold); border-radius: var(--r-md); padding: 16px 20px; z-index: 2; display: flex; align-items: center; gap: 16px; }
.about-badge-icon-x2y4z { width: 48px; height: 48px; background: linear-gradient(135deg, var(--gold), var(--gold-light)); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 20px; flex-shrink: 0; }
.about-badge-text-a5b7c { font-size: 13px; color: var(--text-s); }
.about-badge-text-a5b7c strong { display: block; color: var(--text-w); font-size: 15px; margin-bottom: 2px; }
.about-story-d8e1f { font-size: 16px; color: var(--text-s); line-height: 1.9; }
.about-story-d8e1f p { margin-bottom: 20px; }
.about-story-d8e1f strong { color: var(--text-w); }
.about-creds-g2h4i { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; margin-top: 32px; }
.about-cred-j5k7l { display: flex; align-items: center; gap: 12px; padding: 14px 18px; background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--r-md); font-size: 14px; font-weight: 500; color: var(--text-l); transition: var(--trans); }
.about-cred-j5k7l:hover { border-color: var(--border-gold); background: var(--bg-card-h); }
.about-cred-j5k7l .icon-m8n1o { color: var(--gold); font-size: 18px; flex-shrink: 0; }

/* ============================================================
   PROBLEM / SOLUTION
============================================================ */
.problem-grid-p2q4r { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; margin-top: 48px; }
.problem-col-s5t7u h3 { font-family: var(--font-h); font-size: 24px; color: var(--text-w); margin-bottom: 24px; }
.pain-list-v8w1x { display: flex; flex-direction: column; gap: 16px; }
.pain-item-y2z4a { display: flex; gap: 14px; padding: 18px 20px; background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--r-md); transition: var(--trans); }
.pain-item-y2z4a:hover { border-color: rgba(220,50,50,0.3); background: rgba(220,50,50,0.04); }
.pain-icon-b5c7d { color: #e05050; font-size: 20px; flex-shrink: 0; margin-top: 2px; }
.pain-text-e8f1g { font-size: 15px; color: var(--text-s); line-height: 1.6; }
.pain-text-e8f1g strong { color: var(--text-w); }
.solution-col-h2i4j h3 { font-family: var(--font-h); font-size: 24px; color: var(--text-w); margin-bottom: 24px; }
.sol-list-k5l7m { display: flex; flex-direction: column; gap: 16px; }
.sol-item-n8o1p { display: flex; gap: 14px; padding: 18px 20px; background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--r-md); transition: var(--trans); }
.sol-item-n8o1p:hover { border-color: var(--border-gold); background: rgba(201,168,76,0.04); }
.sol-icon-q2r4s { color: var(--gold); font-size: 20px; flex-shrink: 0; margin-top: 2px; }
.sol-text-t5u7v { font-size: 15px; color: var(--text-s); line-height: 1.6; }
.sol-text-t5u7v strong { color: var(--text-w); }

/* ============================================================
   OFFERS
============================================================ */
.offer-grid-w8x1y { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin-top: 56px; }
.offer-card-z2a4b { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--r-lg); padding: 36px 28px; position: relative; overflow: hidden; transition: var(--trans); display: flex; flex-direction: column; }
.offer-card-z2a4b:hover { transform: translateY(-4px); border-color: var(--border-gold); box-shadow: var(--shadow-g); }
.offer-card-z2a4b.featured-c5d7e { border-color: var(--gold); background: linear-gradient(180deg, rgba(201,168,76,0.08) 0%, var(--bg-card) 50%); }
.offer-tag-f8g1h { display: inline-block; padding: 6px 14px; background: rgba(201,168,76,0.12); color: var(--gold); font-size: 11px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; border-radius: 50px; margin-bottom: 20px; }
.offer-tag-f8g1h.free-i2j4k { background: rgba(80,200,120,0.12); color: #50c878; }
.offer-title-l5m7n { font-family: var(--font-h); font-size: 22px; font-weight: 700; color: var(--text-w); margin-bottom: 8px; line-height: 1.3; }
.offer-price-o8p1q { font-size: 28px; font-weight: 800; color: var(--gold); margin-bottom: 16px; }
.offer-price-o8p1q .currency-r2s4t { font-size: 16px; font-weight: 600; vertical-align: super; }
.offer-price-o8p1q .period-u5v7w { font-size: 14px; font-weight: 400; color: var(--text-m); }
.offer-desc-x8y1z { font-size: 14px; color: var(--text-s); line-height: 1.7; margin-bottom: 20px; flex-grow: 1; }
.offer-features-a2b4c { list-style: none; margin-bottom: 28px; }
.offer-features-a2b4c li { font-size: 13px; color: var(--text-s); padding: 6px 0; display: flex; align-items: flex-start; gap: 10px; }
.offer-features-a2b4c li::before { content: '✓'; color: var(--gold); font-weight: 700; flex-shrink: 0; }
.offer-btn-wrap-d5e7f { margin-top: auto; }
.offer-btn-wrap-d5e7f a { display: block; text-align: center; padding: 14px 24px; background: linear-gradient(135deg, var(--gold), var(--gold-light)); color: #0a0a0a; font-weight: 700; font-size: 14px; border-radius: 50px; transition: var(--trans); letter-spacing: 0.3px; }
.offer-btn-wrap-d5e7f a:hover { transform: translateY(-2px); box-shadow: 0 6px 24px rgba(201,168,76,0.3); }
.offer-btn-outline-g8h1i a { background: transparent; border: 1.5px solid var(--border-gold); color: var(--gold); }
.offer-btn-outline-g8h1i a:hover { background: rgba(201,168,76,0.1); }

/* ============================================================
   SYSTEM / HOW IT WORKS
============================================================ */
.system-flow-j2k4l { display: flex; align-items: stretch; gap: 0; margin-top: 56px; position: relative; }
.system-step-m5n7o { flex: 1; text-align: center; padding: 40px 24px; background: var(--bg-card); border: 1px solid var(--border); position: relative; transition: var(--trans); }
.system-step-m5n7o:first-child { border-radius: var(--r-lg) 0 0 var(--r-lg); }
.system-step-m5n7o:last-child { border-radius: 0 var(--r-lg) var(--r-lg) 0; }
.system-step-m5n7o:hover { background: var(--bg-card-h); border-color: var(--border-gold); }
.step-num-p8q1r { width: 48px; height: 48px; background: linear-gradient(135deg, var(--gold), var(--gold-light)); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 18px; color: #0a0a0a; margin: 0 auto 16px; }
.step-title-s2t4u { font-family: var(--font-h); font-size: 18px; font-weight: 700; color: var(--text-w); margin-bottom: 8px; }
.step-desc-v5w7x { font-size: 13px; color: var(--text-s); line-height: 1.6; }
.step-arrow-y8z1a { position: absolute; right: -14px; top: 50%; transform: translateY(-50%); z-index: 2; width: 28px; height: 28px; background: var(--bg-body); border: 2px solid var(--gold); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--gold); font-size: 14px; }

/* ============================================================
   TESTIMONIALS
============================================================ */
.testimonial-grid-b2c4d { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 56px; }
.testimonial-card-e5f7g { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--r-lg); padding: 32px; position: relative; transition: var(--trans); }
.testimonial-card-e5f7g:hover { border-color: var(--border-gold); transform: translateY(-2px); }
.testimonial-stars-h8i1j { color: var(--gold); font-size: 16px; margin-bottom: 16px; letter-spacing: 2px; }
.testimonial-quote-k2l4m { font-size: 15px; color: var(--text-s); line-height: 1.8; margin-bottom: 24px; font-style: italic; }
.testimonial-author-n5o7p { display: flex; align-items: center; gap: 14px; padding-top: 20px; border-top: 1px solid var(--border); }
.testimonial-avatar-q8r1s { width: 48px; height: 48px; background: linear-gradient(135deg, var(--gold-dark), var(--gold)); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 18px; color: #0a0a0a; flex-shrink: 0; }
.testimonial-info-t2u4v { font-size: 14px; font-weight: 600; color: var(--text-w); }
.testimonial-info-t2u4v span { display: block; font-size: 12px; font-weight: 400; color: var(--text-m); margin-top: 2px; }
.result-highlight-w5x7y { font-weight: 700; color: var(--gold); }

/* ============================================================
   FEATURES
============================================================ */
.feature-grid-z8a1b { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 56px; }
.feature-item-c2d4e { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--r-lg); padding: 36px 28px; transition: var(--trans); }
.feature-item-c2d4e:hover { border-color: var(--border-gold); transform: translateY(-3px); box-shadow: var(--shadow-g); }
.feature-icon-f5g7h { width: 56px; height: 56px; background: rgba(201,168,76,0.1); border: 1px solid var(--border-gold); border-radius: var(--r-md); display: flex; align-items: center; justify-content: center; font-size: 26px; margin-bottom: 20px; }
.feature-name-i8j1k { font-family: var(--font-h); font-size: 20px; font-weight: 700; color: var(--text-w); margin-bottom: 10px; }
.feature-desc-l2m4n { font-size: 14px; color: var(--text-s); line-height: 1.8; }

/* ============================================================
   RESOURCES
============================================================ */
.resource-grid-o5p7q { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 48px; }
.resource-card-r8s1t { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--r-lg); overflow: hidden; transition: var(--trans); }
.resource-card-r8s1t:hover { border-color: var(--border-gold); transform: translateY(-3px); }
.resource-img-u2v4w { height: 180px; background: linear-gradient(135deg, rgba(201,168,76,0.15), rgba(201,168,76,0.05)); display: flex; align-items: center; justify-content: center; font-size: 56px; }
.resource-body-x5y7z { padding: 28px; }
.resource-title-a8b1c { font-family: var(--font-h); font-size: 20px; font-weight: 700; color: var(--text-w); margin-bottom: 8px; }
.resource-desc-d2e4f { font-size: 14px; color: var(--text-s); line-height: 1.7; margin-bottom: 20px; }

/* ============================================================
   COMMUNITY
============================================================ */
.community-outer-g5h7i { background: linear-gradient(135deg, rgba(201,168,76,0.08), rgba(201,168,76,0.02)); border: 1px solid var(--border-gold); }
.community-inner-j8k1l { max-width: 800px; margin: 0 auto; text-align: center; }
.community-stats-m2n4o { display: flex; justify-content: center; gap: 48px; margin: 32px 0; flex-wrap: wrap; }
.community-stat-p5q7r { text-align: center; }
.community-stat-p5q7r .num-s8t1u { font-family: var(--font-h); font-size: 36px; font-weight: 800; color: var(--gold); }
.community-stat-p5q7r .label-v2w4x { font-size: 13px; color: var(--text-m); margin-top: 4px; }
.community-benefits-y5z7a { display: flex; flex-wrap: wrap; justify-content: center; gap: 16px; margin: 24px 0 32px; }
.community-benefit-b8c1d { display: flex; align-items: center; gap: 8px; padding: 10px 18px; background: rgba(201,168,76,0.08); border: 1px solid var(--border-gold); border-radius: 50px; font-size: 13px; color: var(--text-l); font-weight: 500; }
.community-benefit-b8c1d .cb-icon-e2f4g { color: var(--gold); }

/* ============================================================
   CREDIBILITY
============================================================ */
.credibility-grid-h5i7j { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin-top: 48px; }
.cred-item-k8l1m { text-align: center; padding: 32px 20px; background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--r-lg); transition: var(--trans); }
.cred-item-k8l1m:hover { border-color: var(--border-gold); }
.cred-icon-n2o4p { font-size: 36px; margin-bottom: 16px; }
.cred-title-q5r7s { font-family: var(--font-h); font-size: 18px; font-weight: 700; color: var(--text-w); margin-bottom: 8px; }
.cred-desc-t8u1v { font-size: 13px; color: var(--text-s); line-height: 1.7; }

/* ============================================================
   FAQ
============================================================ */
.faq-list-w2x4y { max-width: 800px; margin: 48px auto 0; display: flex; flex-direction: column; gap: 12px; }
.faq-item-z5a7b { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--r-md); overflow: hidden; transition: var(--trans); }
.faq-item-z5a7b.open-c8d1e { border-color: var(--border-gold); }
.faq-question-f2g4h { display: flex; align-items: center; justify-content: space-between; padding: 22px 28px; cursor: pointer; font-size: 16px; font-weight: 600; color: var(--text-w); transition: var(--trans); gap: 16px; user-select: none; }
.faq-question-f2g4h:hover { color: var(--gold); }
.faq-toggle-i5j7k { color: var(--gold); font-size: 20px; transition: var(--trans); flex-shrink: 0; }
.faq-item-z5a7b.open-c8d1e .faq-toggle-i5j7k { transform: rotate(45deg); }
.faq-answer-l8m1n { padding: 0 28px; max-height: 0; overflow: hidden; transition: max-height .4s ease, padding .4s ease; }
.faq-item-z5a7b.open-c8d1e .faq-answer-l8m1n { max-height: 400px; padding: 0 28px 24px; }
.faq-answer-l8m1n p { font-size: 15px; color: var(--text-s); line-height: 1.8; }

/* ============================================================
   CONTACT SECTION
============================================================ */
.contact-grid-n2o4p { display: grid; grid-template-columns: 1fr 1.4fr; gap: 48px; margin-top: 48px; align-items: start; }
.contact-info-q5r7s { display: flex; flex-direction: column; gap: 24px; }
.contact-method-t8u1v { display: flex; gap: 16px; padding: 24px; background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--r-md); transition: var(--trans); }
.contact-method-t8u1v:hover { border-color: var(--border-gold); }
.contact-method-icon-w2x4y { width: 48px; height: 48px; background: rgba(201,168,76,0.1); border: 1px solid var(--border-gold); border-radius: var(--r-sm); display: flex; align-items: center; justify-content: center; font-size: 22px; flex-shrink: 0; }
.contact-method-text-z5a7b h4 { font-size: 16px; font-weight: 700; color: var(--text-w); margin-bottom: 4px; }
.contact-method-text-z5a7b p { font-size: 14px; color: var(--text-s); }
.form-outer-c8d1e { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--r-lg); padding: 36px; }
.form-title-f2g4h { font-family: var(--font-h); font-size: 24px; font-weight: 700; color: var(--text-w); margin-bottom: 24px; }
.form-row-i5j7k { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-field-l8m1n { margin-bottom: 16px; }
.form-field-l8m1n label { display: block; font-size: 13px; font-weight: 600; color: var(--text-s); margin-bottom: 6px; }
.form-input-o2p4q { width: 100%; padding: 12px 16px; background: var(--bg-elev); border: 1px solid var(--border); border-radius: var(--r-sm); color: var(--text-w); font-family: var(--font-b); font-size: 14px; transition: var(--trans); outline: none; }
.form-input-o2p4q:focus { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(201,168,76,0.15); }
.form-input-o2p4q::placeholder { color: var(--text-m); }
.form-textarea-r5s7t { min-height: 100px; resize: vertical; }
.form-select-u8v1w { width: 100%; padding: 12px 16px; background: var(--bg-elev); border: 1px solid var(--border); border-radius: var(--r-sm); color: var(--text-w); font-family: var(--font-b); font-size: 14px; transition: var(--trans); outline: none; appearance: none; cursor: pointer; }
.form-select-u8v1w:focus { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(201,168,76,0.15); }
.form-select-u8v1w option { background: var(--bg-elev); color: var(--text-w); }
.form-radio-wrap-x2y4z { display: flex; flex-wrap: wrap; gap: 12px; }
.form-radio-item-a5b7c { display: flex; align-items: center; gap: 8px; padding: 10px 16px; background: var(--bg-elev); border: 1px solid var(--border); border-radius: var(--r-sm); cursor: pointer; transition: var(--trans); font-size: 14px; color: var(--text-s); }
.form-radio-item-a5b7c:hover { border-color: var(--border-gold); }
.form-radio-input-d8e1f { accent-color: var(--gold); width: 16px; height: 16px; }
.form-check-wrap-g2h4i { display: flex; flex-direction: column; gap: 10px; }
.form-check-item-j5k7l { display: flex; align-items: center; gap: 10px; font-size: 14px; color: var(--text-s); cursor: pointer; }
.form-check-input-m8n1o { accent-color: var(--gold); width: 16px; height: 16px; }
.form-submit-wrap-p2q4r { margin-top: 24px; }
.form-submit-btn { display: block; width: 100%; text-align: center; padding: 16px; background: linear-gradient(135deg, var(--gold), var(--gold-light)); color: #0a0a0a; font-weight: 700; font-size: 16px; border-radius: var(--r-sm); transition: var(--trans); cursor: pointer; border: none; font-family: var(--font-b); letter-spacing: 0.5px; }
.form-submit-btn:hover { transform: translateY(-2px); box-shadow: 0 6px 24px rgba(201,168,76,0.3); }
.form-submit-btn:disabled { opacity: 0.7; cursor: not-allowed; transform: none; }
/* Honeypot (spam prevention) */
.hp-field { display: none !important; visibility: hidden !important; }
/* Alert messages */
.alert { padding: 16px 20px; border-radius: var(--r-md); margin-bottom: 20px; font-size: 15px; font-weight: 500; display: none; }
.alert-success { background: rgba(80,200,120,0.12); border: 1px solid rgba(80,200,120,0.3); color: #50c878; }
.alert-error { background: rgba(220,50,50,0.1); border: 1px solid rgba(220,50,50,0.25); color: #e05050; }

/* ============================================================
   GUARANTEE
============================================================ */
.guarantee-outer-s5t7u { background: linear-gradient(135deg, rgba(201,168,76,0.06), rgba(201,168,76,0.02)); }
.guarantee-inner-v8w1x { max-width: 800px; margin: 0 auto; text-align: center; }
.guarantee-badge-y2z4a { width: 120px; height: 120px; margin: 0 auto 32px; background: linear-gradient(135deg, var(--gold), var(--gold-bright)); border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-direction: column; color: #0a0a0a; }
.guarantee-badge-y2z4a .days-b5c7d { font-size: 36px; font-weight: 900; line-height: 1; }
.guarantee-badge-y2z4a .text-e8f1g { font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; }
.guarantee-text-h2i4j { font-size: 17px; color: var(--text-s); line-height: 1.9; max-width: 640px; margin: 24px auto 0; }

/* ============================================================
   URGENCY
============================================================ */
.urgency-outer-k5l7m { background: linear-gradient(135deg, #1a1208, #0e0e14); border-top: 2px solid var(--gold); border-bottom: 2px solid var(--gold); }
.urgency-inner-n8o1p { max-width: 800px; margin: 0 auto; text-align: center; }
.urgency-reasons-q2r4s { display: flex; flex-wrap: wrap; justify-content: center; gap: 24px; margin: 32px 0; }
.urgency-reason-t5u7v { display: flex; align-items: center; gap: 10px; padding: 12px 20px; background: rgba(201,168,76,0.08); border: 1px solid var(--border-gold); border-radius: 50px; font-size: 14px; font-weight: 600; color: var(--text-l); }
.urgency-reason-t5u7v .ur-icon-w8x1y { color: var(--gold); font-size: 18px; }

/* ============================================================
   LEGAL PAGES
============================================================ */
.legal-outer-z2a4b { background: var(--bg-section); border-top: 1px solid var(--border); }
.legal-inner-c5d7e { max-width: 800px; margin: 0 auto; }
.legal-title-f8g1h { font-family: var(--font-h); font-size: 32px; font-weight: 700; color: var(--text-w); margin-bottom: 32px; padding-bottom: 16px; border-bottom: 2px solid var(--border-gold); }
.legal-body-i2j4k { font-size: 15px; color: var(--text-s); line-height: 2; }
.legal-body-i2j4k h3 { font-family: var(--font-h); font-size: 20px; color: var(--text-w); margin: 28px 0 12px; font-weight: 600; }
.legal-body-i2j4k p { margin-bottom: 16px; }
.legal-body-i2j4k ul { margin: 12px 0 16px 24px; }
.legal-body-i2j4k ul li { margin-bottom: 8px; }
.legal-divider-l5m7n { height: 1px; background: var(--border); margin: 80px 0; }

/* ============================================================
   FOOTER
============================================================ */
.footer-outer-o8p1q { background: var(--bg-body); border-top: 1px solid var(--border); padding: 64px 24px 24px; }
.footer-inner-r2s4t { max-width: 1140px; margin: 0 auto; }
.footer-grid-u5v7w { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
.footer-brand-x8y1z .footer-logo-a2b4c { font-family: var(--font-h); font-size: 28px; font-weight: 800; background: linear-gradient(135deg, var(--gold), var(--gold-bright)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; margin-bottom: 12px; }
.footer-brand-x8y1z p { font-size: 14px; color: var(--text-m); line-height: 1.7; margin-bottom: 20px; }
.footer-social-d5e7f { display: flex; gap: 12px; }
.footer-social-d5e7f a { width: 40px; height: 40px; background: var(--bg-card); border: 1px solid var(--border); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 16px; color: var(--text-s); transition: var(--trans); }
.footer-social-d5e7f a:hover { border-color: var(--gold); color: var(--gold); background: rgba(201,168,76,0.1); }
.footer-col-g8h1i h4 { font-size: 14px; font-weight: 700; color: var(--text-w); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 20px; }
.footer-col-g8h1i ul { list-style: none; }
.footer-col-g8h1i ul li { margin-bottom: 12px; }
.footer-col-g8h1i ul li a { font-size: 14px; color: var(--text-m); transition: var(--trans); }
.footer-col-g8h1i ul li a:hover { color: var(--gold); }
.footer-bottom-j2k4l { border-top: 1px solid var(--border); padding-top: 24px; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 16px; }
.footer-copy-m5n7o { font-size: 13px; color: var(--text-m); }
.footer-disclaimer-p8q1r { font-size: 12px; color: var(--text-m); max-width: 600px; line-height: 1.7; text-align: right; }

/* ============================================================
   ANIMATIONS
============================================================ */
.animate-fade-s2t4u { opacity: 0; transform: translateY(30px); transition: opacity .7s ease, transform .7s ease; }
.animate-fade-s2t4u.visible-v5w7x { opacity: 1; transform: translateY(0); }

/* ============================================================
   BACK TO TOP
============================================================ */
.back-top-y8z1a { position: fixed; bottom: 32px; right: 32px; width: 48px; height: 48px; background: linear-gradient(135deg, var(--gold), var(--gold-light)); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 20px; color: #0a0a0a; cursor: pointer; z-index: 100; opacity: 0; pointer-events: none; transition: var(--trans); box-shadow: 0 4px 16px rgba(201,168,76,0.3); border: none; }
.back-top-y8z1a.show-b2c4d { opacity: 1; pointer-events: auto; }
.back-top-y8z1a:hover { transform: translateY(-3px); }

/* ============================================================
   STORY TIMELINE
============================================================ */
.story-timeline { margin: 56px 0 0; }
.story-timeline-title { font-family: var(--font-h); font-size: clamp(22px,2.5vw,30px); font-weight: 800; color: var(--text-w); margin-bottom: 40px; }
.timeline-item { display: grid; grid-template-columns: 100px 1fr; gap: 0 28px; margin-bottom: 8px; position: relative; }
.timeline-item:not(:last-child) .timeline-line { background: linear-gradient(to bottom, var(--gold), rgba(201,168,76,0.15)); }
.timeline-left { display: flex; flex-direction: column; align-items: center; }
.timeline-year { font-family: var(--font-h); font-size: 13px; font-weight: 800; color: var(--gold); letter-spacing: 0.5px; text-align: center; padding: 6px 0; white-space: nowrap; }
.timeline-dot { width: 14px; height: 14px; background: linear-gradient(135deg, var(--gold), var(--gold-bright)); border-radius: 50%; flex-shrink: 0; box-shadow: 0 0 0 4px rgba(201,168,76,0.2); margin: 6px 0; }
.timeline-line { width: 2px; flex: 1; background: rgba(201,168,76,0.2); min-height: 32px; }
.timeline-content { background: var(--bg-card); border: 1px solid var(--border); border-left: 3px solid var(--gold); border-radius: var(--r-md); padding: 20px 24px; margin-bottom: 16px; }
.timeline-content h4 { color: var(--text-w); font-size: 15px; font-weight: 700; margin-bottom: 8px; }
.timeline-content p { font-size: 14px; color: var(--text-s); line-height: 1.75; margin: 0; }
.timeline-content .highlight-stat { display: inline-block; background: rgba(201,168,76,0.12); border: 1px solid rgba(201,168,76,0.3); color: var(--gold); font-size: 12px; font-weight: 700; padding: 2px 10px; border-radius: 50px; margin-top: 10px; }
@media (max-width: 600px) {
  .timeline-item { grid-template-columns: 72px 1fr; gap: 0 16px; }
  .timeline-year { font-size: 11px; }
}

/* ============================================================
   EBOOK / AUTHOR CARD
============================================================ */
.ebook-card { display: flex; gap: 32px; align-items: center; background: linear-gradient(135deg, var(--bg-card), var(--bg-elev)); border: 1px solid var(--border-gold); border-radius: var(--r-lg); padding: 32px 36px; }
.ebook-cover { width: 110px; height: 148px; background: linear-gradient(135deg, #1a1400, #3d2e00); border: 2px solid var(--gold); border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 48px; flex-shrink: 0; box-shadow: 6px 6px 20px rgba(0,0,0,0.5); }
.ebook-info { flex: 1; }
.ebook-info .ebook-label { font-size: 11px; font-weight: 700; color: var(--gold); text-transform: uppercase; letter-spacing: 2px; margin-bottom: 8px; }
.ebook-info h3 { font-family: var(--font-h); font-size: 22px; color: var(--text-w); margin-bottom: 8px; line-height: 1.3; }
.ebook-info p { font-size: 14px; color: var(--text-s); margin-bottom: 18px; line-height: 1.7; }
.ebook-info .ebook-meta { display: flex; gap: 20px; flex-wrap: wrap; margin-bottom: 18px; }
.ebook-info .ebook-meta span { font-size: 13px; color: var(--text-m); }
.ebook-info .ebook-meta strong { color: var(--text-l); }
@media (max-width: 640px) {
  .ebook-card { flex-direction: column; align-items: flex-start; padding: 24px; }
  .ebook-cover { width: 90px; height: 120px; font-size: 36px; }
}

/* ============================================================
   FUNNELOS IFRAME FORM
============================================================ */
.iframe-form-wrap { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--r-lg); padding: 32px; overflow: hidden; }
.iframe-form-wrap iframe { border-radius: var(--r-sm); display: block; }

/* ============================================================
   RESPONSIVE — TABLET
============================================================ */
@media (max-width: 1024px) {
  .offer-grid-w8x1y { grid-template-columns: repeat(2, 1fr); }
  .system-flow-j2k4l { flex-direction: column; }
  .system-step-m5n7o:first-child, .system-step-m5n7o:last-child { border-radius: var(--r-md); }
  .system-step-m5n7o { border-radius: var(--r-md); }
  .step-arrow-y8z1a { display: none; }
  .testimonial-grid-b2c4d { grid-template-columns: repeat(2, 1fr); }
  .feature-grid-z8a1b { grid-template-columns: repeat(2, 1fr); }
  .footer-grid-u5v7w { grid-template-columns: 1fr 1fr; }
  .credibility-grid-h5i7j { grid-template-columns: repeat(2, 1fr); }
}

/* ============================================================
   RESPONSIVE — MOBILE
============================================================ */
@media (max-width: 768px) {
  .nav-links-b8d3f { display: none; }
  .nav-toggle-j5l9m { display: flex; }
  .hero-h1-o6p8q { font-size: clamp(28px, 7vw, 42px); }
  .hero-ctas-x5y7z { flex-direction: column; align-items: center; }
  .hero-ctas-x5y7z > div { width: 100%; max-width: 320px; }
  .hero-ctas-x5y7z > div a { width: 100%; justify-content: center; }
  .trust-inner-s9t1u { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .about-grid-l8m1n { grid-template-columns: 1fr; gap: 40px; }
  .about-img-o2p4q { max-width: 360px; margin: 0 auto; }
  .about-creds-g2h4i { grid-template-columns: 1fr; }
  .problem-grid-p2q4r { grid-template-columns: 1fr; gap: 40px; }
  .offer-grid-w8x1y { grid-template-columns: 1fr; }
  .testimonial-grid-b2c4d { grid-template-columns: 1fr; }
  .feature-grid-z8a1b { grid-template-columns: 1fr; }
  .resource-grid-o5p7q { grid-template-columns: 1fr; }
  .contact-grid-n2o4p { grid-template-columns: 1fr; }
  .form-row-i5j7k { grid-template-columns: 1fr; }
  .footer-grid-u5v7w { grid-template-columns: 1fr; }
  .footer-bottom-j2k4l { flex-direction: column; text-align: center; }
  .footer-disclaimer-p8q1r { text-align: center; }
  .section-pad-e3f5g { padding: 64px 20px; }
  .section-pad-sm-h6i8j { padding: 56px 20px; }
  .credibility-grid-h5i7j { grid-template-columns: 1fr; }
  .community-stats-m2n4o { gap: 32px; }
  .urgency-reasons-q2r4s { flex-direction: column; align-items: center; }
  .page-hero { padding: 110px 20px 48px; }
  .page-hero-title { font-size: clamp(26px, 7vw, 40px); }
}
