/* ══════════════════════════════════════════════
   Sunremain / 盛锐马  —  Global Stylesheet
   ══════════════════════════════════════════════ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --c-bg:       #000000;
  --c-bg2:      #0d0d0d;
  --c-bg3:      #1a1a1a;
  --c-light:    #f5f5f7;
  --c-white:    #ffffff;
  --c-t1d:      #f5f5f7;
  --c-t2d:      #a1a1a6;
  --c-t1l:      #1d1d1f;
  --c-t2l:      #6e6e73;
  --c-blue:     #2997ff;
  --c-teal:     #0d7377;
  --c-green:    #34c759;
  --c-border:   rgba(255,255,255,0.07);
  --nav-h:      52px;
  --max-w:      1080px;
  --radius-lg:  28px;
  --radius-md:  18px;
  --radius-sm:  12px;
  --ease:       cubic-bezier(.4,0,.2,1);
}

html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: -apple-system, 'SF Pro Display', 'Helvetica Neue', Arial, sans-serif;
  background: var(--c-bg); color: var(--c-t1d);
  overflow-x: hidden; -webkit-font-smoothing: antialiased;
}

a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }
ul { list-style: none; }

/* ── Scroll Reveal ── */
.reveal {
  opacity: 0; transform: translateY(36px);
  transition: opacity .75s var(--ease), transform .75s var(--ease);
}
.reveal.visible { opacity: 1; transform: none; }
.d1 { transition-delay: .1s; }
.d2 { transition-delay: .2s; }
.d3 { transition-delay: .3s; }
.d4 { transition-delay: .4s; }
.d5 { transition-delay: .5s; }

/* ═══════════════ NAV ═══════════════ */
#nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 9999;
  height: var(--nav-h);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 40px;
  background: rgba(0,0,0,0.7);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: background .3s;
}
#nav.scrolled { background: rgba(8,8,8,0.92); }
.nav-brand {
  display: flex; align-items: center; gap: 10px;
  font-size: 16px; font-weight: 600; color: var(--c-t1d); white-space: nowrap;
}
.nav-icon {
  width: 30px; height: 30px; border-radius: 8px; flex-shrink: 0;
  background: linear-gradient(135deg, var(--c-teal), var(--c-blue));
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; font-weight: 800; color: white;
}
.nav-links {
  display: flex; gap: 0; align-items: center;
}
.nav-links a {
  font-size: 13px; color: rgba(245,245,247,.72);
  padding: 0 16px; height: var(--nav-h); display: flex; align-items: center;
  transition: color .2s; position: relative;
}
.nav-links a:hover { color: var(--c-t1d); }
.nav-links a.active { color: var(--c-t1d); }
.nav-links a.active::after {
  content: ''; position: absolute; bottom: 0; left: 16px; right: 16px;
  height: 2px; background: var(--c-blue); border-radius: 1px;
}
.nav-btn {
  font-size: 13px; font-weight: 500; padding: 8px 18px;
  border-radius: 20px; background: var(--c-blue); color: white;
  transition: opacity .2s;
}
.nav-btn:hover { opacity: .85; }
.nav-mobile-toggle { display: none; cursor: pointer; font-size: 22px; }

/* ═══════════════ PAGE HERO (shared) ═══════════════ */
.page-hero {
  min-height: 60vh; display: flex; flex-direction: column;
  justify-content: flex-end; padding: calc(var(--nav-h) + 80px) 40px 80px;
  position: relative; overflow: hidden;
}
.page-hero-canvas { position: absolute; inset: 0; width: 100%; height: 100%; }
.page-hero-inner { max-width: var(--max-w); margin: 0 auto; width: 100%; position: relative; }
.page-hero-tag {
  font-size: 12px; letter-spacing: 2.5px; text-transform: uppercase;
  color: var(--c-blue); font-weight: 600; margin-bottom: 16px;
}
.page-hero-title {
  font-size: clamp(40px, 6vw, 80px); font-weight: 700;
  line-height: 1.05; letter-spacing: -1.5px;
}
.page-hero-sub {
  font-size: clamp(16px,2vw,20px); color: var(--c-t2d);
  margin-top: 18px; max-width: 560px; line-height: 1.65;
}

