/* ═══════════════════════════════════════
   MIAWSLOT ALTERNATIF — SHARED STYLESHEET
   LORD PORS
═══════════════════════════════════════ */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

:root {
  --bg:          #07091A;
  --surface:     #0D1225;
  --surface-2:   #131833;
  --surface-3:   #1A2040;
  --gold:        #C9A84C;
  --gold-bright: #E2C05A;
  --gold-text:   #F5D878;
  --gold-glow:   rgba(201,168,76,.2);
  --gold-border: rgba(201,168,76,.28);
  --gold-dim:    rgba(201,168,76,.1);
  --text-1:      #EFF0F8;
  --text-2:      #8B94B8;
  --text-3:      #525C7E;
  --green:       #22c55e;
  --border:      rgba(255,255,255,.06);
  --border-s:    rgba(255,255,255,.1);
  --max-w:       1160px;
  --font:        'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  --r-sm:        8px;
  --r-md:        14px;
  --r-lg:        20px;
  --r-xl:        28px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font); background: var(--bg); color: var(--text-1); line-height: 1.65; -webkit-font-smoothing: antialiased; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; transition: color .2s; }

/* ── UTIL ── */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }
.sr-only { position: absolute; width:1px; height:1px; overflow:hidden; clip:rect(0,0,0,0); white-space:nowrap; }

/* ── BUTTONS ── */
.btn-primary {
  display: inline-flex; align-items: center; gap: 7px;
  background: var(--gold); color: #07091A;
  padding: 14px 30px; border-radius: var(--r-md);
  font-weight: 700; font-size: .95rem;
  transition: background .2s, transform .15s;
}
.btn-primary:hover { background: var(--gold-bright); transform: translateY(-2px); }
.btn-ghost {
  display: inline-flex; align-items: center; gap: 7px;
  border: 1px solid var(--border-s); color: var(--text-2);
  padding: 14px 30px; border-radius: var(--r-md);
  font-weight: 600; font-size: .95rem;
  transition: border-color .2s, color .2s;
}
.btn-ghost:hover { border-color: var(--gold-border); color: var(--gold-text); }
.btn-sm { padding: 10px 20px; font-size: .875rem; }

/* ══════════════════════════════
   HEADER
══════════════════════════════ */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(7,9,26,.9);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--border);
}
.header-inner {
  max-width: var(--max-w); margin: 0 auto; padding: 0 24px;
  height: 64px; display: flex; align-items: center; gap: 32px;
}
.logo { font-size: 1.2rem; font-weight: 800; letter-spacing: -.04em; color: var(--gold-text); flex-shrink: 0; }
.logo span { color: var(--text-1); }
.logo svg { display: inline; width: 22px; height: 22px; vertical-align: -4px; margin-right: 6px; }
.nav-menu { display: flex; align-items: center; gap: 4px; flex: 1; }
.nav-menu a { padding: 7px 13px; border-radius: var(--r-sm); font-size: .85rem; font-weight: 500; color: var(--text-2); }
.nav-menu a:hover { color: var(--text-1); background: var(--surface); }
.nav-menu a.active { color: var(--gold-text); }
.header-actions { display: flex; gap: 8px; margin-left: auto; flex-shrink: 0; }
.btn-nav-ghost { padding: 8px 16px; border-radius: var(--r-sm); font-size: .85rem; font-weight: 600; color: var(--text-2); border: 1px solid var(--border-s); transition: color .2s, border-color .2s; }
.btn-nav-ghost:hover { color: var(--text-1); }
.btn-nav-primary { padding: 8px 18px; border-radius: var(--r-sm); background: var(--gold); color: #07091A; font-size: .85rem; font-weight: 700; transition: background .2s; }
.btn-nav-primary:hover { background: var(--gold-bright); }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 8px; background: none; border: none; margin-left: auto; }
.hamburger span { display: block; width: 22px; height: 2px; background: var(--text-2); border-radius: 2px; transition: .3s; }
.nav-mobile { display: none; flex-direction: column; gap: 4px; padding: 12px 24px 16px; border-top: 1px solid var(--border); background: rgba(7,9,26,.97); }
.nav-mobile.open { display: flex; }
.nav-mobile a { padding: 10px 14px; border-radius: var(--r-sm); font-size: .9rem; font-weight: 500; color: var(--text-2); }
.nav-mobile a:hover { color: var(--text-1); background: var(--surface); }
.nav-mobile-actions { display: flex; gap: 8px; margin-top: 8px; padding-top: 12px; border-top: 1px solid var(--border); }
.nav-mobile-actions a { flex: 1; text-align: center; padding: 10px; }

