/* ============================================================
   镜羽代肝小站 — 静态站点样式
   暗黑恐怖美学 · 复刻自原 Tailwind 设计系统
   ============================================================ */

:root {
  --ink-950: #070708;
  --ink-900: #0c0d0f;
  --ink-850: #111317;
  --ink-800: #16181d;
  --ink-700: #1e2128;
  --ink-600: #2a2e37;
  --ink-500: #3a3f4b;

  --blood-400: #f87171;
  --blood-500: #ef4444;
  --blood-600: #dc2626;
  --blood-700: #b91c1c;
  --blood-800: #7f1d1d;

  --ember-400: #fb923c;
  --ember-500: #f97316;
  --ember-600: #ea580c;

  --bone-100: #f5f5f4;
  --bone-200: #e7e5e4;
  --bone-300: #d6d3d1;
  --bone-400: #a8a29e;
  --bone-500: #78716c;

  --shadow-glow: 0 0 30px -8px rgba(220, 38, 38, 0.45);
  --shadow-glow-ember: 0 0 30px -8px rgba(249, 115, 22, 0.45);

  --font-sans: "Inter", "PingFang SC", "Microsoft YaHei", "Segoe UI", sans-serif;
  --font-display: "Oswald", "PingFang SC", "Microsoft YaHei", sans-serif;

  --maxw: 80rem; /* ~7xl */
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; color-scheme: dark; }

body {
  margin: 0;
  background-color: var(--ink-950);
  color: var(--bone-200);
  font-family: var(--font-sans);
  -webkit-font-smoothing: antialiased;
  line-height: 1.5;
  background-image:
    radial-gradient(1200px 600px at 50% -10%, rgba(220, 38, 38, 0.18), transparent 60%),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2'/%3E%3CfeColorMatrix values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.06 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-attachment: fixed;
}

h1, h2, h3, .font-display {
  font-family: var(--font-display);
  letter-spacing: 0.01em;
  margin: 0;
}