/* ═══════════════ SECTION ═══════════════ */
.sec { padding: 100px 40px; }
.sec-inner { max-width: var(--max-w); margin: 0 auto; }
.sec-tag { font-size: 12px; letter-spacing: 2px; text-transform: uppercase; color: var(--c-blue); font-weight: 600; margin-bottom: 14px; }
.sec-tag.teal { color: var(--c-teal); }
.sec-title { font-size: clamp(28px,4vw,52px); font-weight: 700; letter-spacing: -.8px; line-height: 1.1; }
.sec-sub { font-size: 18px; line-height: 1.65; margin-top: 18px; color: var(--c-t2d); max-width: 640px; }
.sec-sub.on-light { color: var(--c-t2l); }
.sec.light { background: var(--c-light); color: var(--c-t1l); }
.sec.light .sec-title { color: var(--c-t1l); }
.sec.dark2 { background: var(--c-bg2); }

/* ═══════════════ BUTTONS ═══════════════ */
.btn { display: inline-flex; align-items: center; gap: 8px; font-size: 16px; font-weight: 500; padding: 14px 32px; border-radius: 980px; transition: all .2s; cursor: pointer; border: none; font-family: inherit; }
.btn-blue { background: var(--c-blue); color: white; }
.btn-blue:hover { transform: scale(1.04); box-shadow: 0 8px 28px rgba(41,151,255,.4); }
.btn-ghost { border: 1px solid rgba(255,255,255,.2); color: var(--c-t1d); background: transparent; }
.btn-ghost:hover { background: rgba(255,255,255,.07); }
.btn-ghost.dark { border-color: rgba(0,0,0,.15); color: var(--c-t1l); }
.btn-ghost.dark:hover { background: rgba(0,0,0,.04); }
.btn-sm { font-size: 14px; padding: 10px 22px; }
.btn-group { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 36px; }

/* ═══════════════ CARDS ═══════════════ */
.card-grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; }
.card-grid-2 { display: grid; grid-template-columns: repeat(2,1fr); gap: 20px; }
.card-grid-4 { display: grid; grid-template-columns: repeat(4,1fr); gap: 16px; }

.card {
  border-radius: var(--radius-md); padding: 36px 28px;
  border: 1px solid var(--c-border);
  background: rgba(255,255,255,.035);
  transition: background .3s, transform .3s;
}
.card:hover { background: rgba(255,255,255,.065); transform: translateY(-4px); }
.card.on-light { background: white; border-color: rgba(0,0,0,.07); box-shadow: 0 2px 20px rgba(0,0,0,.05); }
.card.on-light:hover { box-shadow: 0 10px 40px rgba(0,0,0,.1); transform: translateY(-6px); }

.card-icon { font-size: 40px; margin-bottom: 20px; display: block; }
.card-title { font-size: 20px; font-weight: 600; margin-bottom: 10px; }
.card-body { font-size: 15px; line-height: 1.65; color: var(--c-t2d); }
.card.on-light .card-body { color: var(--c-t2l); }
.card-link { display: inline-flex; align-items: center; gap: 4px; margin-top: 18px; font-size: 14px; color: var(--c-blue); font-weight: 500; transition: gap .2s; }
.card-link:hover { gap: 8px; }
.card-link.teal { color: var(--c-teal); }

/* Feature band */
.feature-band {
  border-radius: var(--radius-lg);
  background: linear-gradient(160deg, #060e1a 0%, #0d2b35 55%, #071018 100%);
  border: 1px solid rgba(255,255,255,.07); position: relative; overflow: hidden;
}
.feature-band::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg,transparent,rgba(41,151,255,.45),transparent);
}
.feature-band-inner { padding: 60px; }

/* Spec table */
.spec-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 12px; margin-top: 28px; }
.spec-item {
  background: rgba(255,255,255,.05); border-radius: var(--radius-sm);
  padding: 18px 20px; border: 1px solid rgba(255,255,255,.07);
}
.spec-val { font-size: 26px; font-weight: 700; color: var(--c-blue); }
.spec-key { font-size: 12px; color: var(--c-t2d); margin-top: 4px; }

