@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Cinzel:wght@600;700&display=swap');
:root {
  --gold: #f59e0b;
  --gold-light: #fbbf24;
  --gold-dark: #d97706;
  --gold-muted: rgba(245,158,11,0.15);
  --red: #dc2626;
  --red-light: #ef4444;
  --red-muted: rgba(220,38,38,0.15);
  --bg-void: #050508;
  --bg-deep: #0a0a0f;
  --bg-dark: #0f0f1a;
  --bg-card: #13131f;
  --bg-glass: rgba(19,19,31,0.85);
  --bg-glass-light: rgba(255,255,255,0.04);
  --border-gold: rgba(245,158,11,0.3);
  --border-subtle: rgba(255,255,255,0.06);
  --text-white: #ffffff;
  --text-light: #e2e8f0;
  --text-muted: #94a3b8;
  --text-dim: #64748b;
  --shadow-gold: 0 0 30px rgba(245,158,11,0.2);
  --shadow-card: 0 8px 32px rgba(0,0,0,0.4);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --font-body: 'Inter', sans-serif;
  --font-display: 'Cinzel', serif;
  --transition: 0.25s cubic-bezier(0.4,0,0.2,1);
  --header-h: 72px;
}

*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}
html{scroll-behavior:smooth;font-size:16px}
body{font-family:var(--font-body);background:var(--bg-void);color:var(--text-light);overflow-x:hidden;line-height:1.7;-webkit-font-smoothing:antialiased}
img{max-width:100%;height:auto;display:block}
a{color:var(--gold);text-decoration:none;transition:color var(--transition)}
a:hover{color:var(--gold-light)}
a:focus-visible{outline:2px solid var(--gold);outline-offset:3px;border-radius:3px}
button{cursor:pointer;border:none;background:none;font-family:var(--font-body)}
button:focus-visible{outline:2px solid var(--gold);outline-offset:3px}
ul,ol{list-style:none}

/* ── SCROLLBAR ── */
::-webkit-scrollbar{width:6px}
::-webkit-scrollbar-track{background:var(--bg-deep)}
::-webkit-scrollbar-thumb{background:var(--gold-dark);border-radius:3px}