/* ══════════════════════════════
   HOMEPAGE HERO
══════════════════════════════ */
.hero { padding: 88px 24px 100px; position: relative; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; pointer-events: none; }
.hero-bg::before { content: ''; position: absolute; inset: 0; background-image: radial-gradient(circle, rgba(255,255,255,.03) 1px, transparent 1px); background-size: 32px 32px; }
.hero-bg::after { content: ''; position: absolute; width: 600px; height: 600px; border-radius: 50%; background: radial-gradient(circle, rgba(201,168,76,.08) 0%, transparent 70%); right: -100px; top: -100px; pointer-events: none; }
.hero-inner { max-width: var(--max-w); margin: 0 auto; display: grid; grid-template-columns: 1fr 420px; gap: 64px; align-items: center; position: relative; z-index: 1; }
.hero-badge { display: inline-flex; align-items: center; gap: 8px; background: var(--gold-dim); border: 1px solid var(--gold-border); color: var(--gold-text); padding: 6px 15px; border-radius: 100px; font-size: .78rem; font-weight: 700; letter-spacing: .04em; margin-bottom: 24px; }
.hero-badge-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--gold); }
.hero h1 { font-size: clamp(2rem, 4.2vw, 3.4rem); font-weight: 800; line-height: 1.12; letter-spacing: -.04em; color: var(--text-1); margin-bottom: 22px; }
.hero h1 .highlight { color: var(--gold-text); }
.hero-desc { font-size: 1.05rem; color: var(--text-2); max-width: 540px; margin-bottom: 38px; line-height: 1.75; }
.hero-desc strong { color: var(--text-1); font-weight: 600; }
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 44px; }
.hero-trust { display: flex; flex-wrap: wrap; gap: 20px; }
.trust-item { display: flex; align-items: center; gap: 7px; font-size: .8rem; color: var(--text-3); font-weight: 500; }
.trust-icon { width: 6px; height: 6px; border-radius: 50%; background: var(--gold); }
.hero-visual { display: flex; justify-content: center; align-items: center; position: relative; }
.hero-rings { display: none; }
.hero-frame { position: relative; z-index: 1; width: 380px; height: 380px; border-radius: 20px; border: 2px solid var(--gold-border); background: var(--surface); overflow: hidden; animation: none; box-shadow: 0 0 32px rgba(201,168,76,.14), 0 0 64px rgba(201,168,76,.05); }
.hero-frame img { width: 100%; height: 100%; object-fit: cover; }

/* ══════════════════════════════
   STATS BAR
══════════════════════════════ */
.stats-bar { border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); background: var(--surface); padding: 32px 24px; }
.stats-inner { max-width: var(--max-w); margin: 0 auto; display: flex; justify-content: center; gap: 0; flex-wrap: wrap; }
.stat-item { text-align: center; padding: 0 56px; border-right: 1px solid var(--border); }
.stat-item:last-child { border-right: none; }
.stat-number { font-size: 2rem; font-weight: 800; color: var(--gold-text); line-height: 1; }
.stat-label { font-size: .8rem; color: var(--text-3); margin-top: 6px; font-weight: 500; }

/* ══════════════════════════════
   SECTION SHARED
══════════════════════════════ */
.section { padding: 88px 24px; }
.section-header { text-align: center; margin-bottom: 56px; }
.eyebrow { display: inline-block; font-size: .72rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--gold); margin-bottom: 14px; }
.section h2 { font-size: clamp(1.6rem, 2.8vw, 2.4rem); font-weight: 800; color: var(--text-1); letter-spacing: -.03em; line-height: 1.2; margin-bottom: 16px; }
.section-sub { font-size: 1rem; color: var(--text-2); max-width: 560px; margin: 0 auto; line-height: 1.75; }