p { margin: 0; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
ul, ol { margin: 0; padding: 0; list-style: none; }
button { font-family: inherit; cursor: pointer; border: 0; background: none; color: inherit; }

/* Scrollbar */
::-webkit-scrollbar { width: 10px; height: 10px; }
::-webkit-scrollbar-track { background: var(--ink-900); }
::-webkit-scrollbar-thumb { background: var(--ink-600); border-radius: 6px; }
::-webkit-scrollbar-thumb:hover { background: var(--blood-700); }

/* ============== Layout ============== */
.container-page {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: 1.25rem;
}
@media (min-width: 640px) { .container-page { padding-inline: 2rem; } }

main { display: block; }

/* ============== Components ============== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border-radius: 0.375rem;
  padding: 0.75rem 1.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.025em;
  transition: all 0.2s;
  white-space: nowrap;
}
.btn-primary { background: var(--blood-600); color: #fff; }
.btn-primary:hover { background: var(--blood-500); box-shadow: var(--shadow-glow); }
.btn-ghost {
  border: 1px solid var(--ink-600);
  background: rgba(22, 24, 29, 0.6);
  color: var(--bone-200);
}
.btn-ghost:hover { border-color: var(--blood-600); color: #fff; }
.btn-ember { background: var(--ember-600); color: #fff; }
.btn-ember:hover { background: var(--ember-500); box-shadow: var(--shadow-glow-ember); }
.btn-sm { padding: 0.5rem 1rem; font-size: 0.75rem; }
.btn-block { width: 100%; }

.card {
  border-radius: 0.75rem;
  border: 1px solid var(--ink-700);
  background: rgba(17, 19, 23, 0.8);
  backdrop-filter: blur(8px);
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  border-radius: 9999px;
  border: 1px solid var(--ink-600);
  background: rgba(22, 24, 29, 0.7);
  padding: 0.25rem 0.75rem;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--bone-300);
}

.section-title {
  font-family: var(--font-display);
  font-size: 1.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.025em;
  color: var(--bone-100);
}
@media (min-width: 640px) { .section-title { font-size: 2.25rem; } }

.eyebrow {
  display: inline-block;
  margin-bottom: 0.75rem;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--blood-500);
}

.text-gradient-blood {
  background: linear-gradient(90deg, var(--ember-500), var(--blood-600));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.link-underline {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
}
.link-underline::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  height: 1px; width: 0;
  background: var(--blood-500);
  transition: width 0.3s;
}
.link-underline:hover::after { width: 100%; }

/* Icon helper (svg) */
.icon { width: 1em; height: 1em; stroke: currentColor; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; flex-shrink: 0; }

/* ============== Navbar ============== */
.navbar {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 40;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: transparent;
}
.navbar.scrolled {
  border-bottom-color: var(--ink-700);
  background: rgba(7, 7, 8, 0.9);
  backdrop-filter: blur(12px);
}
.navbar-inner {
  display: flex;
  height: 4rem;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.brand { display: flex; align-items: center; gap: 0.625rem; flex-shrink: 0; }
.brand-logo {
  display: grid;
  place-items: center;
  width: 2.25rem; height: 2.25rem;
  border-radius: 0.375rem;
  background: linear-gradient(135deg, var(--blood-600), var(--ember-500));
  box-shadow: var(--shadow-glow);
  font-family: var(--font-display);
  font-weight: 700;
  color: #fff;
}
.brand-name { font-family: var(--font-display); font-size: 1rem; font-weight: 700; color: var(--bone-100); line-height: 1; }
.brand-sub { font-size: 10px; text-transform: uppercase; letter-spacing: 0.2em; color: var(--bone-500); margin-top: 2px; }

.nav-links { display: none; align-items: center; gap: 0.25rem; }
@media (min-width: 1024px) { .nav-links { display: flex; } }
.nav-link {
  border-radius: 0.375rem;
  padding: 0.5rem 0.75rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--bone-300);
  transition: color 0.2s;
}
.nav-link:hover { color: #fff; }
.nav-link.active { color: var(--blood-400); }

.nav-actions { display: flex; align-items: center; gap: 0.5rem; }

/* Language switcher */
.lang-switch { position: relative; }
.lang-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  border: 1px solid var(--ink-600);
  background: rgba(22, 24, 29, 0.7);
  border-radius: 0.375rem;
  padding: 0.5rem 0.75rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--bone-300);
  transition: all 0.2s;
}
.lang-btn:hover { border-color: var(--blood-600); color: #fff; }
.lang-menu {
  position: absolute;
  right: 0;
  margin-top: 0.5rem;
  width: 10rem;
  border: 1px solid var(--ink-600);
  background: var(--ink-850);
  border-radius: 0.375rem;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  z-index: 50;
}
.lang-menu button {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  padding: 0.625rem 1rem;
  font-size: 0.875rem;
  color: var(--bone-300);
  transition: background 0.15s;
}
.lang-menu button:hover { background: var(--ink-700); }
.lang-menu button.active { color: var(--blood-400); }

.nav-cta { display: none; }
@media (min-width: 640px) { .nav-cta { display: inline-flex; } }

.menu-toggle {
  display: grid;
  place-items: center;
  width: 2.5rem; height: 2.5rem;
  border: 1px solid var(--ink-600);
  background: rgba(22, 24, 29, 0.7);
  border-radius: 0.375rem;
  color: var(--bone-200);
}
@media (min-width: 1024px) { .menu-toggle { display: none; } }

.mobile-menu {
  display: none;
  border-top: 1px solid var(--ink-700);
  background: rgba(7, 7, 8, 0.95);
  backdrop-filter: blur(12px);
}
.mobile-menu.open { display: block; }
@media (min-width: 1024px) { .mobile-menu { display: none !important; } }
.mobile-menu .container-page { display: flex; flex-direction: column; gap: 0.25rem; padding-block: 0.75rem; }
.mobile-menu a.nav-link { padding: 0.75rem 1rem; }
.mobile-menu a.nav-link.active { background: var(--ink-800); }

/* ============== Footer ============== */
.footer { margin-top: 6rem; border-top: 1px solid var(--ink-700); background: var(--ink-950); }
.footer-grid {
  display: grid;
  gap: 2.5rem;
  padding-block: 3.5rem;
  grid-template-columns: 1fr;
}
@media (min-width: 768px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .footer-grid { grid-template-columns: 2fr 1fr 1fr; } }
.footer h4 { font-size: 0.875rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em; color: var(--bone-200); margin-bottom: 1rem; }
.footer ul li { margin-bottom: 0.625rem; }
.footer ul li a { font-size: 0.875rem; color: var(--bone-400); transition: color 0.2s; }
.footer ul li a:hover { color: var(--blood-400); }
.footer-bottom { border-top: 1px solid var(--ink-800); }
.footer-bottom .container-page { padding-block: 1.25rem; text-align: center; font-size: 0.75rem; color: var(--bone-500); }

/* ============== Page header ============== */
.page-header {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--ink-700);
  background: var(--ink-900);
  padding: 7rem 0 3.5rem;
}
.page-header .fog { position: absolute; inset: 0; background: radial-gradient(1200px 600px at 50% -10%, rgba(220,38,38,0.18), transparent 60%); pointer-events: none; }
.page-header .glow { position: absolute; top: 0; right: -5rem; width: 16rem; height: 16rem; border-radius: 9999px; background: rgba(185, 28, 28, 0.2); filter: blur(60px); pointer-events: none; }
.page-header .container-page { position: relative; }
.page-header h1 { font-size: 2.25rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.025em; color: var(--bone-100); }
@media (min-width: 640px) { .page-header h1 { font-size: 3rem; } }
.page-header p { margin-top: 1rem; max-width: 42rem; font-size: 1rem; line-height: 1.7; color: var(--bone-400); }