/* Tag pills */
.pill { display: inline-block; font-size: 12px; padding: 5px 13px; border-radius: 20px; border: 1px solid rgba(255,255,255,.15); color: rgba(245,245,247,.75); margin: 4px; }
.pill.blue { border-color: rgba(41,151,255,.3); color: var(--c-blue); background: rgba(41,151,255,.08); }
.pill.teal { border-color: rgba(13,115,119,.4); color: var(--c-teal); background: rgba(13,115,119,.1); }
.pill.green { border-color: rgba(52,199,89,.3); color: var(--c-green); background: rgba(52,199,89,.08); }

/* ═══════════════ TIMELINE ═══════════════ */
.timeline { position: relative; max-width: 760px; }
.timeline::before { content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 2px; background: linear-gradient(to bottom, var(--c-blue), rgba(41,151,255,.08)); }
.tl-item { padding: 0 0 52px 48px; position: relative; }
.tl-dot { position: absolute; left: -7px; top: 4px; width: 16px; height: 16px; border-radius: 50%; background: var(--c-blue); box-shadow: 0 0 0 4px rgba(41,151,255,.15); }
.tl-dot.green { background: var(--c-green); box-shadow: 0 0 0 4px rgba(52,199,89,.15); }
.tl-year { font-size: 12px; color: var(--c-blue); font-weight: 600; letter-spacing: 1px; margin-bottom: 8px; }
.tl-year.green { color: var(--c-green); }
.tl-item h3 { font-size: 21px; font-weight: 600; margin-bottom: 10px; }
.tl-item p { font-size: 15px; color: var(--c-t2d); line-height: 1.65; }
.tl-pills { margin-top: 12px; }

/* ═══════════════ PROCESS STEPS ═══════════════ */
.steps { counter-reset: step; display: flex; flex-direction: column; gap: 0; }
.step { counter-increment: step; display: flex; gap: 28px; padding: 32px 0; border-bottom: 1px solid var(--c-border); }
.step:last-child { border-bottom: none; }
.step-num {
  flex-shrink: 0; width: 48px; height: 48px; border-radius: 14px;
  background: rgba(41,151,255,.1); border: 1px solid rgba(41,151,255,.2);
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; font-weight: 700; color: var(--c-blue);
}
.step-num::before { content: counter(step); }
.step-body h3 { font-size: 18px; font-weight: 600; margin-bottom: 8px; }
.step-body p { font-size: 15px; color: var(--c-t2d); line-height: 1.6; }

/* ═══════════════ FOOTER ═══════════════ */
footer {
  background: var(--c-bg2); border-top: 1px solid var(--c-border);
  padding: 64px 40px 36px;
}
.footer-inner { max-width: var(--max-w); margin: 0 auto; }
.footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 60px; margin-bottom: 56px; }
.footer-logo { display: flex; align-items: center; gap: 10px; font-size: 16px; font-weight: 600; margin-bottom: 14px; }
.footer-desc { font-size: 14px; color: var(--c-t2d); line-height: 1.7; max-width: 280px; }
.footer-col h4 { font-size: 13px; font-weight: 600; margin-bottom: 18px; letter-spacing: .4px; }
.footer-col li { margin-bottom: 11px; }
.footer-col a { font-size: 13px; color: var(--c-t2d); transition: color .2s; }
.footer-col a:hover { color: var(--c-t1d); }
.footer-bottom { border-top: 1px solid var(--c-border); padding-top: 24px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 10px; }
.footer-bottom p, .footer-bottom a { font-size: 12px; color: var(--c-t2d); }
.footer-bottom a:hover { color: var(--c-t1d); }