/* ══════════════════════════════
   FEATURES / CARDS
══════════════════════════════ */
.features-grid { max-width: var(--max-w); margin: 0 auto; display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.feature-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--r-lg); padding: 32px 28px; transition: border-color .3s, transform .25s; position: relative; overflow: hidden; }
.feature-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: linear-gradient(90deg, transparent, var(--gold), transparent); opacity: 0; transition: opacity .3s; }
.feature-card:hover { border-color: var(--gold-border); transform: translateY(-3px); }
.feature-card:hover::before { opacity: 1; }
.feature-icon { width: 52px; height: 52px; border-radius: 14px; background: var(--gold-dim); border: 1px solid var(--gold-border); display: flex; align-items: center; justify-content: center; font-size: 1.6rem; margin-bottom: 22px; }
.feature-card h3 { font-size: 1.05rem; font-weight: 700; color: var(--text-1); margin-bottom: 10px; letter-spacing: -.01em; }
.feature-card p { font-size: .88rem; color: var(--text-2); line-height: 1.75; }

/* ══════════════════════════════
   STEPS (HOMEPAGE)
══════════════════════════════ */
.steps-section { background: var(--surface); }
.steps-grid { max-width: 860px; margin: 0 auto; display: grid; grid-template-columns: repeat(3, 1fr); gap: 48px; position: relative; }
.steps-connector { position: absolute; top: 36px; left: calc(16.666% + 20px); right: calc(16.666% + 20px); height: 1px; background: var(--gold-border); }
.step-item { text-align: center; }
.step-num { width: 72px; height: 72px; border-radius: 50%; background: var(--gold); color: #07091A; font-size: 1.4rem; font-weight: 800; display: flex; align-items: center; justify-content: center; margin: 0 auto 22px; position: relative; z-index: 1; box-shadow: 0 0 0 8px var(--gold-dim); }
.step-title { font-size: 1rem; font-weight: 700; color: var(--text-1); margin-bottom: 10px; }
.step-desc { font-size: .875rem; color: var(--text-2); line-height: 1.7; }

/* ══════════════════════════════
   ARTICLES
══════════════════════════════ */
.articles-grid { max-width: var(--max-w); margin: 0 auto; display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.article-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--r-lg); overflow: hidden; transition: border-color .3s, transform .25s; display: flex; flex-direction: column; }
.article-card:hover { border-color: var(--gold-border); transform: translateY(-3px); }
.article-thumb { height: 170px; overflow: hidden; display: flex; align-items: center; justify-content: center; position: relative; }
.article-thumb-bg { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; }
.article-thumb-icon { font-size: 3rem; opacity: .5; }
.article-thumb-label { position: absolute; bottom: 0; left: 0; right: 0; padding: 24px 16px 12px; background: linear-gradient(to top, rgba(7,9,26,.85), transparent); font-size: .7rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--gold-text); }
.article-body { padding: 22px 22px 24px; flex: 1; display: flex; flex-direction: column; }
.article-card h3 { font-size: .95rem; font-weight: 700; color: var(--text-1); margin-bottom: 10px; line-height: 1.45; }
.article-card p { font-size: .83rem; color: var(--text-2); line-height: 1.7; margin-bottom: 20px; flex: 1; }
.article-meta { display: flex; align-items: center; justify-content: space-between; }
.article-date { font-size: .75rem; color: var(--text-3); }
.article-link { font-size: .82rem; font-weight: 700; color: var(--gold-text); display: inline-flex; align-items: center; gap: 4px; }
.article-link:hover { color: var(--gold-bright); }
.article-link svg { width: 14px; height: 14px; }

