/* ============================================
   THE ACE BLUEPRINT - Global Stylesheet
   Dark, premium, Palantir/Linear-grade
   ============================================ */

/* --- RESET & BASE --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
body { font-family: 'DM Sans', sans-serif; background: #08080A; color: #E0E0E0; line-height: 1.7; font-size: 16px; overflow-x: hidden; }
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: color 0.3s; }
ul, ol { list-style: none; }
button, input, textarea, select { font-family: inherit; font-size: inherit; border: none; outline: none; background: none; }

/* --- TYPOGRAPHY --- */
h1, h2, h3, h4, h5, h6 { font-family: 'Playfair Display', serif; color: #FFFFFF; letter-spacing: -0.02em; line-height: 1.15; font-weight: 700; }
h1 { font-size: clamp(2.75rem, 6vw, 4.5rem); }
h2 { font-size: clamp(2rem, 4.5vw, 3.25rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); }
h4 { font-size: 1.25rem; }
p { color: #A0A0A8; line-height: 1.8; }
.mono { font-family: 'JetBrains Mono', monospace; }
.gold { color: #C8A55C; }
.gold-gradient { background: linear-gradient(135deg, #C8A55C, #E8D5A3); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.eyebrow { font-family: 'JetBrains Mono', monospace; font-size: 0.75rem; font-weight: 500; letter-spacing: 0.2em; text-transform: uppercase; color: #C8A55C; margin-bottom: 1rem; display: block; }

/* --- LAYOUT --- */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.container-narrow { max-width: 900px; margin: 0 auto; padding: 0 24px; }
.section { padding: 120px 0; }
.section-sm { padding: 80px 0; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 40px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.text-center { text-align: center; }

/* --- NAVIGATION --- */
.nav { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; padding: 0 24px; transition: all 0.4s; }
.nav.scrolled { background: rgba(8, 8, 10, 0.95); backdrop-filter: blur(20px); border-bottom: 1px solid rgba(200, 165, 92, 0.1); }
.nav-inner { max-width: 1200px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; height: 80px; }
.nav-logo { display: flex; align-items: center; gap: 12px; font-family: 'Playfair Display', serif; font-weight: 700; font-size: 1.25rem; color: #FFFFFF; }
.nav-logo span { color: #C8A55C; }
.nav-logo img { height: 40px; width: auto; }
.nav-links { display: flex; align-items: center; gap: 36px; }
.nav-links a { font-family: 'DM Sans', sans-serif; font-size: 0.875rem; font-weight: 500; color: #A0A0A8; letter-spacing: 0.02em; transition: color 0.3s; position: relative; }
.nav-links a:hover, .nav-links a.active { color: #FFFFFF; }
.nav-links a::after { content: ''; position: absolute; bottom: -4px; left: 0; width: 0; height: 1px; background: #C8A55C; transition: width 0.3s; }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-cta { font-family: 'DM Sans', sans-serif; display: inline-flex; align-items: center; gap: 8px; padding: 12px 28px; background: linear-gradient(135deg, #C8A55C, #B8923A); color: #FFFFFF; font-weight: 700; font-size: 0.8125rem; letter-spacing: 0.08em; text-transform: uppercase; border-radius: 6px; transition: all 0.3s; cursor: pointer; }
.nav-cta:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(200, 165, 92, 0.3); }
.mobile-toggle { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 8px; }
.mobile-toggle span { display: block; width: 24px; height: 2px; background: #fff; transition: all 0.3s; }
.mobile-menu { display: none; position: fixed; top: 80px; left: 0; right: 0; background: rgba(8, 8, 10, 0.98); backdrop-filter: blur(20px); padding: 24px; border-bottom: 1px solid rgba(200, 165, 92, 0.1); }
.mobile-menu.open { display: block; }
.mobile-menu a { display: block; padding: 16px 0; font-size: 1rem; color: #A0A0A8; border-bottom: 1px solid rgba(255,255,255,0.05); }
.mobile-menu a:hover { color: #C8A55C; }
.mobile-menu .nav-cta { display: block; text-align: center; margin-top: 16px; }

/* --- BUTTONS --- */
.btn { display: inline-flex; align-items: center; gap: 10px; padding: 16px 36px; font-family: 'DM Sans', sans-serif; font-weight: 700; font-size: 0.875rem; letter-spacing: 0.06em; text-transform: uppercase; border-radius: 6px; transition: all 0.3s; cursor: pointer; }
.btn-primary { background: linear-gradient(135deg, #C8A55C, #B8923A); color: #08080A; }
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 12px 40px rgba(200, 165, 92, 0.35); }
.btn-secondary { background: transparent; color: #C8A55C; border: 1px solid rgba(200, 165, 92, 0.4); }
.btn-secondary:hover { border-color: #C8A55C; background: rgba(200, 165, 92, 0.08); transform: translateY(-2px); }
.btn-ghost { background: transparent; color: #FFFFFF; border: 1px solid rgba(255,255,255,0.15); }
.btn-ghost:hover { border-color: rgba(255,255,255,0.4); transform: translateY(-2px); }
.btn svg { width: 16px; height: 16px; }
.btn-group { display: flex; gap: 16px; flex-wrap: wrap; }

/* --- CARDS --- */
.card { background: #0F0F13; border: 1px solid rgba(255, 255, 255, 0.06); border-radius: 16px; padding: 40px; transition: all 0.4s; }
.card:hover { border-color: rgba(200, 165, 92, 0.25); transform: translateY(-6px); box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4), 0 0 40px rgba(200, 165, 92, 0.06); }
.card-icon { width: 48px; height: 48px; border-radius: 12px; background: rgba(200, 165, 92, 0.08); display: flex; align-items: center; justify-content: center; margin-bottom: 20px; }
.card-icon svg { width: 24px; height: 24px; stroke: #C8A55C; fill: none; stroke-width: 1.5; }
.card-gold { border-color: rgba(200, 165, 92, 0.2); background: linear-gradient(135deg, rgba(200, 165, 92, 0.04), rgba(200, 165, 92, 0.01)); }

/* --- STAT CARDS --- */
.stat-card { text-align: center; padding: 40px 24px; }
.stat-number { font-family: 'Playfair Display', serif; font-size: clamp(2.5rem, 5vw, 3.5rem); font-weight: 700; color: #C8A55C; line-height: 1; margin-bottom: 8px; }
.stat-label { font-size: 0.875rem; color: #A0A0A8; font-weight: 500; }

/* --- HERO SECTIONS --- */
.hero { position: relative; min-height: 100vh; display: flex; align-items: center; padding-top: 80px; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-bg::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at 30% 50%, rgba(200, 165, 92, 0.06) 0%, transparent 60%); }
.hero-bg::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 200px; background: linear-gradient(to top, #08080A, transparent); }
.hero-content { position: relative; z-index: 1; }
.hero .subtitle { font-size: clamp(1rem, 2vw, 1.25rem); color: #A0A0A8; max-width: 600px; margin-top: 24px; line-height: 1.8; }
.hero-page { min-height: 70vh; }

/* --- PROOF BAR --- */
.proof-bar { display: flex; justify-content: center; gap: 48px; flex-wrap: wrap; padding: 20px 0; }
.proof-item { text-align: center; }
.proof-number { font-family: 'Playfair Display', serif; font-size: 1.5rem; font-weight: 700; color: #C8A55C; }
.proof-label { font-size: 0.75rem; color: #666; font-family: 'JetBrains Mono', monospace; letter-spacing: 0.1em; text-transform: uppercase; }

/* --- TICKER --- */
.ticker-wrap { overflow: hidden; padding: 24px 0; border-top: 1px solid rgba(255,255,255,0.04); border-bottom: 1px solid rgba(255,255,255,0.04); background: rgba(15,15,19,0.5); }
.ticker { display: flex; animation: ticker 40s linear infinite; white-space: nowrap; }
.ticker span { font-family: 'JetBrains Mono', monospace; font-size: 0.75rem; color: #555; letter-spacing: 0.15em; text-transform: uppercase; padding: 0 32px; }
@keyframes ticker { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* --- SECTION HEADERS --- */
.section-header { margin-bottom: 64px; }
.section-header h2 { margin-bottom: 16px; }
.section-header p { max-width: 640px; font-size: 1.125rem; }
.section-header.center { text-align: center; }
.section-header.center p { margin: 0 auto; }
.section-divider { width: 60px; height: 2px; background: linear-gradient(90deg, #C8A55C, transparent); margin: 20px 0; }
.section-header.center .section-divider { margin: 20px auto; }

/* --- TESTIMONIAL CARDS --- */
.testimonial-card { padding: 40px; background: #0F0F13; border: 1px solid rgba(255,255,255,0.06); border-radius: 16px; }
.testimonial-quote { font-size: 1.0625rem; color: #D0D0D0; line-height: 1.8; font-style: italic; margin-bottom: 24px; }
.testimonial-author { display: flex; align-items: center; gap: 16px; }
.testimonial-avatar { width: 48px; height: 48px; border-radius: 50%; background: linear-gradient(135deg, #C8A55C, #B8923A); display: flex; align-items: center; justify-content: center; font-weight: 700; color: #08080A; font-size: 1rem; }
.testimonial-name { font-weight: 700; color: #fff; font-size: 0.9375rem; }
.testimonial-role { font-size: 0.8125rem; color: #666; }

/* --- PRICING CARDS --- */
.pricing-card { padding: 48px 40px; background: #0F0F13; border: 1px solid rgba(255,255,255,0.06); border-radius: 16px; transition: all 0.4s; display: flex; flex-direction: column; }
.pricing-card.featured { border-color: rgba(200, 165, 92, 0.3); background: linear-gradient(180deg, rgba(200,165,92,0.06) 0%, #0F0F13 40%); position: relative; }
.pricing-card.featured::before { content: 'MOST POPULAR'; position: absolute; top: -12px; left: 50%; transform: translateX(-50%); background: linear-gradient(135deg, #C8A55C, #B8923A); color: #08080A; font-family: 'JetBrains Mono', monospace; font-size: 0.625rem; font-weight: 700; letter-spacing: 0.15em; padding: 6px 16px; border-radius: 20px; }
.pricing-card:hover { transform: translateY(-8px); box-shadow: 0 24px 64px rgba(0,0,0,0.4); }
.pricing-tag { font-family: 'JetBrains Mono', monospace; font-size: 0.6875rem; letter-spacing: 0.15em; text-transform: uppercase; color: #C8A55C; margin-bottom: 12px; }
.pricing-name { font-size: 1.5rem; margin-bottom: 8px; }
.pricing-price { font-family: 'Playfair Display', serif; font-size: 2.5rem; font-weight: 700; color: #C8A55C; margin-bottom: 4px; }
.pricing-freq { font-size: 0.8125rem; color: #666; margin-bottom: 24px; }
.pricing-desc { font-size: 0.9375rem; color: #A0A0A8; margin-bottom: 32px; line-height: 1.7; }
.pricing-features { flex: 1; margin-bottom: 32px; }
.pricing-features li { padding: 10px 0; font-size: 0.9375rem; color: #C0C0C0; display: flex; align-items: flex-start; gap: 12px; border-bottom: 1px solid rgba(255,255,255,0.04); }
.pricing-features li svg { width: 18px; height: 18px; stroke: #C8A55C; fill: none; flex-shrink: 0; margin-top: 2px; }
.pricing-card .btn { width: 100%; justify-content: center; }

/* --- BEFORE/AFTER --- */
.ba-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0; border-radius: 16px; overflow: hidden; border: 1px solid rgba(255,255,255,0.06); }
.ba-col { padding: 48px 40px; }
.ba-col.before { background: rgba(200, 40, 40, 0.04); border-right: 1px solid rgba(255,255,255,0.06); }
.ba-col.after { background: rgba(40, 200, 100, 0.04); }
.ba-col h3 { font-size: 1.125rem; margin-bottom: 32px; display: flex; align-items: center; gap: 12px; }
.ba-col.before h3 { color: #E05555; }
.ba-col.after h3 { color: #3DD68C; }
.ba-item { padding: 16px 0; border-bottom: 1px solid rgba(255,255,255,0.04); font-size: 0.9375rem; color: #C0C0C0; display: flex; align-items: center; gap: 12px; }
.ba-item svg { width: 16px; height: 16px; flex-shrink: 0; }
.ba-col.before .ba-item svg { stroke: #E05555; fill: none; }
.ba-col.after .ba-item svg { stroke: #3DD68C; fill: none; }

/* --- TIMELINE --- */
.timeline { position: relative; padding: 40px 0; }
.timeline::before { content: ''; position: absolute; left: 50%; top: 0; bottom: 0; width: 2px; background: linear-gradient(to bottom, transparent, rgba(200,165,92,0.3), rgba(200,165,92,0.3), transparent); transform: translateX(-50%); }
.timeline-item { display: grid; grid-template-columns: 1fr 60px 1fr; gap: 0; margin-bottom: 48px; align-items: start; }
.timeline-item:nth-child(even) .timeline-left { order: 3; text-align: left; }
.timeline-item:nth-child(even) .timeline-right { order: 1; text-align: right; }
.timeline-dot { width: 16px; height: 16px; border-radius: 50%; background: #C8A55C; border: 3px solid #08080A; box-shadow: 0 0 0 2px #C8A55C; justify-self: center; align-self: start; margin-top: 6px; }
.timeline-content { padding: 24px; background: #0F0F13; border: 1px solid rgba(255,255,255,0.06); border-radius: 12px; }
.timeline-week { font-family: 'JetBrains Mono', monospace; font-size: 0.6875rem; letter-spacing: 0.15em; color: #C8A55C; text-transform: uppercase; margin-bottom: 8px; }
.timeline-title { font-size: 1.125rem; margin-bottom: 8px; }

/* --- TABS --- */
.tabs-nav { display: flex; gap: 4px; background: #0F0F13; border-radius: 12px; padding: 4px; border: 1px solid rgba(255,255,255,0.06); margin-bottom: 40px; overflow-x: auto; }
.tab-btn { padding: 14px 24px; font-family: 'DM Sans', sans-serif; font-size: 0.8125rem; font-weight: 600; color: #666; background: transparent; border-radius: 8px; cursor: pointer; transition: all 0.3s; white-space: nowrap; border: none; }
.tab-btn.active, .tab-btn:hover { color: #08080A; background: linear-gradient(135deg, #C8A55C, #B8923A); }
.tab-content { display: none; animation: fadeUp 0.4s; }
.tab-content.active { display: block; }

/* --- FORMS --- */
.form-group { margin-bottom: 24px; }
.form-label { display: block; font-family: 'JetBrains Mono', monospace; font-size: 0.6875rem; letter-spacing: 0.12em; text-transform: uppercase; color: #888; margin-bottom: 8px; font-weight: 500; }
.form-input, .form-select, .form-textarea { width: 100%; padding: 14px 18px; background: #0F0F13; border: 1px solid rgba(255,255,255,0.1); border-radius: 8px; color: #fff; font-size: 0.9375rem; transition: all 0.3s; }
.form-input:focus, .form-select:focus, .form-textarea:focus { border-color: #C8A55C; box-shadow: 0 0 0 3px rgba(200,165,92,0.1); background: #121218; }
.form-input::placeholder, .form-textarea::placeholder { color: #444; }
.form-textarea { min-height: 140px; resize: vertical; }
.form-select { 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='%23666' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 16px center; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-required { color: #C8A55C; }

/* --- TOGGLE CHIPS --- */
.toggle-grid { display: flex; flex-wrap: wrap; gap: 10px; }
.toggle-chip { padding: 10px 20px; background: #0F0F13; border: 1px solid rgba(255,255,255,0.1); border-radius: 8px; color: #A0A0A8; font-size: 0.8125rem; cursor: pointer; transition: all 0.3s; user-select: none; }
.toggle-chip.selected { background: rgba(200,165,92,0.1); border-color: #C8A55C; color: #C8A55C; }

/* --- QUIZ --- */
.quiz-progress { height: 4px; background: #1A1A1E; border-radius: 2px; margin-bottom: 48px; overflow: hidden; }
.quiz-progress-bar { height: 100%; background: linear-gradient(90deg, #C8A55C, #E8D5A3); border-radius: 2px; transition: width 0.5s; }
.quiz-option { padding: 20px 24px; background: #0F0F13; border: 1px solid rgba(255,255,255,0.08); border-radius: 12px; cursor: pointer; transition: all 0.3s; margin-bottom: 12px; display: flex; align-items: center; gap: 16px; }
.quiz-option:hover { border-color: rgba(200,165,92,0.3); background: #121218; }
.quiz-option.selected { border-color: #C8A55C; background: rgba(200,165,92,0.06); }
.quiz-option-radio { width: 20px; height: 20px; border-radius: 50%; border: 2px solid rgba(255,255,255,0.15); flex-shrink: 0; transition: all 0.3s; display: flex; align-items: center; justify-content: center; }
.quiz-option.selected .quiz-option-radio { border-color: #C8A55C; }
.quiz-option.selected .quiz-option-radio::after { content: ''; width: 10px; height: 10px; border-radius: 50%; background: #C8A55C; }

/* --- STEPS INDICATOR --- */
.steps { display: flex; align-items: center; justify-content: center; gap: 8px; margin-bottom: 48px; }
.step { display: flex; align-items: center; gap: 8px; }
.step-num { width: 32px; height: 32px; border-radius: 50%; background: #1A1A1E; color: #555; display: flex; align-items: center; justify-content: center; font-family: 'JetBrains Mono', monospace; font-size: 0.75rem; font-weight: 600; transition: all 0.3s; }
.step.active .step-num { background: linear-gradient(135deg, #C8A55C, #B8923A); color: #08080A; }
.step.done .step-num { background: #C8A55C; color: #08080A; }
.step-label { font-size: 0.8125rem; color: #555; }
.step.active .step-label { color: #C8A55C; }
.step.done .step-label { color: #888; }
.step-line { width: 40px; height: 1px; background: #1A1A1E; }

/* --- COMPARISON TABLE --- */
.comp-table { width: 100%; border-collapse: collapse; font-size: 0.875rem; }
.comp-table th { padding: 16px 20px; text-align: left; font-family: 'JetBrains Mono', monospace; font-size: 0.6875rem; letter-spacing: 0.12em; text-transform: uppercase; color: #C8A55C; border-bottom: 1px solid rgba(200,165,92,0.2); background: rgba(200,165,92,0.04); }
.comp-table td { padding: 14px 20px; border-bottom: 1px solid rgba(255,255,255,0.04); color: #A0A0A8; }
.comp-table tr:hover td { background: rgba(200,165,92,0.02); }
.comp-table .check svg { width: 18px; height: 18px; stroke: #C8A55C; fill: none; }
.comp-table .dash { color: #333; }

/* --- CONTACT CARDS --- */
.contact-card { display: flex; align-items: center; gap: 20px; padding: 32px; background: #0F0F13; border: 1px solid rgba(255,255,255,0.06); border-radius: 16px; transition: all 0.3s; }
.contact-card:hover { border-color: rgba(200,165,92,0.2); transform: translateY(-4px); }
.contact-icon { width: 56px; height: 56px; border-radius: 14px; background: rgba(200,165,92,0.08); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.contact-icon svg { width: 24px; height: 24px; stroke: #C8A55C; fill: none; stroke-width: 1.5; }

/* --- CREED --- */
.creed-frame { border: 1px solid rgba(200,165,92,0.3); border-radius: 20px; padding: 64px 56px; background: linear-gradient(180deg, rgba(200,165,92,0.04) 0%, transparent 100%); position: relative; text-align: center; }
.creed-frame::before, .creed-frame::after { content: ''; position: absolute; width: 40px; height: 40px; border-color: #C8A55C; }
.creed-frame::before { top: 20px; left: 20px; border-top: 2px solid; border-left: 2px solid; }
.creed-frame::after { bottom: 20px; right: 20px; border-bottom: 2px solid; border-right: 2px solid; }
.creed-title { font-family: 'JetBrains Mono', monospace; font-size: 0.75rem; letter-spacing: 0.2em; color: #C8A55C; text-transform: uppercase; margin-bottom: 32px; }
.creed-text { font-family: 'Playfair Display', serif; font-size: 1.25rem; color: #D0D0D0; line-height: 2; font-style: italic; }
.creed-text p { color: #D0D0D0; margin-bottom: 16px; }

/* --- FOOTER --- */
.footer { padding: 80px 0 40px; border-top: 1px solid rgba(255,255,255,0.04); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 60px; }
.footer-brand { }
.footer-brand img { height: 36px; margin-bottom: 16px; }
.footer-brand p { font-size: 0.875rem; color: #555; max-width: 300px; }
.footer-heading { font-family: 'JetBrains Mono', monospace; font-size: 0.6875rem; letter-spacing: 0.15em; text-transform: uppercase; color: #C8A55C; margin-bottom: 20px; }
.footer-links a { display: block; font-size: 0.875rem; color: #666; padding: 6px 0; transition: color 0.3s; }
.footer-links a:hover { color: #C8A55C; }
.footer-bottom { padding-top: 32px; border-top: 1px solid rgba(255,255,255,0.04); display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px; }
.footer-copy { font-size: 0.75rem; color: #444; }

/* --- CTA BANNER --- */
.cta-banner { background: linear-gradient(135deg, rgba(200,165,92,0.08), rgba(200,165,92,0.02)); border: 1px solid rgba(200,165,92,0.15); border-radius: 20px; padding: 80px 56px; text-align: center; }
.cta-banner h2 { margin-bottom: 16px; }
.cta-banner p { max-width: 560px; margin: 0 auto 40px; font-size: 1.0625rem; }

/* --- PHOTO STYLES --- */
.hero-photo { position: relative; }
.hero-photo img { border-radius: 16px; width: 100%; object-fit: cover; }
.hero-photo::before { content: ''; position: absolute; inset: -4px; border-radius: 20px; background: linear-gradient(135deg, rgba(200,165,92,0.3), transparent 60%); z-index: -1; }
.photo-badge { position: absolute; background: rgba(8,8,10,0.9); backdrop-filter: blur(10px); border: 1px solid rgba(200,165,92,0.2); border-radius: 10px; padding: 12px 18px; }
.photo-badge .badge-num { font-family: 'Playfair Display', serif; font-size: 1.25rem; font-weight: 700; color: #C8A55C; }
.photo-badge .badge-label { font-size: 0.6875rem; color: #888; font-family: 'JetBrains Mono', monospace; }

/* --- ANIMATIONS --- */
@keyframes fadeUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }
.fade-up { opacity: 0; transform: translateY(24px); transition: all 0.7s cubic-bezier(0.16, 1, 0.3, 1); }
.fade-up.visible { opacity: 1; transform: translateY(0); }
.stagger-1 { transition-delay: 0.1s; }
.stagger-2 { transition-delay: 0.2s; }
.stagger-3 { transition-delay: 0.3s; }
.stagger-4 { transition-delay: 0.4s; }

/* --- DOWNLOAD CARDS --- */
.download-card { padding: 40px; background: #0F0F13; border: 1px solid rgba(255,255,255,0.06); border-radius: 16px; transition: all 0.4s; }
.download-card:hover { border-color: rgba(200,165,92,0.2); transform: translateY(-4px); }
.download-icon { width: 56px; height: 56px; border-radius: 14px; background: rgba(200,165,92,0.08); display: flex; align-items: center; justify-content: center; margin-bottom: 20px; }
.download-icon svg { width: 24px; height: 24px; stroke: #C8A55C; fill: none; stroke-width: 1.5; }
.download-meta { font-family: 'JetBrains Mono', monospace; font-size: 0.6875rem; color: #555; letter-spacing: 0.1em; margin-top: 16px; }

/* --- IMAGE PLACEHOLDER --- */
.img-placeholder { background: linear-gradient(135deg, rgba(200,165,92,0.08), rgba(200,165,92,0.02)); border: 1px dashed rgba(200,165,92,0.2); border-radius: 16px; display: flex; align-items: center; justify-content: center; color: #555; font-family: 'JetBrains Mono', monospace; font-size: 0.75rem; min-height: 400px; }

/* --- SUCCESS STATE --- */
.success-state { text-align: center; padding: 80px 40px; }
.success-icon { width: 80px; height: 80px; border-radius: 50%; background: rgba(200,165,92,0.1); display: flex; align-items: center; justify-content: center; margin: 0 auto 32px; }
.success-icon svg { width: 40px; height: 40px; stroke: #C8A55C; fill: none; stroke-width: 1.5; }

/* --- RESPONSIVE --- */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .section { padding: 80px 0; }
  .nav-links { display: none; }
  .mobile-toggle { display: flex; }
  .grid-2, .grid-3 { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: 1fr; }
  .hero { min-height: auto; padding: 120px 0 80px; }
  .hero-page { min-height: auto; }
  .btn-group { flex-direction: column; }
  .ba-grid { grid-template-columns: 1fr; }
  .ba-col.before { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.06); }
  .timeline::before { left: 20px; }
  .timeline-item { grid-template-columns: 40px 1fr; }
  .timeline-item .timeline-right, .timeline-item:nth-child(even) .timeline-right { order: unset; text-align: left; }
  .timeline-item .timeline-left, .timeline-item:nth-child(even) .timeline-left { display: none; }
  .proof-bar { gap: 24px; }
  .form-row { grid-template-columns: 1fr; }
  .cta-banner { padding: 56px 32px; }
  .creed-frame { padding: 48px 32px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .tabs-nav { flex-wrap: nowrap; }
  .comp-table { font-size: 0.75rem; }
  .comp-table th, .comp-table td { padding: 10px 12px; }
}

@media (max-width: 480px) {
  h1 { font-size: 2.25rem; }
  h2 { font-size: 1.75rem; }
  .section { padding: 60px 0; }
  .card { padding: 28px; }
  .pricing-card { padding: 32px 24px; }
}
