/* ===========================
   DANDA WEBSITE — MAIN STYLES v2
   Mobile-first, fully responsive
   =========================== */

:root {
  --bg-dark:    #080c14;
  --bg-card:    #0f1624;
  --bg-card2:   #131d2e;
  --accent:     #c9932a;
  --accent2:    #e8b354;
  --gold:       linear-gradient(135deg, #c9932a, #e8b354, #c9932a);
  --text:       #e8eaf0;
  --text-muted: #8892a4;
  --border:     rgba(201,147,42,0.15);
  --border-light: rgba(255,255,255,0.06);
  --radius:     14px;
  --font-display: 'Playfair Display', serif;
  --font-body:    'DM Sans', sans-serif;
  --font-serif:   'DM Serif Text', serif;
  --shadow:     0 20px 60px rgba(0,0,0,0.5);
  --transition: 0.3s cubic-bezier(0.4,0,0.2,1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body { background: var(--bg-dark); color: var(--text); font-family: var(--font-body); font-size: 16px; line-height: 1.7; overflow-x: hidden; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* ── BUTTONS ── */
.btn-primary {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 14px 28px; background: var(--accent); color: #fff;
  font-family: var(--font-body); font-weight: 600; font-size: 15px;
  border: none; border-radius: 8px; cursor: pointer; transition: var(--transition);
  letter-spacing: 0.3px; white-space: nowrap; -webkit-tap-highlight-color: transparent;
}
.btn-primary:hover { background: var(--accent2); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(201,147,42,0.35); }
.btn-primary:active { transform: translateY(0); }
.btn-primary.full-width { width: 100%; }
.btn-ghost {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 13px 28px; background: transparent; color: var(--accent2);
  font-family: var(--font-body); font-weight: 500; font-size: 15px;
  border: 1px solid var(--accent); border-radius: 8px; cursor: pointer;
  transition: var(--transition); white-space: nowrap; -webkit-tap-highlight-color: transparent;
}
.btn-ghost:hover { background: rgba(201,147,42,0.1); transform: translateY(-2px); }

/* ── NAVBAR ── */
.navbar { position: fixed; top: 0; left: 0; right: 0; z-index: 100; transition: var(--transition); }
.navbar.scrolled {
  background: rgba(8,12,20,0.97);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}
.nav-inner { max-width: 1200px; margin: 0 auto; padding: 16px 20px; display: flex; align-items: center; gap: 12px; }
.nav-logo { font-family: var(--font-display); font-size: 22px; font-weight: 900; color: #fff; letter-spacing: 2px; flex-shrink: 0; }
.nav-logo span { color: var(--accent); }
.nav-links { display: none; list-style: none; gap: 28px; margin-left: auto; }
.nav-links a { font-size: 14px; font-weight: 500; color: var(--text-muted); transition: color var(--transition); }
.nav-links a:hover, .nav-links a.active { color: var(--accent2); }
.btn-nav { display: none; padding: 9px 20px; background: var(--accent); color: #fff; border-radius: 7px; font-size: 13px; font-weight: 600; transition: var(--transition); flex-shrink: 0; }
.btn-nav:hover { background: var(--accent2); }
.hamburger { display: flex; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 8px; margin-left: auto; -webkit-tap-highlight-color: transparent; border-radius: 6px; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--text); border-radius: 2px; transition: var(--transition); }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile drawer */
.mobile-menu { display: none; position: fixed; top: 0; left: 0; right: 0; bottom: 0; background: rgba(8,12,20,0.98); z-index: 99; flex-direction: column; align-items: center; justify-content: center; gap: 4px; padding: 80px 24px 40px; }
.mobile-menu.open { display: flex; animation: fadeUp 0.2s ease; }
.mobile-menu a { font-family: var(--font-display); font-size: 24px; font-weight: 700; color: var(--text); padding: 14px 0; width: 100%; text-align: center; border-bottom: 1px solid var(--border-light); transition: color var(--transition); }
.mobile-menu a:hover { color: var(--accent2); }
.mobile-menu .menu-cta { margin-top: 24px; width: 100%; }

/* ── HERO ── */
.hero { min-height: 100vh; min-height: 100dvh; display: flex; align-items: center; position: relative; overflow: hidden; padding: 100px 20px 60px; }
.hero-bg { position: absolute; inset: 0; pointer-events: none; }
.hero-orb { position: absolute; border-radius: 50%; filter: blur(100px); opacity: 0.12; }
.orb1 { width: 500px; height: 500px; background: var(--accent); top: -150px; right: -100px; }
.orb2 { width: 350px; height: 350px; background: #1e40af; bottom: -80px; left: -80px; }
.hero-grid { position: absolute; inset: 0; background-image: linear-gradient(rgba(201,147,42,0.03) 1px,transparent 1px),linear-gradient(90deg,rgba(201,147,42,0.03) 1px,transparent 1px); background-size: 50px 50px; }
.hero-content { max-width: 100%; position: relative; z-index: 2; animation: fadeUp 0.9s ease forwards; text-align: center; }
.hero-badge { display: inline-block; padding: 6px 16px; background: rgba(201,147,42,0.15); border: 1px solid var(--accent); border-radius: 100px; font-size: 11px; font-weight: 700; color: var(--accent2); letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 20px; }
.hero-title { font-family: var(--font-display); font-size: clamp(42px, 10vw, 88px); font-weight: 900; line-height: 1.05; margin-bottom: 20px; }
.word-danda { display: block; background: var(--gold); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; letter-spacing: 4px; }
.hero-title em { display: block; font-family: var(--font-serif); font-style: italic; font-size: clamp(18px,4vw,36px); font-weight: 400; color: var(--text-muted); margin-top: 8px; -webkit-text-fill-color: var(--text-muted); }
.hero-sub { font-size: clamp(15px,3vw,17px); color: var(--text-muted); line-height: 1.8; margin-bottom: 32px; max-width: 520px; margin-left: auto; margin-right: auto; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; justify-content: center; margin-bottom: 48px; }
.hero-actions .btn-primary, .hero-actions .btn-ghost { width: 100%; max-width: 280px; }
.hero-stats { display: flex; gap: 28px; flex-wrap: wrap; justify-content: center; }
.stat { display: flex; flex-direction: column; align-items: center; }
.stat-num { font-family: var(--font-display); font-size: clamp(28px,6vw,36px); font-weight: 900; color: var(--accent2); }
.stat-label { font-size: 12px; color: var(--text-muted); font-weight: 500; text-align: center; }
.hero-book-wrap { display: none; }

/* ── SECTION COMMONS ── */
.section-label { font-size: 11px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; color: var(--accent); margin-bottom: 12px; display: block; }
.section-title { font-family: var(--font-display); font-size: clamp(28px,5vw,52px); font-weight: 900; line-height: 1.15; margin-bottom: 16px; }
.section-title em { font-style: italic; background: var(--gold); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.section-intro { font-size: clamp(15px,2.5vw,17px); color: var(--text-muted); max-width: 680px; margin-bottom: 40px; line-height: 1.8; }

/* ── ABOUT ── */
.section-about { padding: 72px 0; background: linear-gradient(180deg,var(--bg-dark) 0%,var(--bg-card) 100%); }
.aspects-grid { display: grid; grid-template-columns: 1fr; gap: 16px; }
.aspect-card { background: var(--bg-card2); border: 1px solid var(--border-light); border-radius: var(--radius); padding: 24px; transition: var(--transition); opacity: 0; transform: translateY(30px); }
.aspect-card.visible { opacity: 1; transform: translateY(0); }
.aspect-card:hover { border-color: var(--border); transform: translateY(-3px); box-shadow: 0 16px 32px rgba(0,0,0,0.3); }
.aspect-icon { font-size: 28px; margin-bottom: 12px; }
.aspect-card h3 { font-family: var(--font-display); font-size: 18px; font-weight: 700; margin-bottom: 8px; }
.aspect-card p { font-size: 14px; color: var(--text-muted); line-height: 1.7; }

/* ── TESTIMONIALS ── */
.section-testimonials { padding: 72px 0; background: var(--bg-card); overflow: hidden; }
.testimonials-track { display: flex; gap: 16px; overflow-x: auto; padding: 8px 4px 20px; scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch; scrollbar-width: none; }
.testimonials-track::-webkit-scrollbar { display: none; }
.testimonial-card { flex: 0 0 min(320px, 85vw); background: var(--bg-card2); border: 1px solid var(--border-light); border-radius: var(--radius); padding: 28px 24px; scroll-snap-align: start; }
.testi-quote { font-family: var(--font-display); font-size: 60px; line-height: 0.6; color: var(--accent); opacity: 0.3; margin-bottom: 12px; }
.testimonial-card p { font-size: 15px; font-style: italic; line-height: 1.8; margin-bottom: 20px; }
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-avatar { width: 40px; height: 40px; border-radius: 50%; background: linear-gradient(135deg,var(--accent),var(--accent2)); display: flex; align-items: center; justify-content: center; font-size: 13px; font-weight: 700; color: #fff; flex-shrink: 0; }
.testi-author strong { display: block; font-size: 14px; font-weight: 600; }
.testi-author span { font-size: 12px; color: var(--text-muted); }
.testi-dots { display: flex; justify-content: center; gap: 8px; margin-top: 16px; }
.testi-dot { width: 8px; height: 8px; border-radius: 4px; background: var(--border); cursor: pointer; transition: var(--transition); border: none; }
.testi-dot.active { width: 24px; background: var(--accent); }

/* ── EXP PREVIEW ── */
.section-experiences-preview { padding: 72px 0; background: linear-gradient(180deg,var(--bg-card) 0%,var(--bg-dark) 100%); }
.exp-preview-grid { display: grid; grid-template-columns: 1fr; gap: 16px; margin-bottom: 32px; }
.exp-card-placeholder { background: var(--bg-card2); border: 1px solid var(--border-light); border-radius: var(--radius); padding: 24px; transition: var(--transition); }
.exp-card-placeholder:hover { border-color: var(--border); transform: translateY(-3px); }
.exp-tag { display: inline-block; padding: 4px 12px; background: rgba(201,147,42,0.1); border: 1px solid rgba(201,147,42,0.25); border-radius: 100px; font-size: 11px; font-weight: 700; letter-spacing: 1px; color: var(--accent2); text-transform: uppercase; margin-bottom: 14px; }
.exp-card-placeholder p { font-size: 14px; font-style: italic; line-height: 1.8; margin-bottom: 14px; }
.exp-meta { font-size: 13px; color: var(--text-muted); font-weight: 500; }
.exp-actions { display: flex; gap: 12px; flex-wrap: wrap; }

/* ── METER CTA ── */
.section-meter-cta { padding: 72px 0; background: radial-gradient(ellipse at 70% 50%,rgba(201,147,42,0.08) 0%,transparent 70%),var(--bg-card); }
.meter-cta-wrap { display: flex; flex-direction: column; gap: 40px; }
.meter-features { list-style: none; margin-bottom: 28px; }
.meter-features li { padding: 8px 0; font-size: 14px; color: var(--text-muted); border-bottom: 1px solid var(--border-light); display: flex; gap: 10px; }
.meter-btns { display: flex; gap: 12px; flex-wrap: wrap; }
.gauge-wrap { display: flex; justify-content: center; }
.gauge-svg { width: 240px; filter: drop-shadow(0 0 24px rgba(201,147,42,0.2)); }

/* ── CONTACT ── */
.section-contact { padding: 72px 0; background: var(--bg-dark); }
.contact-wrap { display: flex; flex-direction: column; gap: 40px; }
.contact-info p { font-size: 15px; color: var(--text-muted); line-height: 1.8; margin-bottom: 28px; }
.contact-items { display: flex; flex-direction: column; gap: 20px; }
.contact-item { display: flex; gap: 14px; align-items: flex-start; }
.contact-icon { font-size: 20px; width: 44px; height: 44px; background: rgba(201,147,42,0.1); border-radius: 10px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.contact-item strong { display: block; font-size: 11px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: var(--text-muted); margin-bottom: 2px; }
.contact-item a, .contact-item span { font-size: 14px; }
.contact-item a:hover { color: var(--accent2); }
.contact-form { background: var(--bg-card); border: 1px solid var(--border-light); border-radius: var(--radius); padding: 24px 20px; }
.form-row { display: grid; grid-template-columns: 1fr; gap: 0; }
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.form-group label { font-size: 11px; font-weight: 700; letter-spacing: 0.5px; color: var(--text-muted); text-transform: uppercase; }
.form-group input, .form-group select, .form-group textarea { background: var(--bg-dark); border: 1px solid var(--border-light); border-radius: 8px; padding: 12px 14px; color: var(--text); font-family: var(--font-body); font-size: 15px; transition: border-color var(--transition); outline: none; resize: vertical; width: 100%; -webkit-appearance: none; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--accent); }
.form-group select { cursor: pointer; }
.form-group select option { background: var(--bg-dark); }
.form-msg { margin-top: 10px; font-size: 14px; text-align: center; }
.form-msg.success { color: #22c55e; }
.form-msg.error { color: #ef4444; }

/* ── FOOTER ── */
.footer { background: #040810; padding: 48px 0 20px; border-top: 1px solid var(--border); }
.footer-top { display: flex; flex-direction: column; gap: 28px; margin-bottom: 28px; }
.footer-brand p { font-size: 13px; color: var(--text-muted); margin-top: 10px; line-height: 1.7; }
.footer-links h4 { font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--text-muted); margin-bottom: 14px; }
.footer-links ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.footer-links a { font-size: 13px; color: var(--text-muted); transition: color var(--transition); }
.footer-links a:hover { color: var(--accent2); }
.footer-bottom { border-top: 1px solid var(--border-light); padding-top: 20px; display: flex; flex-direction: column; gap: 6px; text-align: center; }
.footer-bottom p { font-size: 12px; color: var(--text-muted); }
.footer-bottom a { color: var(--accent2); }

/* ── PAGE HEADER ── */
.page-header { padding: 120px 20px 48px; text-align: center; background: radial-gradient(ellipse at 50% 0%,rgba(201,147,42,0.1) 0%,transparent 70%),var(--bg-dark); border-bottom: 1px solid var(--border); }
.page-header h1 { font-family: var(--font-display); font-size: clamp(32px,7vw,64px); font-weight: 900; margin-bottom: 14px; }
.page-header p { font-size: 15px; color: var(--text-muted); max-width: 560px; margin: 0 auto; line-height: 1.7; }

/* ── CEO CORNER ── */
.ceo-hero { padding: 120px 20px 60px; text-align: center; background: radial-gradient(ellipse at 50% 0%,rgba(201,147,42,0.12) 0%,transparent 70%),var(--bg-dark); position: relative; overflow: hidden; }
.ceo-hero::before { content:''; position:absolute; inset:0; background-image:linear-gradient(rgba(201,147,42,0.02) 1px,transparent 1px),linear-gradient(90deg,rgba(201,147,42,0.02) 1px,transparent 1px); background-size:40px 40px; pointer-events:none; }
.ceo-lock-icon { font-size: 48px; margin-bottom: 16px; }
.ceo-hero h1 { font-family: var(--font-display); font-size: clamp(32px,7vw,60px); font-weight: 900; margin-bottom: 16px; }
.ceo-hero > p { font-size: 16px; color: var(--text-muted); max-width: 560px; margin: 0 auto 32px; line-height: 1.8; position: relative; z-index: 1; }
.auth-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: 20px; padding: 36px 24px; max-width: 440px; margin: 0 auto; position: relative; z-index: 2; }
.auth-card h2 { font-family: var(--font-display); font-size: 24px; font-weight: 700; margin-bottom: 6px; text-align: center; }
.auth-card .auth-subtitle { font-size: 14px; color: var(--text-muted); text-align: center; margin-bottom: 28px; }
.auth-switch { text-align: center; margin-top: 18px; font-size: 14px; color: var(--text-muted); }
.auth-switch a { color: var(--accent2); cursor: pointer; text-decoration: underline; }
.auth-err { color: #ef4444; font-size: 13px; text-align: center; margin-top: 10px; min-height: 18px; }
.ceo-section { padding: 56px 0 80px; }
.ceo-welcome { background: var(--bg-card); border: 1px solid var(--border-light); border-radius: var(--radius); padding: 20px; margin-bottom: 28px; display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }
.ceo-avatar { width: 48px; height: 48px; border-radius: 50%; background: linear-gradient(135deg,var(--accent),var(--accent2)); display: flex; align-items: center; justify-content: center; font-size: 20px; flex-shrink: 0; }
.ceo-welcome-text strong { display: block; font-size: 16px; font-weight: 700; }
.ceo-welcome-text span { font-size: 13px; color: var(--text-muted); }
.ceo-logout { margin-left: auto; }
.ceo-content-block { margin-bottom: 36px; }
.ceo-content-block h2 { font-family: var(--font-display); font-size: clamp(22px,4vw,32px); font-weight: 700; margin-bottom: 14px; }
.ceo-content-block p { font-size: 15px; color: var(--text-muted); line-height: 1.8; margin-bottom: 12px; }
.ceo-content-block img { border-radius: var(--radius); margin: 16px 0; }
.ceo-quiz-section { padding: 56px 0; background: var(--bg-card); }
.quiz-card { background: var(--bg-card2); border: 1px solid var(--border-light); border-radius: 20px; padding: 28px 20px; max-width: 720px; margin: 0 auto; }
.quiz-progress-row { display: flex; justify-content: space-between; font-size: 13px; color: var(--text-muted); margin-bottom: 8px; }
.quiz-bar { height: 5px; background: var(--bg-dark); border-radius: 3px; overflow: hidden; margin-bottom: 28px; }
.quiz-bar-fill { height: 100%; background: var(--gold); border-radius: 3px; transition: width 0.4s ease; }
.quiz-q-num { font-size: 12px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--accent); margin-bottom: 10px; }
.quiz-q-text { font-family: var(--font-display); font-size: clamp(18px,3.5vw,24px); font-weight: 700; line-height: 1.45; margin-bottom: 24px; }
.quiz-options { display: flex; flex-direction: column; gap: 10px; margin-bottom: 24px; }
.quiz-option { background: var(--bg-dark); border: 2px solid var(--border-light); border-radius: 10px; padding: 14px 16px; font-size: 15px; color: var(--text); cursor: pointer; transition: var(--transition); text-align: left; font-family: var(--font-body); -webkit-tap-highlight-color: transparent; }
.quiz-option:hover { border-color: var(--accent); background: rgba(201,147,42,0.05); }
.quiz-option.selected { border-color: var(--accent); background: rgba(201,147,42,0.12); color: var(--accent2); }
.quiz-nav { display: flex; gap: 12px; }
.quiz-nav .btn-ghost { flex: 1; }
.quiz-nav .btn-primary { flex: 2; }
.ceo-plan-grid { display: grid; grid-template-columns: 1fr; gap: 14px; margin-top: 28px; }
.plan-card { background: var(--bg-card2); border: 1px solid var(--border-light); border-radius: var(--radius); padding: 22px; }
.plan-card .plan-week { font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--accent); margin-bottom: 8px; }
.plan-card h4 { font-family: var(--font-display); font-size: 17px; font-weight: 700; margin-bottom: 8px; }
.plan-card p { font-size: 14px; color: var(--text-muted); line-height: 1.7; }
.plan-card ul { list-style: none; margin-top: 10px; display: flex; flex-direction: column; gap: 6px; }
.plan-card ul li { font-size: 14px; color: var(--text-muted); display: flex; gap: 8px; }
.plan-card ul li::before { content: '→'; color: var(--accent); flex-shrink: 0; }
.quiz-result-card { background: var(--bg-card2); border: 1px solid var(--border); border-radius: 20px; padding: 32px 24px; max-width: 640px; margin: 0 auto; text-align: center; }
.quiz-result-card h3 { font-family: var(--font-display); font-size: 28px; font-weight: 700; margin-bottom: 12px; }
.quiz-result-card p { font-size: 15px; color: var(--text-muted); line-height: 1.8; margin-bottom: 24px; }
.quiz-result-insights { text-align: left; margin-bottom: 24px; }
.quiz-result-insights h4 { font-size: 14px; font-weight: 700; margin: 16px 0 8px; }
.quiz-result-insights li { font-size: 14px; color: var(--text-muted); padding: 6px 0; border-bottom: 1px solid var(--border-light); list-style: none; display: flex; gap: 8px; }
.quiz-result-insights li::before { content: '✦'; color: var(--accent); }

/* ── ANIMATIONS ── */
@keyframes fadeUp { from { opacity:0; transform:translateY(40px); } to { opacity:1; transform:translateY(0); } }

/* ── TABLET 640px ── */
@media (min-width: 640px) {
  .aspects-grid { grid-template-columns: 1fr 1fr; }
  .exp-preview-grid { grid-template-columns: 1fr 1fr; }
  .form-row { grid-template-columns: 1fr 1fr; gap: 16px; }
  .contact-form { padding: 32px; }
  .hero-actions .btn-primary, .hero-actions .btn-ghost { width: auto; }
  .footer-top { flex-direction: row; flex-wrap: wrap; }
  .footer-brand { flex: 1 1 100%; }
  .footer-links { flex: 1 1 140px; }
  .footer-bottom { flex-direction: row; justify-content: space-between; text-align: left; }
  .ceo-plan-grid { grid-template-columns: 1fr 1fr; }
  .quiz-card { padding: 36px 40px; }
  .auth-card { padding: 40px 36px; }
}

/* ── TABLET 768px ── */
@media (min-width: 768px) {
  .nav-links { display: flex; margin-left: auto; }
  .btn-nav { display: inline-block; }
  .hamburger { display: none; }
  .mobile-menu { display: none !important; }
  .hero { text-align: left; padding: 110px 24px 80px; }
  .hero-content { max-width: 560px; text-align: left; }
  .hero-badge { display: inline-block; }
  .hero-stats { justify-content: flex-start; }
  .hero-actions { justify-content: flex-start; }
  .hero-sub { margin-left: 0; margin-right: 0; }
  .exp-preview-grid { grid-template-columns: repeat(3, 1fr); }
  .aspects-grid { gap: 20px; }
  .contact-wrap { flex-direction: row; gap: 56px; align-items: flex-start; }
  .contact-info { flex: 1; }
  .contact-form { flex: 1.4; }
  .meter-cta-wrap { flex-direction: row; align-items: center; gap: 60px; }
  .meter-cta-text { flex: 1; }
  .meter-cta-visual { flex: 0 0 280px; }
  .section-about, .section-testimonials, .section-experiences-preview, .section-meter-cta, .section-contact { padding: 90px 0; }
}

/* ── DESKTOP 1024px ── */
@media (min-width: 1024px) {
  .hero { padding: 130px 24px 80px; }
  .hero-book-wrap {
    display: block; position: absolute; right: 8%; top: 50%;
    transform: translateY(-50%); z-index: 2;
    animation: floatBook 4s ease-in-out infinite;
  }
  @keyframes floatBook {
    0%,100% { transform: translateY(-50%) rotate3d(0.3,1,0,15deg); }
    50% { transform: translateY(calc(-50% - 20px)) rotate3d(0.3,1,0,20deg); }
  }
  .book-3d { position: relative; transform-style: preserve-3d; transform: perspective(1000px) rotateY(-20deg) rotateX(5deg); width: 220px; height: 300px; }
  .book-face { position: absolute; border-radius: 4px 12px 12px 4px; }
  .book-face.front { width:220px; height:300px; background:linear-gradient(160deg,#1a2740 0%,#0d1520 60%,#1a2740 100%); border:1px solid rgba(201,147,42,0.3); display:flex; align-items:center; justify-content:center; box-shadow:0 40px 80px rgba(0,0,0,0.7),inset 0 0 40px rgba(201,147,42,0.05); }
  .book-face.side { width:28px; height:300px; background:linear-gradient(90deg,#0a1020,#1a2740); left:-28px; top:0; border-radius:4px 0 0 4px; }
  .book-cover-inner { text-align:center; padding:30px 20px; }
  .book-symbol { font-size:36px; margin-bottom:16px; }
  .book-cover-inner h2 { font-family:var(--font-display); font-size:32px; font-weight:900; background:var(--gold); -webkit-background-clip:text; -webkit-text-fill-color:transparent; background-clip:text; letter-spacing:4px; margin-bottom:4px; }
  .book-cover-inner p { font-family:var(--font-serif); font-style:italic; font-size:13px; color:var(--text-muted); margin-bottom:20px; }
  .book-line { width:60px; height:1px; background:var(--gold); margin:0 auto 16px; }
  .book-author { font-size:12px; color:var(--accent2); letter-spacing:1px; font-weight:600; text-transform:uppercase; }
  .aspects-grid { grid-template-columns: repeat(3,1fr); gap: 24px; }
  .footer-top { flex-wrap: nowrap; }
  .footer-brand { flex: 2; }
  .ceo-plan-grid { grid-template-columns: repeat(4,1fr); }
}