/* ============== Section spacing ============== */
.section { padding-block: 5rem; }
@media (min-width: 640px) { .section { padding-block: 7rem; } }
.section-bordered { border-block: 1px solid var(--ink-700); background: rgba(14, 15, 17, 0.6); }

/* ============== Grid helpers ============== */
.grid { display: grid; gap: 1.25rem; }
.grid-2 { grid-template-columns: 1fr; }
.grid-3 { grid-template-columns: 1fr; }
.grid-4 { grid-template-columns: 1fr; }
.grid-5 { grid-template-columns: 1fr; }
@media (min-width: 640px) {
  .grid-2 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .grid-3 { grid-template-columns: repeat(3, 1fr); }
  .grid-4 { grid-template-columns: repeat(4, 1fr); }
  .grid-5 { grid-template-columns: repeat(5, 1fr); }
}

/* ============== Animations ============== */
@keyframes flicker { 0%, 100% { opacity: 1; } 50% { opacity: 0.85; } }
@keyframes floaty { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-6px); } }
.flicker { animation: flicker 4s ease-in-out infinite; }

/* ============== Home: Hero ============== */
.hero { position: relative; min-height: 78vh; display: flex; align-items: center; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; opacity: 0.5; }
.hero-bg .overlay { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(7,7,8,0.55) 0%, rgba(7,7,8,0.75) 60%, rgba(7,7,8,1) 100%); }
.hero-bg .noise { position: absolute; inset: 0; opacity: 0.6; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2'/%3E%3CfeColorMatrix values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.06 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E"); }
.hero .container-page { position: relative; padding-block: 5rem; }
.hero-inner { max-width: 48rem; }
.hero h1 { font-size: 3rem; font-weight: 700; text-transform: uppercase; line-height: 1.1; color: var(--bone-100); }
@media (min-width: 640px) { .hero h1 { font-size: 3.75rem; } }
@media (min-width: 1024px) { .hero h1 { font-size: 4.5rem; } }
.hero .hero-highlight { margin-top: 1rem; font-family: var(--font-display); font-size: 1.5rem; font-weight: 600; }
@media (min-width: 640px) { .hero .hero-highlight { font-size: 1.875rem; } }
.hero .hero-sub { margin-top: 1.5rem; max-width: 42rem; font-size: 1rem; line-height: 1.7; color: var(--bone-300); }
@media (min-width: 640px) { .hero .hero-sub { font-size: 1.125rem; } }
.hero-cta { margin-top: 2.25rem; display: flex; flex-wrap: wrap; gap: 1rem; }

/* ============== Home: services grid ============== */
.section-head { margin-bottom: 3rem; display: flex; flex-direction: column; gap: 1.5rem; }
.section-head-between { justify-content: space-between; align-items: flex-start; }
@media (min-width: 640px) { .section-head-between { flex-direction: row; align-items: flex-end; } }
.section-head .head-text { max-width: 42rem; }
.section-head .head-text p { margin-top: 1rem; font-size: 1rem; line-height: 1.7; color: var(--bone-400); }

.service-card {
  position: relative;
  overflow: hidden;
  padding: 1.75rem;
  transition: all 0.3s;
}
.service-card:hover { transform: translateY(-4px); border-color: var(--blood-600); box-shadow: var(--shadow-glow); }
.service-icon {
  display: grid; place-items: center;
  width: 3rem; height: 3rem;
  border-radius: 0.5rem;
  margin-bottom: 1.25rem;
  color: #fff;
}
.service-card h3 { font-size: 1.25rem; font-weight: 700; color: var(--bone-100); }
.service-card p { margin-top: 0.5rem; font-size: 0.875rem; line-height: 1.7; color: var(--bone-400); }
.service-card .more { margin-top: 1.25rem; display: none; align-items: center; gap: 0.25rem; font-size: 0.75rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em; color: var(--blood-400); }
.service-card:hover .more { display: inline-flex; }
.service-card .blob { position: absolute; top: -1.5rem; right: -1.5rem; width: 6rem; height: 6rem; border-radius: 9999px; background: rgba(185, 28, 28, 0.1); filter: blur(40px); transition: background 0.3s; }
.service-card:hover .blob { background: rgba(185, 28, 28, 0.2); }
.cta-card { display: flex; flex-direction: column; justify-content: space-between; border-color: rgba(185, 28, 28, 0.5); background: linear-gradient(135deg, var(--ink-800), var(--ink-850)); }
.cta-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-glow); }
.cta-card .more { color: var(--ember-400); }

