/* ── TOKENS ─────────────────────────────────────── */
:root {
  --bg:        #0a0c0f;
  --bg2:       #111318;
  --bg3:       #1a1d24;
  --border:    #252830;
  --accent:    #f5a623;
  --accent2:   #e8380d;
  --text:      #d8dbe3;
  --text-dim:  #6b7280;
  --text-muted:#3d4350;
  --white:     #f0f2f7;
  --font-head: 'Bebas Neue', sans-serif;
  --font-body: 'IBM Plex Sans', sans-serif;
  --font-mono: 'IBM Plex Mono', monospace;
  --radius:    4px;
  --max:       1280px;
}

/* ── RESET ───────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.7;
  min-height: 100vh;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; }
ul { list-style: none; }

/* ── NAV ─────────────────────────────────────────── */
.nav-header {
  position: sticky; top: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 2.5rem;
  height: 64px;
  background: rgba(10,12,15,.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.nav-logo {
  font-family: var(--font-head);
  font-size: 1.5rem;
  letter-spacing: .12em;
  display: flex; align-items: center; gap: .3rem;
}
.logo-zh    { color: var(--accent); }
.logo-full  { color: var(--white); }
.logo-sep   { color: var(--text-muted); margin: 0 .4rem; }
.logo-tag   { font-size: .75rem; letter-spacing: .25em; color: var(--text-dim); font-family: var(--font-mono); }
.nav-links  { display: flex; align-items: center; gap: 2rem; }
.nav-links a {
  font-size: .85rem; letter-spacing: .08em; color: var(--text-dim);
  transition: color .2s;
  text-transform: uppercase;
}
.nav-links a:hover, .nav-links a.active { color: var(--white); }
.nav-cta {
  padding: .45rem 1.1rem;
  border: 1px solid var(--accent);
  color: var(--accent) !important;
  border-radius: var(--radius);
  transition: background .2s !important;
}
.nav-cta:hover { background: var(--accent); color: var(--bg) !important; }
.nav-burger { display: none; background: none; border: none; color: var(--white); font-size: 1.4rem; cursor: pointer; }

/* ── FLASH ───────────────────────────────────────── */
.flash-wrap { position: fixed; top: 70px; right: 1.5rem; z-index: 200; display: flex; flex-direction: column; gap: .5rem; }
.flash {
  padding: .7rem 1.2rem;
  border-radius: var(--radius);
  font-size: .88rem;
  animation: slideIn .3s ease;
}
.flash--success { background: #1a3a1a; border: 1px solid #2d6a2d; color: #6fcf6f; }
.flash--error   { background: #3a1a1a; border: 1px solid #6a2d2d; color: #cf6f6f; }
@keyframes slideIn { from { opacity:0; transform: translateX(20px); } }

/* ── HERO ─────────────────────────────────────────── */
.hero {
  position: relative; overflow: hidden;
  min-height: 92vh;
  display: flex; flex-direction: column; justify-content: center;
  padding: 6rem 2.5rem 0;
}
.hero-bg {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 80% 60% at 60% 40%, rgba(245,166,35,.07) 0%, transparent 70%);
}
.hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(245,166,35,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(245,166,35,.04) 1px, transparent 1px);
  background-size: 60px 60px;
}
.hero-content { position: relative; max-width: 780px; }
.hero-eyebrow {
  font-family: var(--font-mono); font-size: .8rem; letter-spacing: .3em;
  color: var(--accent); text-transform: uppercase; margin-bottom: 1.2rem;
}
.hero-title {
  font-family: var(--font-head);
  font-size: clamp(4rem, 10vw, 9rem);
  line-height: .95;
  letter-spacing: -.01em;
  color: var(--white);
}
.hero-accent { color: var(--accent); }
.hero-sub {
  margin-top: 1.5rem;
  max-width: 520px;
  color: var(--text-dim);
  font-size: 1.05rem;
}
.hero-actions {
  margin-top: 2rem;
  display: flex; gap: 1rem; flex-wrap: wrap;
}

/* TICKER */
.hero-ticker {
  position: relative;
  margin-top: 4rem;
  overflow: hidden;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: .6rem 0;
}
.ticker-track {
  display: flex; gap: 2.5rem;
  white-space: nowrap;
  animation: ticker 20s linear infinite;
  font-family: var(--font-mono);
  font-size: .75rem;
  letter-spacing: .2em;
  color: var(--text-muted);
}
.ticker-track .sep { color: var(--accent); }
@keyframes ticker { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ── BUTTONS ─────────────────────────────────────── */
.btn {
  display: inline-block;
  padding: .65rem 1.5rem;
  font-size: .85rem;
  font-family: var(--font-body);
  letter-spacing: .1em;
  text-transform: uppercase;
  border-radius: var(--radius);
  border: none; cursor: pointer;
  transition: all .2s;
  font-weight: 500;
}
.btn--primary  { background: var(--accent); color: var(--bg); }
.btn--primary:hover { background: #fdb93e; }
.btn--outline  { border: 1px solid var(--border); color: var(--text); background: transparent; }
.btn--outline:hover { border-color: var(--accent); color: var(--accent); }
.btn--full { width: 100%; text-align: center; }

/* ── STATS BAND ──────────────────────────────────── */
.stats-band {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--bg2);
}
.stat-item {
  padding: 2rem;
  border-right: 1px solid var(--border);
  text-align: center;
}
.stat-item:last-child { border-right: none; }
.stat-value {
  font-family: var(--font-head);
  font-size: 2.8rem;
  color: var(--accent);
  line-height: 1;
}
.stat-label {
  font-size: .8rem; letter-spacing: .1em;
  color: var(--text-dim); text-transform: uppercase;
  margin-top: .4rem;
}

/* ── SECTION ─────────────────────────────────────── */
.section { padding: 5rem 2.5rem; max-width: var(--max); margin: 0 auto; }
.section--dark {
  max-width: 100%; background: var(--bg2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.section--dark .section { margin: 0 auto; }
.section-header { margin-bottom: 3rem; }
.section-tag {
  font-family: var(--font-mono); font-size: .75rem; letter-spacing: .3em;
  color: var(--accent); text-transform: uppercase; display: block; margin-bottom: .5rem;
}
.section-title {
  font-family: var(--font-head); font-size: clamp(2rem,5vw,3.5rem);
  color: var(--white); line-height: 1;
}

/* ── SERVICES ────────────────────────────────────── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  border: 1px solid var(--border);
  background: var(--border);
}
.service-card {
  background: var(--bg2);
  padding: 2rem;
  display: flex; flex-direction: column; gap: .8rem;
  transition: background .2s;
  position: relative;
}
.service-card:hover { background: var(--bg3); }
.service-icon { font-size: 2rem; }
.service-icon--lg { font-size: 3rem; }
.service-icon--xl { font-size: 4rem; }
.service-card h3 { font-size: 1.1rem; color: var(--white); font-weight: 600; }
.service-card p  { font-size: .9rem; color: var(--text-dim); flex: 1; }
.service-tags { display: flex; flex-wrap: wrap; gap: .4rem; margin-top: .4rem; }
.service-tags li {
  font-family: var(--font-mono); font-size: .7rem;
  padding: .2rem .5rem; border: 1px solid var(--border);
  border-radius: 2px; color: var(--text-dim);
}
.service-arrow { color: var(--accent); font-size: .9rem; margin-top: auto; }
.services-grid--full { grid-template-columns: repeat(2, 1fr); }

/* ── TRACK CTA ───────────────────────────────────── */
.track-cta {
  background: var(--bg3);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 3rem 2.5rem;
}
.track-cta-inner {
  max-width: var(--max); margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between; gap: 2rem; flex-wrap: wrap;
}
.track-cta-text h2 { font-family: var(--font-head); font-size: 1.8rem; color: var(--white); }
.track-cta-text p  { color: var(--text-dim); margin-top: .3rem; }
.track-form-inline { display: flex; gap: .5rem; }
.track-form-inline input {
  padding: .65rem 1rem; background: var(--bg); border: 1px solid var(--border);
  color: var(--white); border-radius: var(--radius); width: 280px;
  font-family: var(--font-mono); font-size: .9rem;
}
.track-form-inline input:focus { outline: none; border-color: var(--accent); }

/* ── WHY ─────────────────────────────────────────── */
.why-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem;
}
.why-card {
  padding: 1.5rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg2);
}
.why-num {
  font-family: var(--font-head); font-size: 2.5rem;
  color: var(--text-muted); line-height: 1; margin-bottom: .8rem;
}
.why-card h3 { color: var(--white); margin-bottom: .5rem; font-size: 1rem; }
.why-card p  { color: var(--text-dim); font-size: .88rem; }

/* ── PAGE HERO ───────────────────────────────────── */
.page-hero {
  background: var(--bg2);
  border-bottom: 1px solid var(--border);
  padding: 4rem 2.5rem 3rem;
}
.page-hero-content { max-width: var(--max); margin: 0 auto; }
.page-hero h1 {
  font-family: var(--font-head); font-size: clamp(2.5rem,7vw,5rem);
  color: var(--white); margin: .5rem 0;
}
.page-hero p { color: var(--text-dim); max-width: 540px; }
.back-link { color: var(--text-dim); font-size: .85rem; display: inline-block; margin-bottom: .8rem; }
.back-link:hover { color: var(--accent); }

/* ── TRACKING ────────────────────────────────────── */
.track-wrap { max-width: 720px; }
.track-form-big { margin-bottom: 2rem; }
.track-input-row { display: flex; gap: .5rem; }
.track-input-row input {
  flex: 1; padding: .75rem 1.2rem;
  background: var(--bg2); border: 1px solid var(--border);
  color: var(--white); border-radius: var(--radius);
  font-family: var(--font-mono); font-size: 1rem;
}
.track-input-row input:focus { outline: none; border-color: var(--accent); }
.track-hint { margin-top: .5rem; font-size: .8rem; color: var(--text-muted); }

.track-result {
  border: 1px solid var(--border); border-radius: var(--radius);
  background: var(--bg2); overflow: hidden;
}
.track-result-header {
  padding: 1.5rem;
  border-bottom: 1px solid var(--border);
  display: flex; justify-content: space-between; align-items: flex-start; gap: 2rem; flex-wrap: wrap;
}
.track-num { font-family: var(--font-mono); font-size: 1.2rem; color: var(--white); }
.track-status { display: inline-block; margin-top: .4rem; padding: .25rem .7rem; border-radius: 2px; font-size: .75rem; font-family: var(--font-mono); }
.track-status--active { background: rgba(245,166,35,.15); color: var(--accent); border: 1px solid var(--accent); }
.track-meta { display: flex; gap: 1.5rem; align-items: center; flex-wrap: wrap; font-size: .85rem; color: var(--text-dim); }
.track-meta span { display: block; font-size: .7rem; letter-spacing: .1em; text-transform: uppercase; color: var(--text-muted); margin-bottom: .2rem; }
.arrow-big { font-size: 1.5rem; color: var(--text-muted); }

.track-timeline { padding: 1.5rem; display: flex; flex-direction: column; gap: 0; }
.timeline-step {
  display: flex; gap: 1.2rem; align-items: flex-start;
  padding-bottom: 1.2rem;
  position: relative;
}
.timeline-step:last-child { padding-bottom: 0; }
.timeline-step::before {
  content: ''; position: absolute; left: 7px; top: 18px;
  width: 1px; height: 100%;
  background: var(--border);
}
.timeline-step:last-child::before { display: none; }
.step-dot {
  width: 15px; height: 15px; border-radius: 50%; flex-shrink: 0; margin-top: 3px;
  border: 2px solid var(--border); background: var(--bg);
}
.done .step-dot { border-color: var(--accent); background: var(--accent); }
.pending .step-dot { border-color: var(--text-muted); }
.step-event { color: var(--white); font-size: .9rem; }
.pending .step-event { color: var(--text-muted); }
.step-meta { font-size: .75rem; color: var(--text-muted); font-family: var(--font-mono); margin-top: .15rem; }

/* ── ABOUT ───────────────────────────────────────── */
.about-grid { display: grid; grid-template-columns: 1fr 360px; gap: 4rem; }
.about-text h2 { font-family: var(--font-head); font-size: 2rem; color: var(--white); margin-bottom: 1rem; }
.about-text p  { color: var(--text-dim); margin-bottom: 1rem; }
.about-stats-col { display: flex; flex-direction: column; gap: 1rem; }
.stat-card {
  background: var(--bg3); border: 1px solid var(--border);
  padding: 1.2rem 1.5rem; border-radius: var(--radius);
}
.stat-card .stat-value { font-family: var(--font-head); font-size: 2rem; color: var(--accent); }
.stat-card .stat-label { font-size: .78rem; color: var(--text-dim); text-transform: uppercase; letter-spacing: .1em; }

.team-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; }
.team-card {
  background: var(--bg); border: 1px solid var(--border);
  padding: 2rem; border-radius: var(--radius); text-align: center;
}
.team-avatar {
  width: 64px; height: 64px; border-radius: 50%;
  background: var(--accent); color: var(--bg);
  font-family: var(--font-head); font-size: 2rem;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1rem;
}
.team-card h3   { color: var(--white); }
.team-role      { color: var(--accent); font-size: .85rem; margin-top: .3rem; }
.team-exp       { color: var(--text-muted); font-size: .8rem; margin-top: .2rem; }

/* ── CONTACT ─────────────────────────────────────── */
.contact-grid { display: grid; grid-template-columns: 340px 1fr; gap: 3rem; }
.contact-info h2 { font-family: var(--font-head); font-size: 1.8rem; color: var(--white); margin-bottom: 1.5rem; }
.contact-item { display: flex; gap: 1rem; margin-bottom: 1.5rem; align-items: flex-start; }
.contact-icon { font-size: 1.3rem; flex-shrink: 0; }
.contact-item strong { color: var(--white); display: block; margin-bottom: .2rem; }
.contact-item a { color: var(--accent); }
.contact-form-wrap h2 { font-family: var(--font-head); font-size: 1.8rem; color: var(--white); margin-bottom: 1.5rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { display: flex; flex-direction: column; gap: .4rem; margin-bottom: .9rem; }
.form-group label { font-size: .8rem; letter-spacing: .08em; color: var(--text-dim); text-transform: uppercase; }
.form-group input,
.form-group textarea,
.form-group select {
  background: var(--bg2); border: 1px solid var(--border);
  color: var(--white); padding: .65rem .9rem;
  border-radius: var(--radius); font-family: var(--font-body); font-size: .9rem;
  transition: border-color .2s;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus { outline: none; border-color: var(--accent); }
.form-group select option { background: var(--bg2); }

/* ── DETAIL PAGE ─────────────────────────────────── */
.detail-grid { display: grid; grid-template-columns: 1fr 300px; gap: 3rem; }
.detail-main h2 { font-family: var(--font-head); font-size: 1.8rem; color: var(--white); margin-bottom: 1rem; }
.detail-list { display: flex; flex-direction: column; gap: .6rem; }
.detail-list li { color: var(--text-dim); font-size: .95rem; }
.detail-list li::before { content: ''; }
.detail-cta {
  background: var(--bg3); border: 1px solid var(--border);
  padding: 1.5rem; border-radius: var(--radius);
  height: fit-content;
}
.detail-cta h3 { color: var(--white); margin-bottom: .5rem; }
.detail-cta p  { color: var(--text-dim); font-size: .88rem; margin-bottom: 1rem; }

/* ── FOOTER ──────────────────────────────────────── */
.footer {
  border-top: 1px solid var(--border);
  background: var(--bg2);
  padding: 3rem 2.5rem 1.5rem;
}
.footer-inner {
  max-width: var(--max); margin: 0 auto;
  display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 3rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--border);
}
.footer-logo {
  font-family: var(--font-head); font-size: 1.8rem; color: var(--white);
  letter-spacing: .1em; margin-bottom: .7rem;
}
.footer-logo span { color: var(--accent); }
.footer-brand p { color: var(--text-dim); font-size: .88rem; max-width: 240px; }
.footer-col h4 { color: var(--white); font-size: .8rem; text-transform: uppercase; letter-spacing: .15em; margin-bottom: .8rem; }
.footer-col a, .footer-col span {
  display: block; color: var(--text-dim); font-size: .85rem; margin-bottom: .4rem;
}
.footer-col a:hover { color: var(--accent); }
.footer-bottom {
  max-width: var(--max); margin: 1.2rem auto 0;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: .5rem;
  font-size: .78rem; color: var(--text-muted); font-family: var(--font-mono);
}

/* ── RESPONSIVE ──────────────────────────────────── */
@media (max-width: 1024px) {
  .stats-band       { grid-template-columns: repeat(2,1fr); }
  .services-grid    { grid-template-columns: repeat(2,1fr); }
  .why-grid         { grid-template-columns: repeat(2,1fr); }
  .about-grid       { grid-template-columns: 1fr; }
  .footer-inner     { grid-template-columns: 1fr 1fr; }
  .contact-grid     { grid-template-columns: 1fr; }
  .detail-grid      { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .nav-links        { display: none; }
  .nav-links.open   { display: flex; flex-direction: column; position: absolute; top: 64px; left: 0; right: 0; background: var(--bg2); padding: 1rem 2rem; border-bottom: 1px solid var(--border); }
  .nav-burger       { display: block; }
  .hero             { padding: 3rem 1.5rem 0; min-height: 80vh; }
  .services-grid    { grid-template-columns: 1fr; }
  .services-grid--full { grid-template-columns: 1fr; }
  .why-grid         { grid-template-columns: 1fr; }
  .team-grid        { grid-template-columns: 1fr; }
  .track-cta-inner  { flex-direction: column; }
  .track-form-inline { flex-direction: column; }
  .track-form-inline input { width: 100%; }
  .form-row         { grid-template-columns: 1fr; }
  .footer-inner     { grid-template-columns: 1fr; }
  .section          { padding: 3rem 1.5rem; }
}

/* ── LANG SWITCHER ────────────────────────────────── */
.lang-switcher {
  display: flex; gap: .3rem; align-items: center;
  margin-left: 1.5rem;
}
.lang-btn {
  display: flex; align-items: center; gap: .3rem;
  padding: .3rem .55rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: .72rem;
  font-family: var(--font-mono);
  letter-spacing: .08em;
  color: var(--text-muted);
  transition: all .2s;
  line-height: 1;
}
.lang-btn:hover { border-color: var(--accent); color: var(--accent); }
.lang-active    { border-color: var(--accent) !important; color: var(--accent) !important; background: rgba(245,166,35,.08); }
.flag { font-size: 1.2rem; line-height: 1; }
.lang-label { display: none; }

/* ── ROAD DETAIL SECTION ─────────────────────────── */
.road-detail-section {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 5rem 2.5rem;
}
.road-detail-inner { max-width: var(--max); margin: 0 auto; }
.road-desc {
  color: var(--text-dim); font-size: 1rem; max-width: 700px;
  margin-bottom: 3rem; line-height: 1.8;
}
.road-cols {
  display: grid; grid-template-columns: 1fr 380px; gap: 3rem;
}
.road-feat-title {
  font-size: .8rem; letter-spacing: .2em; text-transform: uppercase;
  color: var(--accent); font-family: var(--font-mono);
  margin-bottom: 1.2rem;
}
.road-feat-list { display: flex; flex-direction: column; gap: .6rem; }
.road-feat-list li {
  display: flex; gap: .7rem; align-items: flex-start;
  color: var(--text); font-size: .92rem; padding: .5rem 0;
  border-bottom: 1px solid var(--border);
}
.road-feat-list li:last-child { border-bottom: none; }
.feat-bullet { color: var(--accent); font-size: .8rem; flex-shrink: 0; margin-top: .15rem; }

.storage-card {
  background: var(--bg3); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 2rem;
  position: sticky; top: 80px;
}
.storage-icon { font-size: 2.5rem; margin-bottom: 1rem; }
.storage-card h3 { color: var(--white); font-size: 1.1rem; margin-bottom: .7rem; }
.storage-card p  { color: var(--text-dim); font-size: .88rem; margin-bottom: 1.2rem; line-height: 1.7; }
.storage-list { display: flex; flex-direction: column; gap: .5rem; }
.storage-list li { color: var(--text-dim); font-size: .85rem; }
.storage-list li { color: var(--accent); }
.storage-list li { color: var(--text); }

/* override: storage list text color */
.storage-list li { color: var(--text-dim); font-size: .85rem; }

@media (max-width: 1024px) {
  .road-cols { grid-template-columns: 1fr; }
  .storage-card { position: static; }
  .lang-switcher { margin-left: .8rem; }
}
@media (max-width: 768px) {
  .lang-btn { padding: .3rem .4rem; }
  .road-detail-section { padding: 3rem 1.5rem; }
}

/* ── VIDEO HERO ───────────────────────────────────── */
.hero-video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; z-index: 0;
}
.hero-video-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(135deg, rgba(10,12,15,.85) 0%, rgba(10,12,15,.6) 100%);
}
.hero .hero-content  { position: relative; z-index: 2; }
.hero .hero-ticker   { position: relative; z-index: 2; }
.hero .hero-bg       { z-index: 0; }

/* ── SINCER LAYOUT (service detail) ──────────────── */
.sincer-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  min-height: 60vh;
  max-width: var(--max);
  margin: 0 auto;
  border-bottom: 1px solid var(--border);
}

.sincer-sidebar {
  border-right: 1px solid var(--border);
  background: var(--bg2);
  padding: 1.5rem 0;
}
.sidebar-item {
  display: flex; align-items: center; gap: .8rem;
  padding: .9rem 1.5rem;
  font-size: .88rem; color: var(--text-dim);
  border-left: 3px solid transparent;
  transition: all .2s;
}
.sidebar-item:hover { background: var(--bg3); color: var(--white); }
.sidebar-item--active {
  background: var(--bg3);
  border-left-color: var(--accent);
  color: var(--white);
}
.sidebar-icon { font-size: 1.2rem; flex-shrink: 0; }
.sidebar-title { flex: 1; }
.sidebar-arrow { color: var(--accent); margin-left: auto; }

.sincer-content { padding: 2.5rem 3rem; }
.sincer-title {
  font-family: var(--font-head);
  font-size: 2rem; color: var(--white);
  margin-bottom: 2rem;
  display: flex; align-items: center; gap: .8rem;
}
.sincer-accent { color: var(--accent); font-size: 2.5rem; line-height: 1; }

.sincer-photo-wrap {
  display: grid; grid-template-columns: 320px 1fr; gap: 2rem;
  margin-bottom: 2rem; align-items: start;
}
.sincer-photo {
  width: 100%; border-radius: 6px;
  border: 1px solid var(--border);
  object-fit: cover; max-height: 240px;
}
.sincer-desc-side { color: var(--text-dim); line-height: 1.8; font-size: .95rem; }
.sincer-desc-full { color: var(--text-dim); line-height: 1.8; font-size: .95rem; margin-bottom: 2rem; }

.sincer-features { margin: 2rem 0; }
.sincer-features h3 {
  font-size: .78rem; letter-spacing: .2em; text-transform: uppercase;
  color: var(--accent); font-family: var(--font-mono); margin-bottom: 1rem;
}
.sincer-feat-list { display: grid; grid-template-columns: 1fr 1fr; gap: .5rem; }
.sincer-feat-list li {
  display: flex; gap: .6rem; align-items: flex-start;
  color: var(--text); font-size: .9rem;
  padding: .5rem 0; border-bottom: 1px solid var(--border);
}
.feat-check { color: var(--accent); flex-shrink: 0; }

.sincer-cta {
  background: var(--bg3); border: 1px solid var(--border);
  border-radius: 4px; padding: 1.5rem; display: inline-block; margin-top: 1rem;
}
.sincer-cta h3 { color: var(--white); margin-bottom: .5rem; }
.sincer-cta p  { color: var(--text-dim); font-size: .88rem; margin-bottom: 1rem; }

/* breadcrumb */
.breadcrumb { font-size: .8rem; color: var(--text-muted); margin-bottom: .5rem; }
.breadcrumb a { color: var(--text-dim); }
.breadcrumb a:hover { color: var(--accent); }
.breadcrumb span { color: var(--accent); }

/* service card photo */
.service-card-img {
  width: 100%; height: 160px;
  background-size: cover; background-position: center;
  border-radius: 2px; margin-bottom: .5rem;
}

/* team photo */
.team-photo { width: 80px; height: 80px; border-radius: 50%; object-fit: cover; margin: 0 auto .8rem; display: block; }

/* page hero sm */
.page-hero--sm { padding: 2.5rem 2.5rem 2rem; }

@media (max-width: 1024px) {
  .sincer-layout { grid-template-columns: 1fr; }
  .sincer-sidebar { display: flex; flex-wrap: wrap; border-right: none; border-bottom: 1px solid var(--border); padding: .5rem; }
  .sidebar-item { border-left: none; border-bottom: 2px solid transparent; padding: .6rem 1rem; }
  .sidebar-item--active { border-bottom-color: var(--accent); border-left: none; }
  .sincer-content { padding: 1.5rem; }
  .sincer-photo-wrap { grid-template-columns: 1fr; }
  .sincer-feat-list { grid-template-columns: 1fr; }
}

/* ── FLOATING BUTTONS ────────────────────────────── */
.wa-float, .tg-float {
  position: fixed; right: 1.5rem; z-index: 999;
  width: 56px; height: 56px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: transform .2s, box-shadow .2s;
  cursor: pointer;
}
.wa-float {
  bottom: 1.5rem;
  background: #25d366;
  box-shadow: 0 4px 20px rgba(37,211,102,.45);
}
.tg-float {
  bottom: 5.5rem;
  background: #229ed9;
  box-shadow: 0 4px 20px rgba(34,158,217,.45);
}
.wa-float:hover { transform: scale(1.12); box-shadow: 0 6px 28px rgba(37,211,102,.65); }
.tg-float:hover { transform: scale(1.12); box-shadow: 0 6px 28px rgba(34,158,217,.65); }

/* ── FOOTER SOCIALS ──────────────────────────────── */
.footer-socials { display: flex; gap: .7rem; margin-top: 1rem; flex-wrap: wrap; }
.footer-social {
  display: inline-flex; align-items: center; gap: .4rem;
  padding: .4rem .8rem; border-radius: 4px;
  font-size: .78rem; font-weight: 500; transition: opacity .2s;
}
.footer-social:hover { opacity: .85; }
.footer-social.wa { background: #25d366; color: #fff; }
.footer-social.tg { background: #229ed9; color: #fff; }

/* ── 2GIS MAPS ───────────────────────────────────── */
.maps-section { padding-top: 0; }
.maps-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }

.map-card {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 6px;
  overflow: hidden;
}
.map-label {
  display: flex; align-items: center; gap: 1rem;
  padding: 1rem 1.2rem;
  border-bottom: 1px solid var(--border);
  flex-wrap: wrap;
}
.map-city-badge {
  width: 44px; height: 44px; border-radius: 6px;
  background: var(--accent); color: var(--bg);
  font-family: var(--font-head); font-size: 1rem;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; letter-spacing: .05em;
}
.map-city-info { flex: 1; }
.map-city-info strong { color: var(--white); display: block; font-size: 1rem; }
.map-city-info span  { font-size: .78rem; color: var(--text-dim); }
.map-actions { display: flex; gap: .5rem; flex-wrap: wrap; }

.map-route-btn {
  display: inline-flex; align-items: center; gap: .3rem;
  padding: .4rem .9rem; border-radius: 4px;
  background: var(--accent); color: var(--bg);
  font-size: .78rem; font-weight: 600;
  white-space: nowrap; transition: background .2s;
}
.map-route-btn:hover { background: #fdb93e; }

.map-open-btn {
  display: inline-flex; align-items: center;
  padding: .4rem .8rem; border-radius: 4px;
  border: 1px solid var(--border); color: var(--text-dim);
  font-size: .78rem; white-space: nowrap;
  transition: border-color .2s, color .2s;
}
.map-open-btn:hover { border-color: var(--accent); color: var(--accent); }

.map-address {
  padding: .6rem 1.2rem;
  font-size: .82rem; color: var(--text-dim);
  border-bottom: 1px solid var(--border);
}
.map-frame-wrap { width: 100%; }

/* contact buttons */
.contact-wa-btn {
  display: inline-flex; align-items: center; gap: .4rem;
  padding: .4rem .9rem; background: #25d366; color: #fff;
  border-radius: 4px; font-size: .82rem; font-weight: 500;
  margin-top: .3rem; transition: background .2s;
}
.contact-wa-btn:hover { background: #1da851; }
.contact-tg-btn {
  display: inline-flex; align-items: center; gap: .4rem;
  padding: .4rem .9rem; background: #229ed9; color: #fff;
  border-radius: 4px; font-size: .82rem; font-weight: 500;
  margin-top: .3rem; transition: background .2s;
}
.contact-tg-btn:hover { background: #1a7fb8; }
.form-tg-note { font-size: .75rem; color: var(--text-muted); margin-top: .5rem; text-align: center; }

@media (max-width: 768px) {
  .maps-grid { grid-template-columns: 1fr; }
  .map-label { gap: .6rem; }
}
.flag-text {
  font-size: .75rem; font-weight: 700;
  font-family: var(--font-mono);
  letter-spacing: .05em;
}
.footer-social.ig { background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); color: #fff; }
.contact-ig-btn {
  display: inline-flex; align-items: center; gap: .4rem;
  padding: .4rem .9rem; border-radius: 4px; font-size: .82rem; font-weight: 500;
  margin-top: .3rem; transition: opacity .2s; color: #fff;
  background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}
.contact-ig-btn:hover { opacity: .85; }
.china-section { padding-top: 0; }
.maps-grid--3 { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 1024px) { .maps-grid--3 { grid-template-columns: 1fr; } }

/* ── РЕКВИЗИТЫ ───────────────────────────────────── */
.req-company-card {
  background: var(--bg2); border: 1px solid var(--border);
  border-radius: 6px; padding: 1.5rem; margin-bottom: 2rem;
  border-left: 4px solid var(--accent);
}
.req-company-name { font-family: var(--font-head); font-size: 1.4rem; color: var(--white); margin-bottom: 1rem; }
.req-company-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 1rem; }
.req-item { display: flex; flex-direction: column; gap: .2rem; }
.req-item span { font-size: .72rem; letter-spacing: .1em; text-transform: uppercase; color: var(--text-muted); }
.req-item strong { color: var(--white); font-size: .9rem; }
.req-item strong a { color: var(--accent); }
.req-mono { font-family: var(--font-mono); letter-spacing: .05em; }
.banks-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.bank-card { background: var(--bg2); border: 1px solid var(--border); border-radius: 6px; overflow: hidden; }
.bank-header { display: flex; align-items: center; gap: 1rem; padding: 1rem 1.2rem; background: var(--bg3); border-bottom: 1px solid var(--border); }
.bank-icon { font-size: 1.5rem; flex-shrink: 0; }
.bank-name { font-weight: 600; color: var(--white); font-size: .92rem; }
.bank-bik { font-size: .78rem; color: var(--text-dim); margin-top: .1rem; }
.bank-accounts { padding: .5rem 0; }
.bank-acc-row { display: flex; align-items: center; gap: .8rem; padding: .5rem 1.2rem; border-bottom: 1px solid var(--border); }
.bank-acc-row:last-child { border-bottom: none; }
.acc-currency { width: 36px; flex-shrink: 0; font-size: .72rem; font-weight: 700; color: var(--accent); font-family: var(--font-mono); }
.acc-iik { flex: 1; font-size: .82rem; color: var(--white); font-family: var(--font-mono); }
.acc-copy { background: none; border: 1px solid var(--border); border-radius: 3px; color: var(--text-dim); cursor: pointer; padding: .25rem .4rem; transition: all .15s; }
.acc-copy:hover { border-color: var(--accent); color: var(--accent); }
.acc-copy.copied { border-color: #6fcf6f; color: #6fcf6f; }
.docs-section { padding-top: 0; }
.docs-grid { display: grid; grid-template-columns: repeat(auto-fill,minmax(280px,1fr)); gap: 1rem; }
.doc-card { display: flex; align-items: center; gap: 1rem; background: var(--bg2); border: 1px solid var(--border); border-radius: 6px; padding: 1.2rem; transition: border-color .2s; }
.doc-card:hover:not(.doc-card--empty) { border-color: var(--accent); }
.doc-card--empty { opacity: .6; }
.doc-icon { font-size: 2rem; flex-shrink: 0; }
.doc-title { font-size: .9rem; color: var(--white); font-weight: 500; line-height: 1.4; }
.doc-download { font-size: .78rem; color: var(--accent); margin-top: .3rem; }
.doc-soon { font-size: .78rem; color: var(--text-muted); margin-top: .3rem; }
@media (max-width:768px) { .req-company-grid,.banks-grid { grid-template-columns: 1fr; } }