/* ── HEADER ── */
.site-ehkECg-header{position:sticky;top:0;left:0;right:0;z-index:1000;height:var(--header-h);background:rgba(5,5,8,0.92);backdrop-filter:blur(20px);-webkit-backdrop-filter:blur(20px);border-bottom:1px solid var(--border-gold);display:flex;align-items:center}
.site-ehkECg-header-inner{width:100%;max-width:1200px;margin:0 auto;padding:0 24px;display:flex;align-items:center;justify-content:space-between;gap:16px}
.site-ehkECg-logo{display:flex;align-items:center;gap:10px;text-decoration:none;flex-shrink:0}
.site-ehkECg-logo-icon{font-size:28px;line-height:1;filter:drop-shadow(0 0 8px rgba(245,158,11,0.6))}
.site-ehkECg-logo-text{display:flex;flex-direction:column;line-height:1.2}
.site-ehkECg-logo-name{font-family:var(--font-display);font-size:15px;font-weight:700;color:var(--gold);letter-spacing:0.05em}
.site-ehkECg-logo-sub{font-size:10px;color:var(--text-muted);font-weight:400;letter-spacing:0.08em;text-transform:uppercase}
.site-ehkECg-header-nav{display:flex;align-items:center;gap:4px}
.site-ehkECg-header-nav a{color:var(--text-muted);font-size:13px;font-weight:500;padding:6px 12px;border-radius:var(--radius-sm);transition:color var(--transition),background var(--transition);white-space:nowrap}
.site-ehkECg-header-nav a:hover{color:var(--gold);background:var(--gold-muted)}
.site-ehkECg-header-cta{display:inline-flex;align-items:center;justify-content:center;gap:8px;background:linear-gradient(135deg,var(--gold) 0%,var(--gold-dark) 100%);color:#0a0a0f;font-weight:700;font-size:13px;padding:9px 20px;border-radius:var(--radius-sm);border:none;cursor:pointer;transition:transform var(--transition),box-shadow var(--transition);white-space:nowrap;text-decoration:none;flex-shrink:0}
.site-ehkECg-header-cta:hover{transform:translateY(-1px);box-shadow:var(--shadow-gold);color:#0a0a0f}
.site-ehkECg-hamburger{display:none;flex-direction:column;gap:5px;padding:8px;background:none;border:none;cursor:pointer;z-index:1001}
.site-ehkECg-hamburger span{display:block;width:22px;height:2px;background:var(--text-light);border-radius:2px;transition:transform var(--transition),opacity var(--transition)}
.site-ehkECg-hamburger.is-open span:nth-child(1){transform:translateY(7px) rotate(45deg)}
.site-ehkECg-hamburger.is-open span:nth-child(2){opacity:0}
.site-ehkECg-hamburger.is-open span:nth-child(3){transform:translateY(-7px) rotate(-45deg)}
.site-ehkECg-mobile-nav{display:none;position:fixed;top:var(--header-h);left:0;right:0;bottom:0;background:rgba(5,5,8,0.98);backdrop-filter:blur(20px);z-index:999;flex-direction:column;padding:24px;gap:4px;overflow-y:auto}
.site-ehkECg-mobile-nav.is-open{display:flex}
.site-ehkECg-mobile-nav a{color:var(--text-light);font-size:15px;font-weight:500;padding:13px 16px;border-radius:var(--radius-sm);display:block;transition:color var(--transition),background var(--transition)}
.site-ehkECg-mobile-nav a:hover{color:var(--gold);background:var(--gold-muted)}
.site-ehkECg-mobile-nav-cta{margin-top:16px;display:inline-flex;align-items:center;justify-content:center;background:linear-gradient(135deg,var(--gold) 0%,var(--gold-dark) 100%);color:#0a0a0f !important;font-weight:700;border-radius:var(--radius-sm);padding:14px 24px;text-align:center;width:100%}

/* ── HERO ── */
.site-ehkECg-hero{position:relative;padding:80px 24px 60px;text-align:center;overflow:hidden;background:radial-gradient(ellipse 80% 60% at 50% 0%,rgba(245,158,11,0.08) 0%,transparent 70%)}
.site-ehkECg-hero::before{content:'';position:absolute;inset:0;background:url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23f59e0b' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E") repeat;pointer-events:none}
.site-ehkECg-hero-inner{position:relative;z-index:1;max-width:800px;margin:0 auto}
.site-ehkECg-breadcrumb{display:flex;align-items:center;justify-content:center;gap:8px;margin-bottom:24px;flex-wrap:wrap}
.site-ehkECg-breadcrumb a{color:var(--text-muted);font-size:13px;transition:color var(--transition)}
.site-ehkECg-breadcrumb a:hover{color:var(--gold)}
.site-ehkECg-breadcrumb-sep{color:var(--text-dim);font-size:13px}
.site-ehkECg-breadcrumb-current{color:var(--gold);font-size:13px;font-weight:500}
.site-ehkECg-hero-badge{display:inline-flex;align-items:center;gap:8px;background:var(--gold-muted);border:1px solid var(--border-gold);border-radius:50px;padding:6px 16px;font-size:12px;font-weight:600;color:var(--gold);text-transform:uppercase;letter-spacing:0.1em;margin-bottom:20px}
.site-ehkECg-hero-title{font-family:var(--font-display);font-size:clamp(28px,5vw,48px);font-weight:700;color:var(--text-white);line-height:1.2;margin-bottom:16px}
.site-ehkECg-hero-title span{color:var(--gold)}
.site-ehkECg-hero-subtitle{font-size:clamp(14px,2vw,17px);color:var(--text-muted);max-width:600px;margin:0 auto 32px;line-height:1.7}
.site-ehkECg-hero-meta{display:flex;align-items:center;justify-content:center;gap:24px;flex-wrap:wrap}
.site-ehkECg-hero-meta-item{display:flex;align-items:center;gap:6px;font-size:13px;color:var(--text-dim)}
.site-ehkECg-hero-meta-item strong{color:var(--gold);font-weight:600}

/* ── LAYOUT ── */
.site-ehkECg-page{max-width:1100px;margin:0 auto;padding:0 24px 80px;display:grid;grid-template-columns:260px 1fr;gap:40px;align-items:start}
.site-ehkECg-sidebar{position:sticky;top:calc(var(--header-h) + 24px);background:var(--bg-card);border:1px solid var(--border-gold);border-radius:var(--radius-lg);padding:24px;backdrop-filter:blur(10px)}
.site-ehkECg-sidebar-title{font-size:11px;font-weight:700;color:var(--text-dim);text-transform:uppercase;letter-spacing:0.12em;margin-bottom:16px;padding-bottom:12px;border-bottom:1px solid var(--border-subtle)}
.site-ehkECg-sidebar-nav{display:flex;flex-direction:column;gap:2px}
.site-ehkECg-sidebar-nav a{color:var(--text-muted);font-size:13px;font-weight:400;padding:8px 12px;border-radius:var(--radius-sm);display:block;transition:color var(--transition),background var(--transition),border-color var(--transition);border-left:2px solid transparent;line-height:1.4}
.site-ehkECg-sidebar-nav a:hover{color:var(--gold);background:var(--gold-muted);border-left-color:var(--gold)}
.site-ehkECg-sidebar-nav a.is-active{color:var(--gold);background:var(--gold-muted);border-left-color:var(--gold)}
.site-ehkECg-sidebar-cta{margin-top:20px;padding-top:20px;border-top:1px solid var(--border-subtle)}
.site-ehkECg-sidebar-cta-btn{display:flex;align-items:center;justify-content:center;gap:6px;width:100%;background:linear-gradient(135deg,var(--gold) 0%,var(--gold-dark) 100%);color:#0a0a0f;font-weight:700;font-size:13px;padding:11px 16px;border-radius:var(--radius-sm);border:none;cursor:pointer;transition:transform var(--transition),box-shadow var(--transition)}
.site-ehkECg-sidebar-cta-btn:hover{transform:translateY(-1px);box-shadow:var(--shadow-gold)}

/* ── CONTENT ── */
.site-ehkECg-content{min-width:0}
.site-ehkECg-section{margin-bottom:48px;scroll-margin-top:calc(var(--header-h) + 24px)}
.site-ehkECg-section-header{display:flex;align-items:center;gap:12px;margin-bottom:20px;padding-bottom:16px;border-bottom:1px solid var(--border-subtle)}
.site-ehkECg-section-icon{width:40px;height:40px;border-radius:var(--radius-sm);background:var(--gold-muted);border:1px solid var(--border-gold);display:flex;align-items:center;justify-content:center;font-size:18px;flex-shrink:0}
.site-ehkECg-section-num{font-size:11px;font-weight:700;color:var(--text-dim);text-transform:uppercase;letter-spacing:0.12em;margin-bottom:2px}
.site-ehkECg-section-title{font-family:var(--font-display);font-size:clamp(16px,2.5vw,20px);font-weight:600;color:var(--text-white);line-height:1.3}
.site-ehkECg-card{background:var(--bg-card);border:1px solid var(--border-subtle);border-radius:var(--radius-md);padding:24px 28px;backdrop-filter:blur(6px);transition:border-color var(--transition)}
.site-ehkECg-card:hover{border-color:var(--border-gold)}
.site-ehkECg-card p{color:var(--text-muted);font-size:15px;line-height:1.8;margin-bottom:16px}
.site-ehkECg-card p:last-child{margin-bottom:0}
.site-ehkECg-card strong{color:var(--text-light);font-weight:600}
.site-ehkECg-card a{color:var(--gold);font-weight:500}
.site-ehkECg-card a:hover{color:var(--gold-light)}
.site-ehkECg-card ul{padding-left:0;margin-bottom:16px}
.site-ehkECg-card ul li{position:relative;padding:6px 0 6px 20px;color:var(--text-muted);font-size:15px;line-height:1.7;border-bottom:1px solid var(--border-subtle)}
.site-ehkECg-card ul li:last-child{border-bottom:none}
.site-ehkECg-card ul li::before{content:'›';position:absolute;left:4px;color:var(--gold);font-weight:700;font-size:16px}
.site-ehkECg-card ol{padding-left:0;counter-reset:ol-counter;margin-bottom:16px}
.site-ehkECg-card ol li{position:relative;padding:8px 0 8px 32px;color:var(--text-muted);font-size:15px;line-height:1.7;counter-increment:ol-counter;border-bottom:1px solid var(--border-subtle)}
.site-ehkECg-card ol li:last-child{border-bottom:none}
.site-ehkECg-card ol li::before{content:counter(ol-counter);position:absolute;left:0;top:8px;width:22px;height:22px;background:var(--gold-muted);border:1px solid var(--border-gold);border-radius:50%;display:flex;align-items:center;justify-content:center;font-size:11px;font-weight:700;color:var(--gold)}
.site-ehkECg-card h3{font-size:15px;font-weight:700;color:var(--text-white);margin-bottom:10px;margin-top:20px}
.site-ehkECg-card h3:first-child{margin-top:0}

/* ── ALERT CARDS ── */
.site-ehkECg-alert{border-radius:var(--radius-md);padding:16px 20px;display:flex;gap:12px;align-items:flex-start;margin-bottom:16px}
.site-ehkECg-alert-warn{background:rgba(245,158,11,0.08);border:1px solid rgba(245,158,11,0.25)}
.site-ehkECg-alert-danger{background:rgba(220,38,38,0.08);border:1px solid rgba(220,38,38,0.25)}
.site-ehkECg-alert-info{background:rgba(59,130,246,0.08);border:1px solid rgba(59,130,246,0.25)}
.site-ehkECg-alert-icon{font-size:20px;line-height:1;flex-shrink:0;margin-top:1px}
.site-ehkECg-alert-body{flex:1;min-width:0}
.site-ehkECg-alert-body p{font-size:14px;line-height:1.7;margin-bottom:0}
.site-ehkECg-alert-warn .site-ehkECg-alert-body p{color:rgba(245,158,11,0.9)}
.site-ehkECg-alert-danger .site-ehkECg-alert-body p{color:rgba(239,68,68,0.9)}
.site-ehkECg-alert-info .site-ehkECg-alert-body p{color:rgba(147,197,253,0.9)}
.site-ehkECg-alert-body strong{font-weight:700}

/* ── HIGHLIGHT BOX ── */
.site-ehkECg-highlight{background:linear-gradient(135deg,rgba(245,158,11,0.08) 0%,rgba(220,38,38,0.05) 100%);border:1px solid var(--border-gold);border-radius:var(--radius-md);padding:20px 24px;margin-bottom:20px}
.site-ehkECg-highlight p{color:var(--text-light);font-size:15px;line-height:1.8;margin-bottom:0}
.site-ehkECg-highlight strong{color:var(--gold)}

/* ── GRID CARDS ── */
.site-ehkECg-grid-2{display:grid;grid-template-columns:1fr 1fr;gap:16px;margin-bottom:16px}
.site-ehkECg-mini-card{background:var(--bg-glass-light);border:1px solid var(--border-subtle);border-radius:var(--radius-sm);padding:16px;transition:border-color var(--transition)}
.site-ehkECg-mini-card:hover{border-color:var(--border-gold)}
.site-ehkECg-mini-card-icon{font-size:22px;margin-bottom:8px}
.site-ehkECg-mini-card-title{font-size:13px;font-weight:700;color:var(--text-white);margin-bottom:6px}
.site-ehkECg-mini-card-text{font-size:13px;color:var(--text-muted);line-height:1.6}

/* ── LAST UPDATED / DATE CHIP ── */
.site-ehkECg-date-chip{display:inline-flex;align-items:center;gap:6px;background:var(--bg-glass-light);border:1px solid var(--border-subtle);border-radius:50px;padding:5px 14px;font-size:12px;color:var(--text-dim);font-weight:500;margin-bottom:24px}
.site-ehkECg-date-chip span{color:var(--gold);font-weight:600}

/* ── CONTACT CARD ── */
.site-ehkECg-contact-grid{display:grid;grid-template-columns:1fr 1fr;gap:16px}
.site-ehkECg-contact-item{background:var(--bg-glass-light);border:1px solid var(--border-subtle);border-radius:var(--radius-md);padding:20px;transition:border-color var(--transition)}
.site-ehkECg-contact-item:hover{border-color:var(--border-gold)}
.site-ehkECg-contact-item-icon{font-size:24px;margin-bottom:10px}
.site-ehkECg-contact-item-label{font-size:11px;font-weight:700;color:var(--text-dim);text-transform:uppercase;letter-spacing:0.1em;margin-bottom:4px}
.site-ehkECg-contact-item-value{font-size:14px;color:var(--text-light);font-weight:500}
.site-ehkECg-contact-item-value a{color:var(--gold)}

/* ── CTA SECTION ── */
.site-ehkECg-cta-section{background:linear-gradient(135deg,rgba(245,158,11,0.08) 0%,rgba(220,38,38,0.06) 100%);border:1px solid var(--border-gold);border-radius:var(--radius-xl);padding:40px;text-align:center;margin-top:48px}
.site-ehkECg-cta-section h2{font-family:var(--font-display);font-size:clamp(18px,3vw,26px);font-weight:700;color:var(--text-white);margin-bottom:12px}
.site-ehkECg-cta-section p{color:var(--text-muted);font-size:15px;margin-bottom:24px;max-width:500px;margin-left:auto;margin-right:auto}
.site-ehkECg-cta-btn-primary{display:inline-flex;align-items:center;justify-content:center;gap:8px;background:linear-gradient(135deg,var(--gold) 0%,var(--gold-dark) 100%);color:#0a0a0f;font-weight:700;font-size:15px;padding:14px 32px;border-radius:var(--radius-md);border:none;cursor:pointer;transition:transform var(--transition),box-shadow var(--transition);text-decoration:none}
.site-ehkECg-cta-btn-primary:hover{transform:translateY(-2px);box-shadow:var(--shadow-gold);color:#0a0a0f}
.site-ehkECg-cta-disclaimer{font-size:12px;color:var(--text-dim);margin-top:12px;margin-bottom:0 !important}

/* ── FOOTER ── */
.site-ehkECg-footer{background:var(--bg-deep);border-top:1px solid var(--border-gold)}
.site-ehkECg-footer-inner{max-width:1100px;margin:0 auto;padding:48px 24px 32px}
.site-ehkECg-footer-grid{display:grid;grid-template-columns:2fr 1fr 1fr 1fr;gap:40px;margin-bottom:40px}
.site-ehkECg-footer-brand{}
.site-ehkECg-footer-logo{display:flex;align-items:center;gap:10px;margin-bottom:16px;text-decoration:none}
.site-ehkECg-footer-logo-icon{font-size:28px;filter:drop-shadow(0 0 8px rgba(245,158,11,0.5))}
.site-ehkECg-footer-logo-name{font-family:var(--font-display);font-size:15px;font-weight:700;color:var(--gold)}
.site-ehkECg-footer-desc{font-size:13px;color:var(--text-dim);line-height:1.7;margin-bottom:16px}
.site-ehkECg-footer-age{display:inline-flex;align-items:center;gap:8px;background:var(--red-muted);border:1px solid rgba(220,38,38,0.3);border-radius:var(--radius-sm);padding:6px 12px}
.site-ehkECg-footer-age-badge{width:28px;height:28px;background:var(--red);border-radius:50%;display:flex;align-items:center;justify-content:center;font-size:10px;font-weight:800;color:#fff;flex-shrink:0}
.site-ehkECg-footer-age-text{font-size:11px;color:rgba(239,68,68,0.9);font-weight:600}
.site-ehkECg-footer-col h4{font-size:12px;font-weight:700;color:var(--text-light);text-transform:uppercase;letter-spacing:0.1em;margin-bottom:16px}
.site-ehkECg-footer-col ul{display:flex;flex-direction:column;gap:8px}
.site-ehkECg-footer-col ul li a{font-size:13px;color:var(--text-dim);transition:color var(--transition);display:block}
.site-ehkECg-footer-col ul li a:hover{color:var(--gold)}
.site-ehkECg-footer-bottom{border-top:1px solid var(--border-subtle);padding-top:24px;display:flex;align-items:center;justify-content:space-between;flex-wrap:wrap;gap:12px}
.site-ehkECg-footer-copy{font-size:12px;color:var(--text-dim)}
.site-ehkECg-footer-links{display:flex;gap:16px;flex-wrap:wrap}
.site-ehkECg-footer-links a{font-size:12px;color:var(--text-dim);transition:color var(--transition)}
.site-ehkECg-footer-links a:hover{color:var(--gold)}

/* ── SCROLL TO TOP ── */
.site-ehkECg-scroll-top{position:fixed;bottom:24px;right:24px;width:44px;height:44px;background:linear-gradient(135deg,var(--gold) 0%,var(--gold-dark) 100%);border:none;border-radius:50%;display:flex;align-items:center;justify-content:center;cursor:pointer;opacity:0;visibility:hidden;transform:translateY(10px);transition:opacity var(--transition),visibility var(--transition),transform var(--transition);z-index:900;color:#0a0a0f;font-size:18px;font-weight:700;box-shadow:0 4px 16px rgba(245,158,11,0.3)}
.site-ehkECg-scroll-top.is-visible{opacity:1;visibility:visible;transform:translateY(0)}
.site-ehkECg-scroll-top:hover{transform:translateY(-2px);box-shadow:var(--shadow-gold)}

/* ── RESPONSIVE ── */
@media(max-width:1024px){
  .site-ehkECg-page{grid-template-columns:220px 1fr;gap:28px}
  .site-ehkECg-footer-grid{grid-template-columns:1fr 1fr;gap:28px}
}
@media(max-width:768px){
  .site-ehkECg-header-nav{display:none}
  .site-ehkECg-header-cta{display:none}
  .site-ehkECg-hamburger{display:flex}
  .site-ehkECg-page{grid-template-columns:1fr;gap:0;padding:0 16px 60px}
  .site-ehkECg-sidebar{position:static;margin-bottom:32px;display:none}
  .site-ehkECg-sidebar.is-open{display:block}
  .site-ehkECg-grid-2{grid-template-columns:1fr}
  .site-ehkECg-contact-grid{grid-template-columns:1fr}
  .site-ehkECg-footer-grid{grid-template-columns:1fr}
  .site-ehkECg-footer-bottom{flex-direction:column;text-align:center}
  .site-ehkECg-cta-section{padding:28px 20px}
  .site-ehkECg-hero{padding:50px 16px 40px}
}
@media(max-width:480px){
  .site-ehkECg-hero-meta{gap:14px}
  .site-ehkECg-card{padding:18px}
  .site-ehkECg-card ul li,.site-ehkECg-card ol li{font-size:14px}
}

._extracted-style-ocKt { margin-top:20px; }