/* ============== Home: why ============== */
.why-card { padding: 1.75rem; transition: all 0.3s; }
.why-card:hover { border-color: rgba(185, 28, 28, 0.6); }
.why-icon {
  display: grid; place-items: center;
  width: 2.75rem; height: 2.75rem;
  border-radius: 0.5rem;
  border: 1px solid rgba(185, 28, 28, 0.4);
  background: rgba(185, 28, 28, 0.1);
  color: var(--blood-400);
  margin-bottom: 1.25rem;
  transition: background 0.3s;
}
.why-card:hover .why-icon { background: rgba(185, 28, 28, 0.2); }
.why-card h3 { font-size: 1.125rem; font-weight: 700; color: var(--bone-100); }
.why-card p { margin-top: 0.5rem; font-size: 0.875rem; line-height: 1.7; color: var(--bone-400); }

/* ============== Home: reviews carousel ============== */
.reviews-controls { display: flex; gap: 0.5rem; }
.reviews-controls button {
  display: grid; place-items: center;
  width: 2.5rem; height: 2.5rem;
  border: 1px solid var(--ink-600);
  background: rgba(22, 24, 29, 0.7);
  border-radius: 0.375rem;
  color: var(--bone-300);
  transition: all 0.2s;
}
.reviews-controls button:hover { border-color: var(--blood-600); color: #fff; }
.reviews-track { display: flex; gap: 1.25rem; overflow-x: auto; padding-bottom: 1rem; scroll-snap-type: x mandatory; scrollbar-width: none; }
.reviews-track::-webkit-scrollbar { display: none; }
.review-card { width: 340px; flex-shrink: 0; scroll-snap-align: start; padding: 1.75rem; }
.review-card .quote { width: 1.75rem; height: 1.75rem; color: rgba(185, 28, 28, 0.6); }
.review-card .review-text { margin-top: 1rem; font-size: 0.875rem; line-height: 1.7; color: var(--bone-200); }
.review-meta { margin-top: 1.5rem; display: flex; align-items: center; justify-content: space-between; }
.review-user { display: flex; align-items: center; gap: 0.75rem; }
.review-avatar { display: grid; place-items: center; width: 2.5rem; height: 2.5rem; border-radius: 9999px; background: linear-gradient(135deg, var(--blood-600), var(--ember-500)); font-family: var(--font-display); font-size: 0.875rem; font-weight: 700; color: #fff; }
.review-name { font-size: 0.875rem; font-weight: 600; color: var(--bone-100); }
.review-service { font-size: 0.75rem; color: var(--bone-500); }
.review-stars { display: flex; gap: 2px; }
.star { width: 14px; height: 14px; color: var(--ink-600); }
.star.on { fill: var(--ember-500); color: var(--ember-500); }

/* ============== Home: CTA band ============== */
.cta-band { position: relative; overflow: hidden; border-radius: 1rem; border: 1px solid rgba(185, 28, 28, 0.4); }
.cta-band img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0.3; }
.cta-band .cta-overlay { position: absolute; inset: 0; background: linear-gradient(90deg, var(--ink-950), rgba(7,7,8,0.85) 60%, rgba(7,7,8,0.4)); }
.cta-band .cta-content { position: relative; padding: 3.5rem 2rem; }
@media (min-width: 640px) { .cta-band .cta-content { padding: 4rem 3.5rem; } }
.cta-band h2 { max-width: 42rem; font-size: 1.875rem; font-weight: 700; line-height: 1.2; color: var(--bone-100); }
@media (min-width: 640px) { .cta-band h2 { font-size: 2.25rem; } }
.cta-band p { margin-top: 1rem; max-width: 36rem; font-size: 1rem; line-height: 1.7; color: var(--bone-300); }
.cta-band .btn { margin-top: 2rem; }

/* ============== Services page ============== */
.service-section { overflow: hidden; }
.service-section .ss-grid { display: grid; gap: 0; grid-template-columns: 1fr; }
@media (min-width: 1024px) { .service-section .ss-grid { grid-template-columns: 1fr 1.4fr; } }
.ss-icon-panel { position: relative; display: flex; flex-direction: column; justify-content: center; padding: 2rem; }
@media (min-width: 640px) { .ss-icon-panel { padding: 2.5rem; } }
.ss-icon-bg { position: absolute; inset: 0; opacity: 0.07; }
.ss-icon-wrap { position: relative; }
.ss-icon-box { display: grid; place-items: center; width: 4rem; height: 4rem; border-radius: 0.75rem; margin-bottom: 1.5rem; color: #fff; box-shadow: var(--shadow-glow); }
.ss-icon-panel h2 { font-size: 1.5rem; font-weight: 700; color: var(--bone-100); }
@media (min-width: 640px) { .ss-icon-panel h2 { font-size: 1.875rem; } }
.ss-tagline { margin-top: 0.5rem; font-size: 0.875rem; font-weight: 600; color: var(--blood-400); }
.ss-content { padding: 2rem; border-top: 1px solid var(--ink-700); }
@media (min-width: 640px) { .ss-content { padding: 2.5rem; } }
@media (min-width: 1024px) { .ss-content { border-top: 0; border-left: 1px solid var(--ink-700); } }
.ss-content p { font-size: 0.9375rem; line-height: 1.8; color: var(--bone-300); }
.ss-notes-label { margin: 1.75rem 0 0.75rem; font-size: 0.75rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em; color: var(--bone-500); }
.ss-notes li { display: flex; gap: 0.625rem; align-items: flex-start; margin-bottom: 0.625rem; font-size: 0.875rem; line-height: 1.7; color: var(--bone-300); }
.ss-notes li .icon { margin-top: 2px; color: var(--ember-500); width: 16px; height: 16px; }

.flow-step { position: relative; }
.flow-step .card { height: 100%; padding: 1.5rem; }
.flow-step-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 1rem; }
.flow-step-icon { display: grid; place-items: center; width: 2.5rem; height: 2.5rem; border-radius: 0.5rem; border: 1px solid rgba(185,28,28,0.4); background: rgba(185,28,28,0.1); color: var(--blood-400); }
.flow-step-num { font-family: var(--font-display); font-size: 1.875rem; font-weight: 700; color: var(--ink-600); }
.flow-step h3 { font-size: 1rem; font-weight: 700; color: var(--bone-100); }
.flow-step p { margin-top: 0.5rem; font-size: 0.875rem; line-height: 1.7; color: var(--bone-400); }
.flow-arrow { position: absolute; right: -0.75rem; top: 50%; transform: translateY(-50%); width: 20px; height: 20px; color: rgba(185,28,28,0.5); display: none; }
@media (min-width: 1024px) { .flow-arrow { display: block; } }

/* ============== Pricing page ============== */
.price-table { overflow: hidden; }
.price-table-head { display: flex; align-items: center; justify-content: space-between; border-bottom: 1px solid var(--ink-700); background: rgba(22,24,29,0.5); padding: 1.25rem 1.5rem; }
.price-table-head h3 { font-size: 1.125rem; font-weight: 700; color: var(--bone-100); }
.price-row { position: relative; padding: 1rem 1.5rem; transition: background 0.2s; border-bottom: 1px solid var(--ink-800); }
.price-row:last-child { border-bottom: 0; }
.price-row.featured { background: rgba(185,28,28,0.07); }
.price-row.featured::before { content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 2px; background: linear-gradient(var(--blood-500), var(--ember-500)); }
.price-row-grid { display: grid; gap: 0.5rem; }
@media (min-width: 768px) {
  .price-row-grid { grid-template-columns: 1.3fr 1fr 0.9fr 1fr auto; align-items: center; gap: 0.75rem; }
}
.price-tier { font-weight: 600; color: var(--bone-100); display: flex; align-items: center; gap: 0.5rem; }
.price-amount { font-size: 0.875rem; color: var(--bone-400); }
.price-val { font-family: var(--font-display); font-size: 1.25rem; font-weight: 700; color: var(--blood-400); }
.price-time { font-size: 0.875rem; color: var(--bone-400); }
.price-badge { display: inline-flex; align-items: center; gap: 0.25rem; border-radius: 9999px; background: rgba(234,88,12,0.2); padding: 2px 8px; font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; color: var(--ember-400); }
.price-headers { display: none; grid-template-columns: 1.3fr 1fr 0.9fr 1fr auto; gap: 0.75rem; border-bottom: 1px solid var(--ink-700); padding: 0.75rem 1.5rem; font-size: 0.75rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em; color: var(--bone-500); }
@media (min-width: 768px) { .price-headers { display: grid; } }
.price-headers .last { text-align: right; }

.pkg-card { position: relative; overflow: hidden; padding: 1.5rem; transition: all 0.3s; }
.pkg-card:hover { transform: translateY(-4px); border-color: rgba(234,88,12,0.6); }
.pkg-card h3 { margin-top: 1rem; font-size: 1.125rem; font-weight: 700; color: var(--bone-100); }
.pkg-card p { margin-top: 0.5rem; font-size: 0.875rem; line-height: 1.7; color: var(--bone-400); }
.pkg-off { margin-top: 1.25rem; display: inline-flex; align-items: center; gap: 0.375rem; border-radius: 0.375rem; background: rgba(234,88,12,0.15); padding: 0.375rem 0.75rem; font-size: 0.875rem; font-weight: 700; color: var(--ember-400); }

.notes-card { padding: 1.75rem 2rem; }
.notes-card h3 { font-size: 1.125rem; font-weight: 700; color: var(--bone-100); display: flex; align-items: center; gap: 0.625rem; }
.notes-card ul { margin-top: 1.25rem; }
.notes-card li { display: flex; gap: 0.625rem; align-items: flex-start; margin-bottom: 0.75rem; font-size: 0.875rem; line-height: 1.7; color: var(--bone-300); }
.notes-card li .icon { margin-top: 2px; color: var(--ember-500); width: 16px; height: 16px; }

/* ============== News page ============== */
.news-filters { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-bottom: 2.5rem; }
.filter-btn { border-radius: 9999px; border: 1px solid var(--ink-600); background: rgba(22,24,29,0.7); padding: 0.5rem 1rem; font-size: 0.875rem; font-weight: 500; color: var(--bone-300); transition: all 0.2s; }
.filter-btn:hover { border-color: rgba(185,28,28,0.6); color: #fff; }
.filter-btn.active { border-color: var(--blood-600); background: var(--blood-600); color: #fff; }

.news-card { display: flex; flex-direction: column; overflow: hidden; transition: all 0.3s; }
.news-card:hover { transform: translateY(-4px); border-color: rgba(185,28,28,0.6); box-shadow: var(--shadow-glow); }
.news-cover { position: relative; aspect-ratio: 4/3; overflow: hidden; }
.news-cover img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.news-card:hover .news-cover img { transform: scale(1.05); }
.news-cover .cover-overlay { position: absolute; inset: 0; background: linear-gradient(to top, var(--ink-950), rgba(7,7,8,0.2) 40%, transparent); }
.news-cover .cover-tag { position: absolute; left: 0.75rem; top: 0.75rem; }
.news-body { display: flex; flex: 1; flex-direction: column; padding: 1.25rem; }
.news-meta { display: flex; align-items: center; gap: 1rem; margin-bottom: 0.75rem; font-size: 0.75rem; color: var(--bone-500); }
.news-meta span { display: inline-flex; align-items: center; gap: 0.25rem; }
.news-body h3 { font-size: 1.125rem; font-weight: 700; line-height: 1.35; color: var(--bone-100); transition: color 0.2s; }
.news-card:hover .news-body h3 { color: var(--blood-400); }
.news-summary { margin-top: 0.5rem; flex: 1; font-size: 0.875rem; line-height: 1.7; color: var(--bone-400); display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
.news-readmore { margin-top: 1rem; display: inline-flex; align-items: center; gap: 0.25rem; font-size: 0.75rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em; color: var(--blood-400); }

/* article detail */
.article-hero { position: relative; overflow: hidden; border-bottom: 1px solid var(--ink-700); }
.article-hero img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0.3; }
.article-hero .ah-overlay { position: absolute; inset: 0; background: linear-gradient(to top, var(--ink-950), rgba(7,7,8,0.8) 60%, rgba(7,7,8,0.4)); }
.article-hero .container-page { position: relative; padding-block: 7rem; }
.article-hero .back-link { display: inline-flex; align-items: center; gap: 0.375rem; font-size: 0.875rem; font-weight: 500; color: var(--bone-400); transition: color 0.2s; }
.article-hero .back-link:hover { color: var(--blood-400); }
.article-hero h1 { margin-top: 1.5rem; max-width: 48rem; font-size: 1.875rem; font-weight: 700; line-height: 1.2; color: var(--bone-100); }
@media (min-width: 640px) { .article-hero h1 { font-size: 2.25rem; } }
@media (min-width: 1024px) { .article-hero h1 { font-size: 3rem; } }
.article-meta { margin-top: 1.25rem; display: flex; align-items: center; gap: 1.25rem; font-size: 0.875rem; color: var(--bone-400); }
.article-meta span { display: inline-flex; align-items: center; gap: 0.375rem; }
.article-body { padding-block: 3.5rem; }
.article-body .inner { max-width: 48rem; margin-inline: auto; }
.article-summary { border-left: 2px solid var(--blood-600); padding-left: 1.25rem; font-size: 1.125rem; font-weight: 500; font-style: italic; line-height: 1.7; color: var(--bone-200); }
.article-body .blocks { margin-top: 2.5rem; display: flex; flex-direction: column; gap: 1.5rem; }
.article-body h2 { font-size: 1.5rem; font-weight: 700; color: var(--bone-100); }
.article-body p { font-size: 0.9375rem; line-height: 1.85; color: var(--bone-300); }
.article-body ul.blocks-list { display: flex; flex-direction: column; gap: 0.625rem; }
.article-body ul.blocks-list li { display: flex; gap: 0.75rem; align-items: flex-start; font-size: 0.9375rem; line-height: 1.7; color: var(--bone-300); }
.article-body ul.blocks-list li::before { content: ""; margin-top: 0.5rem; width: 6px; height: 6px; border-radius: 9999px; background: var(--blood-500); flex-shrink: 0; }

/* ============== FAQ ============== */
.faq-item { overflow: hidden; transition: border-color 0.2s; }
.faq-item.open { border-color: rgba(185,28,28,0.6); }
.faq-q { display: flex; width: 100%; align-items: center; gap: 1rem; padding: 1.25rem 1.5rem; text-align: left; }
.faq-q-icon { display: grid; place-items: center; width: 2.25rem; height: 2.25rem; flex-shrink: 0; border-radius: 0.5rem; border: 1px solid var(--ink-600); background: var(--ink-800); color: var(--bone-400); transition: all 0.2s; }
.faq-item.open .faq-q-icon { border-color: var(--blood-600); background: rgba(220,38,38,0.15); color: var(--blood-400); }
.faq-q-text { flex: 1; font-family: var(--font-display); font-size: 1rem; font-weight: 600; color: var(--bone-100); }
@media (min-width: 640px) { .faq-q-text { font-size: 1.125rem; } }
.faq-chevron { width: 20px; height: 20px; flex-shrink: 0; color: var(--bone-400); transition: transform 0.3s; }
.faq-item.open .faq-chevron { transform: rotate(180deg); color: var(--blood-400); }
.faq-a { display: grid; grid-template-rows: 0fr; opacity: 0; transition: all 0.3s; }
.faq-item.open .faq-a { grid-template-rows: 1fr; opacity: 1; }
.faq-a-inner { overflow: hidden; }
.faq-a p { padding: 0 1.5rem 1.25rem 4.5rem; font-size: 0.875rem; line-height: 1.7; color: var(--bone-300); }
@media (min-width: 640px) { .faq-a p { padding-left: 5rem; font-size: 0.9375rem; } }

/* ============== Contact ============== */
.contact-card { position: relative; overflow: hidden; padding: 1.75rem 2rem; }
.contact-card .cc-glow { position: absolute; top: -2.5rem; right: -2.5rem; width: 10rem; height: 10rem; border-radius: 9999px; filter: blur(40px); opacity: 0.1; }
.contact-inner { position: relative; display: flex; flex-direction: column; gap: 1.5rem; align-items: flex-start; }
@media (min-width: 640px) { .contact-inner { flex-direction: row; align-items: center; } }
.qr-box { position: relative; flex-shrink: 0; border-radius: 0.75rem; border: 1px solid var(--ink-600); background: var(--ink-900); padding: 0.75rem; }
.qr-box img { width: 10rem; height: 10rem; border-radius: 0.375rem; }
.qr-badge { position: absolute; right: -8px; top: -8px; display: grid; place-items: center; width: 1.75rem; height: 1.75rem; border-radius: 9999px; background: var(--blood-600); color: #fff; box-shadow: var(--shadow-glow); }
.contact-info { flex: 1; }
.contact-icon { display: grid; place-items: center; width: 2.75rem; height: 2.75rem; border-radius: 0.5rem; margin-bottom: 1rem; color: #fff; }
.contact-info h3 { font-size: 1.25rem; font-weight: 700; color: var(--bone-100); }
.contact-id { margin-top: 0.5rem; font-family: monospace; font-size: 1.125rem; font-weight: 600; color: var(--blood-400); }
.contact-hours { margin-top: 0.5rem; display: inline-flex; align-items: center; gap: 0.375rem; font-size: 0.75rem; color: var(--bone-400); }
.contact-tip { margin-top: 0.25rem; font-size: 0.75rem; color: var(--bone-500); }

.guide-list { margin-top: 1.25rem; display: flex; flex-direction: column; gap: 1rem; }
.guide-list li { display: flex; gap: 0.875rem; align-items: flex-start; }
.guide-num { display: grid; place-items: center; width: 1.75rem; height: 1.75rem; flex-shrink: 0; border-radius: 9999px; border: 1px solid rgba(185,28,28,0.5); background: rgba(185,28,28,0.1); font-family: var(--font-display); font-size: 0.875rem; font-weight: 700; color: var(--blood-400); }
.guide-list li span { font-size: 0.875rem; line-height: 1.7; color: var(--bone-300); }

.promise-card { position: relative; overflow: hidden; padding: 1.75rem 2rem; }
.promise-card .pc-bg { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(185,28,28,0.06), transparent); }
.promise-card .pc-content { position: relative; }
.promise-card h3 { font-size: 1.125rem; font-weight: 700; color: var(--bone-100); }
.promise-card ul { margin-top: 1.25rem; display: flex; flex-direction: column; gap: 0.875rem; }
.promise-card li { display: flex; gap: 0.75rem; align-items: flex-start; font-size: 0.875rem; line-height: 1.7; color: var(--bone-300); }
.promise-card li .icon { margin-top: 2px; color: var(--ember-500); width: 16px; height: 16px; }

/* ============== Misc ============== */
.text-center { text-align: center; }
.mx-auto { margin-inline: auto; }
.mt-8 { margin-top: 2rem; }
.mt-12 { margin-top: 3rem; }
.mb-10 { margin-bottom: 2.5rem; }
.mb-12 { margin-bottom: 3rem; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.min-h-screen-70 { min-height: 70vh; }
.flex-col { display: flex; flex-direction: column; }
.gap-2 { gap: 0.5rem; }
.hidden-sm { display: none; }
@media (min-width: 640px) { .hidden-sm { display: inline; } }

.icon-row { display: flex; align-items: center; gap: 0.625rem; }
.muted { color: var(--bone-400); }