/* ══════════════════════════════
   FAQ (HOMEPAGE STYLE)
══════════════════════════════ */
.faq-section { background: var(--surface); }
.faq-inner { max-width: 740px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-item:first-child { border-top: 1px solid var(--border); }
.faq-item details summary { list-style: none; padding: 22px 0; cursor: pointer; display: flex; align-items: flex-start; justify-content: space-between; gap: 20px; font-weight: 700; font-size: .95rem; color: var(--text-1); transition: color .2s; user-select: none; }
.faq-item details summary::-webkit-details-marker { display: none; }
.faq-item details summary:hover { color: var(--gold-text); }
.faq-toggle { flex-shrink: 0; margin-top: 2px; width: 26px; height: 26px; border-radius: 50%; border: 1px solid var(--border-s); display: flex; align-items: center; justify-content: center; color: var(--gold-text); font-size: 1.1rem; line-height: 1; transition: background .2s, border-color .2s; }
.faq-toggle::before { content: '+'; }
.faq-item details[open] summary .faq-toggle { background: var(--gold); border-color: var(--gold); color: #07091A; }
.faq-item details[open] summary .faq-toggle::before { content: '−'; }
.faq-answer { padding-bottom: 22px; font-size: .9rem; color: var(--text-2); line-height: 1.8; }
.faq-answer strong { color: var(--text-1); }
.faq-answer a { color: var(--gold-text); border-bottom: 1px solid rgba(201,153,30,.3); }

/* ══════════════════════════════
   CTA SECTION
══════════════════════════════ */
.cta-section { padding: 88px 24px; }
.cta-card { max-width: 760px; margin: 0 auto; background: var(--surface); border: 1px solid var(--gold-border); border-radius: var(--r-xl); padding: 64px 56px; text-align: center; position: relative; overflow: hidden; }
.cta-card::before { content: ''; position: absolute; bottom: -60px; left: 50%; transform: translateX(-50%); width: 400px; height: 200px; background: radial-gradient(ellipse, var(--gold-glow) 0%, transparent 70%); pointer-events: none; }
.cta-card h2 { font-size: clamp(1.5rem, 2.5vw, 2.1rem); font-weight: 800; letter-spacing: -.03em; color: var(--text-1); margin-bottom: 14px; }
.cta-card p { color: var(--text-2); margin-bottom: 36px; max-width: 480px; margin-left: auto; margin-right: auto; line-height: 1.7; }
.cta-buttons { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.cta-trust { margin-top: 28px; font-size: .78rem; color: var(--text-3); display: flex; align-items: center; justify-content: center; gap: 6px; }
.cta-trust-dot { width: 4px; height: 4px; border-radius: 50%; background: var(--text-3); }

/* ══════════════════════════════
   FOOTER
══════════════════════════════ */
.site-footer { border-top: 1px solid var(--border); padding: 60px 24px 0; }
.footer-inner { max-width: var(--max-w); margin: 0 auto; display: grid; grid-template-columns: 2.2fr 1fr 1fr; gap: 64px; padding-bottom: 56px; }
.footer-brand .footer-logo { font-size: 1.2rem; font-weight: 800; letter-spacing: -.04em; color: var(--gold-text); margin-bottom: 14px; }
.footer-brand .footer-desc { font-size: .86rem; color: var(--text-3); line-height: 1.7; max-width: 320px; margin-bottom: 20px; }
.footer-socials { display: flex; gap: 8px; }
.footer-social-btn { width: 36px; height: 36px; border-radius: var(--r-sm); border: 1px solid var(--border-s); background: var(--surface); display: flex; align-items: center; justify-content: center; font-size: .9rem; transition: border-color .2s, color .2s; color: var(--text-3); }
.footer-social-btn:hover { border-color: var(--gold-border); color: var(--gold-text); }
.footer-col h4 { font-size: .75rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: var(--text-3); margin-bottom: 18px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 11px; }
.footer-col ul li a { font-size: .875rem; color: var(--text-2); transition: color .2s; }
.footer-col ul li a:hover { color: var(--gold-text); }
.footer-disclaimer { max-width: var(--max-w); margin: 0 auto 24px; background: var(--surface); border: 1px solid var(--border); border-radius: var(--r-md); padding: 16px 20px; }
.footer-disclaimer p { font-size: .73rem; color: var(--text-3); line-height: 1.65; }
.footer-bottom { max-width: var(--max-w); margin: 0 auto; border-top: 1px solid var(--border); padding: 20px 0; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
.footer-bottom p { font-size: .75rem; color: var(--text-3); }
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a { font-size: .75rem; color: var(--text-3); transition: color .2s; }
.footer-bottom-links a:hover { color: var(--gold-text); }

/* ══════════════════════════════
   INNER PAGE HERO
══════════════════════════════ */
.page-hero {
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  padding: 48px 24px 56px;
  position: relative; overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
}
.page-hero::after {
  content: '';
  position: absolute;
  width: 400px; height: 300px; border-radius: 50%;
  background: radial-gradient(ellipse, rgba(201,153,30,.07) 0%, transparent 70%);
  right: -80px; bottom: -60px; pointer-events: none;
}
.page-hero-inner { max-width: 900px; margin: 0 auto; position: relative; z-index: 1; }
.breadcrumb { display: flex; align-items: center; flex-wrap: wrap; gap: 6px; margin-bottom: 20px; }
.breadcrumb a { font-size: .75rem; color: var(--text-3); }
.breadcrumb a:hover { color: var(--gold-text); }
.breadcrumb-sep { font-size: .75rem; color: var(--text-3); }
.breadcrumb .bc-current { font-size: .75rem; color: var(--text-2); }
.page-tag { display: inline-block; font-size: .7rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--gold); background: var(--gold-dim); border: 1px solid var(--gold-border); padding: 3px 10px; border-radius: 4px; margin-bottom: 14px; }
.page-hero h1 { font-size: clamp(1.6rem, 3vw, 2.4rem); font-weight: 800; color: var(--text-1); letter-spacing: -.03em; line-height: 1.2; margin-bottom: 16px; }
.page-hero .page-desc { font-size: 1rem; color: var(--text-2); line-height: 1.75; max-width: 680px; }
.updated-badge { display: inline-flex; align-items: center; gap: 6px; font-size: .75rem; color: var(--text-3); margin-top: 14px; }
.updated-dot { width: 5px; height: 5px; border-radius: 50%; background: var(--green); }

/* ══════════════════════════════
   CONTENT BODY (INNER PAGES)
══════════════════════════════ */
.content-section { padding: 56px 24px 88px; }
.content-container { max-width: 900px; margin: 0 auto; }
.content-body { font-size: .95rem; line-height: 1.85; color: var(--text-2); }
.content-body h2 { font-size: clamp(1.2rem, 2vw, 1.55rem); font-weight: 800; color: var(--text-1); letter-spacing: -.02em; line-height: 1.3; margin: 48px 0 18px; padding-top: 48px; border-top: 1px solid var(--border); }
.content-body > h2:first-child { margin-top: 0; padding-top: 0; border-top: none; }
.content-body h3 { font-size: 1.05rem; font-weight: 700; color: var(--text-1); margin: 28px 0 12px; }
.content-body p { margin-bottom: 18px; }
.content-body strong { color: var(--text-1); font-weight: 700; }
.content-body em { color: var(--text-1); font-style: normal; }
.content-body a { color: var(--gold-text); border-bottom: 1px solid rgba(201,153,30,.3); transition: border-color .2s; }
.content-body a:hover { border-color: var(--gold-text); }
.content-body ul, .content-body ol { margin: 4px 0 22px; padding: 0; list-style: none; }
.content-body ul li, .content-body ol li { position: relative; padding-left: 22px; margin-bottom: 10px; }
.content-body ul li::before { content: ''; position: absolute; left: 0; top: 10px; width: 5px; height: 5px; border-radius: 50%; background: var(--gold); }
.content-body ol { counter-reset: ol-item; }
.content-body ol li { counter-increment: ol-item; }
.content-body ol li::before { content: counter(ol-item) '.'; position: absolute; left: 0; color: var(--gold); font-weight: 700; font-size: .85rem; }

/* Highlight Box */
.highlight-box { background: var(--surface); border: 1px solid var(--border); border-left: 3px solid var(--gold); border-radius: 0 var(--r-sm) var(--r-sm) 0; padding: 20px 24px; margin: 28px 0; }
.highlight-box-title { font-size: .75rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--gold); margin-bottom: 8px; }
.highlight-box p { margin: 0; font-size: .9rem; }

/* Link Cards */
.link-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px,1fr)); gap: 16px; margin: 24px 0 32px; }
.link-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--r-md); padding: 22px 20px; display: flex; flex-direction: column; gap: 12px; transition: border-color .2s, transform .2s; }
.link-card:hover { border-color: var(--gold-border); transform: translateY(-2px); }
.link-card-label { font-size: .68rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--text-3); }
.link-card-url { font-size: .95rem; font-weight: 700; color: var(--text-1); word-break: break-all; }
.link-card-status { font-size: .75rem; color: var(--green); display: flex; align-items: center; gap: 5px; }
.link-card-status::before { content: ''; width: 5px; height: 5px; border-radius: 50%; background: var(--green); flex-shrink: 0; }