/* ═══════════════ CONTACT ═══════════════ */
.form-box { background: rgba(255,255,255,.04); border: 1px solid var(--c-border); border-radius: var(--radius-lg); padding: 48px; }
.form-box h3 { font-size: 24px; font-weight: 600; margin-bottom: 28px; }
.fg { margin-bottom: 18px; }
.fg label { display: block; font-size: 13px; color: var(--c-t2d); margin-bottom: 8px; }
.fg input, .fg textarea, .fg select {
  width: 100%; background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1); border-radius: 10px;
  padding: 13px 16px; color: var(--c-t1d); font-size: 15px;
  outline: none; transition: border-color .2s; font-family: inherit;
}
.fg input:focus, .fg textarea:focus { border-color: var(--c-blue); }
.fg textarea { height: 110px; resize: none; }
.fg select option { background: #1a1a1a; }
.fg-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-submit {
  width: 100%; padding: 15px; border-radius: 10px;
  background: var(--c-blue); color: white; border: none;
  font-size: 16px; font-weight: 500; cursor: pointer;
  transition: opacity .2s, transform .15s; font-family: inherit;
}
.form-submit:hover { opacity: .88; }
.form-note { font-size: 12px; color: var(--c-t2d); text-align: center; margin-top: 12px; }

/* ═══════════════ ANIMATIONS ═══════════════ */
@keyframes fadeUp { from { opacity:0; transform:translateY(28px); } to { opacity:1; transform:none; } }
@keyframes fadeIn { from { opacity:0; } to { opacity:1; } }
@keyframes float { 0%,100% { transform:translateY(0) rotate(-1.5deg); } 50% { transform:translateY(-14px) rotate(1.5deg); } }
@keyframes spin { to { transform:rotate(360deg); } }
@keyframes pulseRing { 0%,100%{box-shadow:0 0 0 0 rgba(41,151,255,.6);} 50%{box-shadow:0 0 0 14px rgba(41,151,255,0);} }
@keyframes gradShift { 0%,100%{background-position:0% 50%;} 50%{background-position:100% 50%;} }

/* ═══════════════ RESPONSIVE ═══════════════ */
@media(max-width:960px) {
  #nav { padding: 0 20px; }
  .nav-links { display: none; }
  .nav-mobile-toggle { display: block; }
  .nav-links.open { display: flex; flex-direction: column; position: fixed; top: var(--nav-h); left: 0; right: 0; background: rgba(10,10,10,.97); padding: 20px; gap: 0; border-bottom: 1px solid var(--c-border); }
  .nav-links.open a { height: 48px; padding: 0 8px; }
  .sec { padding: 72px 20px; }
  .page-hero { padding: calc(var(--nav-h) + 60px) 20px 60px; }
  .card-grid-3, .card-grid-4 { grid-template-columns: 1fr; }
  .card-grid-2 { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 40px; }
  .feature-band-inner { padding: 36px 24px; }
  .fg-row { grid-template-columns: 1fr; }
}
@media(max-width:540px) {
  .footer-top { grid-template-columns: 1fr; }
  .spec-grid { grid-template-columns: 1fr 1fr; }
  .btn-group { flex-direction: column; }
}



:root {
  --c-blue: #c8102e;
  --c-teal: #7f1528;
  --c-green: #e05b6e;
  --c-bg: #080808;
  --c-bg2: #111111;
  --c-bg3: #1a1a1a;
  --max-w: 1180px;
}

body { background: linear-gradient(180deg, #060606 0%, #0b0b0b 100%); }
.nav-brand img {
  width: 44px; height: 44px; object-fit: contain; border-radius: 0;
  filter: drop-shadow(0 0 14px rgba(200,16,46,.35)) drop-shadow(0 4px 10px rgba(0,0,0,.28));
}
.footer-logo img {
  width: 38px; height: 38px; object-fit: contain; border-radius: 0;
  filter: drop-shadow(0 0 12px rgba(200,16,46,.28)) drop-shadow(0 3px 8px rgba(0,0,0,.24));
}
.nav-actions { display:flex; align-items:center; gap:10px; }
.nav-quick { font-size:12px; color: rgba(245,245,247,.72); padding: 0 10px; height: var(--nav-h); display:flex; align-items:center; }
.nav-quick:hover { color: var(--c-t1d); }
.lang-switch { display:flex; align-items:center; gap:6px; margin-left: 2px; }
.lang-chip {
  display:inline-flex; align-items:center; justify-content:center; min-width: 40px; height: 32px;
  padding: 0 10px; border-radius: 999px; border:1px solid rgba(255,255,255,.12);
  font-size:12px; letter-spacing:.04em; color: rgba(245,245,247,.78); background: rgba(255,255,255,.03);
}
.lang-chip.active { color:#fff; background: rgba(200,16,46,.18); border-color: rgba(200,16,46,.35); }
.lang-chip:hover { color:#fff; background: rgba(255,255,255,.08); }
.hero-cover {
  position: absolute; inset: 0; background-size: cover; background-position: center; opacity: .45;
  transform: scale(1.02);
}
.hero-video { position:absolute; inset:0; width:100%; height:100%; object-fit:cover; opacity:.28; }
.hero-overlay {
  position:absolute; inset:0;
  background: linear-gradient(180deg, rgba(0,0,0,.45) 0%, rgba(0,0,0,.72) 55%, rgba(0,0,0,.9) 100%);
}
.hero-shell { position:relative; min-height: 72vh; display:flex; align-items:flex-end; overflow:hidden; }
.hero-shell .page-hero-inner { padding-bottom: 30px; }
.hero-actions { display:flex; gap:12px; flex-wrap:wrap; margin-top: 30px; }
.crumbs { display:flex; gap:8px; flex-wrap:wrap; font-size:12px; color:var(--c-t2d); margin-bottom: 20px; }
.crumbs a:hover { color: var(--c-t1d); }
.hero-stat-row { display:grid; grid-template-columns: repeat(4, 1fr); gap: 12px; margin-top: 34px; }
.hero-stat {
  padding: 16px 18px; border-radius: 14px; border: 1px solid rgba(255,255,255,.08);
  background: rgba(255,255,255,.04);
}
.hero-stat .num { font-size: 28px; font-weight: 700; color: var(--c-blue); }
.hero-stat .lbl { font-size: 12px; color: var(--c-t2d); margin-top: 6px; }
.media-card { overflow:hidden; padding:0; display:flex; flex-direction:column; }
.media-card-img { height: 220px; background-size: cover; background-position:center; border-bottom:1px solid var(--c-border); }
.media-card-body { padding: 26px 24px 24px; }
.media-card h3 { font-size: 22px; font-weight: 650; margin-bottom: 10px; }
.media-card p { font-size: 14px; color: var(--c-t2d); line-height: 1.7; }
.eyebrow { font-size: 12px; letter-spacing: 2px; text-transform: uppercase; color: var(--c-blue); font-weight: 700; margin-bottom: 14px; }
.detail-split {
  display:grid; grid-template-columns: 1.1fr .9fr; gap: 42px; align-items:center;
  margin-top: 36px;
}
.detail-visual {
  min-height: 380px; border-radius: var(--radius-lg); background-size: cover; background-position:center;
  border: 1px solid var(--c-border); overflow:hidden; position:relative;
}
.detail-visual video { width:100%; height:100%; object-fit:cover; display:block; }
.detail-panel {
  padding: 22px 0;
}
.detail-panel h3 { font-size: 30px; line-height: 1.15; margin-bottom: 16px; }
.detail-panel p { font-size: 16px; line-height: 1.8; color: var(--c-t2d); }
.detail-panel ul { margin-top: 18px; padding-left: 18px; color: var(--c-t2d); }
.detail-panel li { margin-bottom: 10px; line-height: 1.7; }
.metric-strip { display:grid; grid-template-columns: repeat(4, 1fr); gap: 14px; margin-top: 26px; }
.metric-card {
  padding: 24px 20px; border-radius: 18px; border: 1px solid var(--c-border); background: rgba(255,255,255,.04);
}
.metric-card .big { font-size: 30px; font-weight: 700; color: var(--c-blue); }
.metric-card .small { font-size: 12px; color: var(--c-t2d); margin-top: 6px; line-height: 1.5; }
.section-nav {
  display:flex; flex-wrap:wrap; gap: 12px; margin-top: 24px;
}
.section-nav a {
  display:inline-flex; align-items:center; gap:6px; padding:10px 16px; border-radius: 999px;
  background: rgba(255,255,255,.05); border:1px solid var(--c-border); font-size: 13px;
  color: var(--c-t2d);
}
.section-nav a:hover { color: var(--c-t1d); background: rgba(255,255,255,.08); }
.gallery-grid { display:grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 28px; }
.gallery-item {
  border-radius: var(--radius-md); overflow:hidden; border:1px solid var(--c-border);
  background: rgba(255,255,255,.03);
}
.gallery-item img { width:100%; height: 220px; object-fit: cover; }
.gallery-item .cap { padding: 14px 16px 18px; font-size: 13px; color: var(--c-t2d); line-height: 1.6; }
.placeholder-box {
  padding: 28px; border-radius: var(--radius-md); background: rgba(200,16,46,.08);
  border: 1px dashed rgba(200,16,46,.35); margin-top: 28px;
}
.placeholder-box h4 { font-size: 18px; margin-bottom: 12px; color: #f2ccd2; }
.placeholder-box p, .placeholder-box li { color: rgba(245,245,247,.76); line-height: 1.7; }
.placeholder-box ul { padding-left: 18px; }
.download-list { display:grid; gap: 12px; margin-top: 26px; }
.download-item {
  display:grid; grid-template-columns: 1fr auto; gap: 12px; align-items:center;
  padding: 18px 20px; border-radius: 16px; border:1px solid var(--c-border); background: rgba(255,255,255,.03);
}
.download-item strong { display:block; margin-bottom: 6px; }
.download-item span { font-size: 13px; color: var(--c-t2d); line-height: 1.6; }
.download-item a {
  padding: 10px 16px; border-radius: 999px; background: rgba(200,16,46,.14);
  border: 1px solid rgba(200,16,46,.25); color: #ffd9df; font-size: 13px; white-space: nowrap;
}
.download-item a:hover { background: rgba(200,16,46,.22); }
.news-list { display:grid; gap: 16px; margin-top: 28px; }
.news-item {
  display:grid; grid-template-columns: 250px 1fr; gap: 22px; padding: 18px;
  border: 1px solid var(--c-border); border-radius: 18px; background: rgba(255,255,255,.03);
}
.news-item img { width:100%; height: 170px; object-fit:cover; border-radius: 12px; }
.news-item .date { font-size: 12px; color: var(--c-blue); letter-spacing: 1px; text-transform: uppercase; margin-bottom: 10px; }
.news-item h3 { font-size: 24px; margin-bottom: 10px; }
.news-item p { color: var(--c-t2d); line-height: 1.7; }
.cta-band {
  margin-top: 40px; padding: 36px; border-radius: var(--radius-lg); border:1px solid rgba(200,16,46,.2);
  background: linear-gradient(135deg, rgba(200,16,46,.10), rgba(18,18,18,.85));
}
.cta-band h3 { font-size: 34px; margin-bottom: 12px; }
.cta-band p { color: var(--c-t2d); line-height: 1.7; max-width: 760px; }
.tab-group { margin-top: 30px; }
.tab-buttons { display:flex; gap: 10px; flex-wrap:wrap; }
.tab-btn {
  padding: 10px 16px; border-radius: 999px; border: 1px solid var(--c-border);
  background: rgba(255,255,255,.03); color: var(--c-t2d); cursor:pointer;
}
.tab-btn.active { color: var(--c-t1d); background: rgba(200,16,46,.15); border-color: rgba(200,16,46,.3); }
.tab-panel { display:none; padding-top: 22px; }
.tab-panel.active { display:block; }
.iframe-wrap {
  margin-top: 26px; border:1px solid var(--c-border); border-radius: 20px; overflow: hidden; background: #030303;
}
.iframe-wrap iframe { width:100%; height: 720px; border:0; display:block; }
.topic-note {
  margin-top: 18px; padding: 14px 16px; border-radius: 12px; background: rgba(255,255,255,.04);
  color: var(--c-t2d); font-size: 13px; line-height: 1.7;
}
.kpi-grid { display:grid; grid-template-columns: repeat(2,1fr); gap:14px; margin-top: 20px; }
.kpi-grid .card { padding: 24px; }
.empty-stage {
  min-height: 340px; display:flex; align-items:center; justify-content:center; text-align:center;
  color: rgba(245,245,247,.6); background: radial-gradient(circle at center, rgba(200,16,46,.08), rgba(255,255,255,.01));
}
.empty-stage span { max-width: 360px; line-height: 1.8; font-size: 15px; }
.two-col { display:grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.light-note {
  margin-top: 20px; font-size: 13px; color: var(--c-t2d); line-height: 1.7;
}
.badge-row { display:flex; flex-wrap: wrap; gap: 8px; margin-top: 16px; }
.badge {
  padding: 8px 12px; border-radius: 999px; border: 1px solid rgba(200,16,46,.25);
  background: rgba(200,16,46,.08); font-size: 12px; color: #ffd6dc;
}
.topic-field { color: var(--c-blue); font-weight: 600; }
.hidden-field { position:absolute; left:-9999px; width:1px; height:1px; overflow:hidden; opacity:0; pointer-events:none; }
.form-file-hint, .form-response {
  margin-top: 12px; font-size: 13px; line-height: 1.7; color: var(--c-t2d);
}
.form-response.success { color: #99e3aa; }
.form-response.error { color: #ffb7c0; }
.form-response.pending { color: #ffd7a8; }
.mail-link { color: #ffd9df; text-decoration: underline; text-underline-offset: 3px; }
.mail-link:hover { color: #ffffff; }
.legal-list { margin-top: 18px; padding-left: 18px; color: var(--c-t2d); }
.legal-list li { margin-bottom: 10px; line-height: 1.8; }
.admin-shell { max-width: 1240px; margin: 0 auto; padding: calc(var(--nav-h) + 32px) 24px 40px; }
.admin-login, .admin-card {
  border: 1px solid var(--c-border); border-radius: 18px; background: rgba(255,255,255,.04); padding: 22px;
}
.admin-login { max-width: 540px; margin-bottom: 24px; }
.admin-grid { display:grid; gap: 16px; }
.admin-toolbar { display:flex; gap: 12px; flex-wrap: wrap; align-items: center; margin-bottom: 18px; }
.admin-table { width:100%; border-collapse: collapse; font-size: 14px; }
.admin-table th, .admin-table td { padding: 12px 10px; border-bottom: 1px solid rgba(255,255,255,.08); vertical-align: top; text-align: left; }
.admin-table th { color: rgba(245,245,247,.72); font-weight: 600; font-size: 12px; letter-spacing: .04em; text-transform: uppercase; }
.admin-pill { display:inline-flex; align-items:center; padding: 4px 10px; border-radius: 999px; font-size: 12px; background: rgba(255,255,255,.07); }
.admin-pill.pending { background: rgba(255,163,26,.14); color: #ffd08a; }
.admin-pill.approved { background: rgba(52,199,89,.16); color: #9de6ad; }
.admin-pill.rejected { background: rgba(214,31,44,.16); color: #ffb0b7; }
.admin-actions { display:flex; gap: 8px; flex-wrap: wrap; }
.admin-link { color: #ffd9df; text-decoration: underline; text-underline-offset: 2px; }
@media (max-width: 1080px) {
  .hero-stat-row, .metric-strip, .card-grid-4, .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .detail-split, .news-item, .two-col { grid-template-columns: 1fr; }
  .news-item img { height: 220px; }
}
@media (max-width: 820px) {
  #nav { padding: 0 18px; }
  .nav-links { display:none; position:absolute; top:var(--nav-h); left:0; right:0; background:rgba(8,8,8,.96); flex-direction:column; align-items:flex-start; padding:10px 14px 18px; border-bottom:1px solid rgba(255,255,255,.08); }
  .nav-links.open { display:flex; }
  .nav-links a { width:100%; height:auto; padding:14px 10px; }
  .nav-mobile-toggle { display:block; }
  .nav-actions .nav-quick { display:none; }
  .lang-switch { display:none; }
  .page-hero, .sec { padding-left: 20px; padding-right: 20px; }
  .hero-stat-row, .metric-strip, .kpi-grid, .card-grid-3, .card-grid-2, .gallery-grid { grid-template-columns: 1fr; }
  .iframe-wrap iframe { height: 560px; }
  .footer-top { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; align-items:flex-start; }
}