/* Steps Inline */
.steps-inline { list-style: none; padding: 0; margin: 8px 0 24px; display: flex; flex-direction: column; gap: 18px; }
.steps-inline li { display: flex; gap: 16px; align-items: flex-start; padding-left: 0 !important; }
.steps-inline li::before { display: none !important; }
.step-badge { flex-shrink: 0; width: 34px; height: 34px; border-radius: 50%; background: var(--gold); color: #07091A; font-size: .9rem; font-weight: 800; display: flex; align-items: center; justify-content: center; margin-top: 2px; }
.step-content strong { display: block; color: var(--text-1); font-weight: 700; margin-bottom: 4px; font-size: .95rem; }
.step-content span { font-size: .875rem; color: var(--text-2); }

/* Feature Grid (Inner Page) */
.feature-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin: 8px 0 28px; }
.feature-mini { background: var(--surface); border: 1px solid var(--border); border-radius: var(--r-md); padding: 22px; transition: border-color .2s; }
.feature-mini:hover { border-color: var(--gold-border); }
.feature-mini-icon { font-size: 1.5rem; margin-bottom: 12px; }
.feature-mini h3 { font-size: .95rem; font-weight: 700; color: var(--text-1); margin-bottom: 8px !important; margin-top: 0 !important; }
.feature-mini p { font-size: .85rem; color: var(--text-2); margin: 0; line-height: 1.65; }

/* Related Articles */
.related-section { margin-top: 56px; padding-top: 40px; border-top: 1px solid var(--border); }
.related-title { font-size: 1rem; font-weight: 800; color: var(--text-1); margin-bottom: 20px; }
.related-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px,1fr)); gap: 14px; }
.related-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--r-md); padding: 18px; transition: border-color .2s; }
.related-card:hover { border-color: var(--gold-border); }
.related-tag { font-size: .68rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--gold); margin-bottom: 8px; }
.related-card-title { font-size: .875rem; font-weight: 700; color: var(--text-1); line-height: 1.4; }

/* Content FAQ */
.content-faq { margin-top: 8px; }
.content-faq .faq-item { border-bottom: 1px solid var(--border); }
.content-faq .faq-item:first-child { border-top: 1px solid var(--border); }
.content-faq .faq-item details summary { font-size: .9rem; padding: 18px 0; }
.content-faq .faq-answer { padding-bottom: 18px; font-size: .875rem; }

/* Content CTA */
.content-cta { background: var(--surface); border: 1px solid var(--gold-border); border-radius: var(--r-lg); padding: 40px 36px; text-align: center; margin-top: 52px; position: relative; overflow: hidden; }
.content-cta::before { content: ''; position: absolute; bottom: -40px; left: 50%; transform: translateX(-50%); width: 300px; height: 150px; background: radial-gradient(ellipse, var(--gold-glow) 0%, transparent 70%); pointer-events: none; }
.content-cta h3 { font-size: 1.35rem; font-weight: 800; color: var(--text-1); margin-bottom: 10px; }
.content-cta p { color: var(--text-2); margin-bottom: 28px; max-width: 420px; margin-left: auto; margin-right: auto; }
.content-cta .cta-buttons { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* ══════════════════════════════
   RESPONSIVE
══════════════════════════════ */
@media (max-width: 960px) {
  .nav-menu, .header-actions { display: none; }
  .hamburger { display: flex; }
  .hero-inner { grid-template-columns: 1fr; text-align: center; }
  .hero-visual { order: -1; }
  .hero-frame { width: 300px; height: 300px; }
  .hero-cta, .hero-trust { justify-content: center; }
  .hero-desc { margin-left: auto; margin-right: auto; }
  .features-grid { grid-template-columns: 1fr; max-width: 560px; margin: 0 auto; }
  .steps-grid { grid-template-columns: 1fr; max-width: 400px; gap: 32px; }
  .steps-connector { display: none; }
  .articles-grid { grid-template-columns: 1fr; max-width: 520px; margin: 0 auto; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 40px; }
  .footer-brand { grid-column: 1 / -1; }
  .stat-item { padding: 0 32px; }
  .feature-grid-2 { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .section { padding: 64px 20px; }
  .hero { padding: 64px 20px 72px; }
  .hero-frame { width: 260px; height: 260px; }
  .stats-inner { gap: 0; }
  .stat-item { padding: 0 24px; }
  .stat-number { font-size: 1.5rem; }
  .cta-card { padding: 44px 28px; }
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 8px; }
  .page-hero { padding: 36px 20px 44px; }
  .content-section { padding: 40px 20px 64px; }
  .link-cards { grid-template-columns: 1fr; }
  .related-grid { grid-template-columns: 1fr; }
  .content-cta { padding: 32px 24px; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}
