/* ==========================================================================
   Haozhen — style.css
   DARK theme · WINE accent #9F1239 · body #0E0F14 · text #ECE8EA
   ========================================================================== */

:root {
  --bg: #0E0F14;
  --bg-2: #14151C;
  --bg-3: #1A1C25;
  --surface: #181A22;
  --border: #262833;
  --border-soft: #20222B;
  --text: #ECE8EA;
  --text-soft: #C7C2CB;
  --muted: #9A95A1;
  --accent: #9F1239;
  --accent-2: #BE123C;
  --accent-soft: #F9A8D4;
  --accent-dark: #2A0A15;
  --wine-deep: #3A0D1F;
  --gold: #E8B04B;
  --gold-soft: #F0C87E;
  --white: #FFFFFF;
  --radius: 12px;
  --radius-sm: 8px;
  --maxw: 1200px;
  --shadow: 0 18px 50px -20px #000000;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-size: 16px;
  font-family: "Segoe UI", "Helvetica Neue", Arial, "PingFang SC", "Microsoft YaHei", sans-serif;
  line-height: 1.65;
  background-color: #0E0F14;
  color: #ECE8EA;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
}

.container {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px;
}

.section-label {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent-soft);
  margin-bottom: 14px;
}

.section-title {
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.15;
  font-weight: 700;
  letter-spacing: -0.5px;
  color: var(--text);
  margin-bottom: 16px;
}

.section-sub {
  font-size: 17px;
  color: var(--text-soft);
  max-width: 640px;
}

/* ==========================================================================
   COIN NAVIGATION
   ========================================================================== */

.coin-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background-color: #0E0F14;
  border-bottom: 1px solid var(--border-soft);
  transition: background-color 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.coin-nav.scrolled {
  background-color: #0B0C10;
  border-bottom-color: #2C0E1B;
  box-shadow: 0 12px 30px -22px #000000;
}

.nav-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px;
  height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.coin-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  flex: none;
}

.coin-mark {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: radial-gradient(circle at 50% 30%, #BE123C 0%, #9F1239 70%, #7A0D2B 100%);
  border: 1px solid var(--gold);
  position: relative;
  flex: none;
  box-shadow: 0 0 14px #9F1239;
}

.coin-mark::before {
  content: "";
  position: absolute;
  inset: 5px;
  border-radius: 50%;
  border: 1px solid var(--gold);
}

.coin-mark::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 11px;
  height: 11px;
  background-color: #0E0F14;
  border-radius: 2px;
}

.wordmark {
  font-size: 21px;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: var(--text);
}

.wordmark span {
  color: var(--accent-soft);
}

.coin-links {
  display: flex;
  align-items: center;
  gap: 30px;
}

.coin-links a {
  position: relative;
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  color: #B4AEB8;
  padding: 6px 0;
  transition: color 0.2s ease;
}

.coin-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background-color: var(--accent-2);
  transition: width 0.25s ease;
}

.coin-links a:hover {
  color: var(--text);
}

.coin-links a:hover::after {
  width: 100%;
}

.coin-cta {
  flex: none;
  display: inline-block;
  background-color: var(--accent);
  color: var(--white);
  text-decoration: none;
  font-size: 15px;
  font-weight: 600;
  padding: 11px 22px;
  border-radius: 6px;
  letter-spacing: 0.3px;
  transition: background-color 0.2s ease, transform 0.2s ease;
}

.coin-cta:hover {
  background-color: var(--accent-2);
  transform: translateY(-1px);
}

.nav-toggle {
  display: none;
  flex: none;
  width: 44px;
  height: 44px;
  background: transparent;
  border: 1px solid var(--border);
  border-radius: 8px;
  cursor: pointer;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

.nav-toggle .bar {
  display: block;
  width: 20px;
  height: 2px;
  background-color: var(--text);
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.2s ease;
}

.nav-toggle.open .bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle.open .bar:nth-child(2) {
  opacity: 0;
}

.nav-toggle.open .bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ==========================================================================
   PAGODA HERO
   ========================================================================== */

.pagoda-hero {
  position: relative;
  padding: 160px 0 90px;
  background:
    radial-gradient(900px 480px at 82% 18%, #2A0A15 0%, #0E0F14 62%),
    radial-gradient(700px 420px at 8% 85%, #16070D 0%, #0E0F14 70%),
    #0E0F14;
  overflow: hidden;
}

.hero-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 48px;
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold-soft);
  margin-bottom: 22px;
}

.hero-kicker::before {
  content: "";
  width: 34px;
  height: 2px;
  background-color: var(--accent-2);
}

.hero-copy h1 {
  font-size: clamp(34px, 5.4vw, 58px);
  line-height: 1.08;
  font-weight: 800;
  letter-spacing: -1px;
  color: var(--text);
  margin-bottom: 24px;
}

.hero-copy h1 em {
  font-style: normal;
  color: var(--accent-soft);
}

.hero-sub {
  font-size: 18px;
  line-height: 1.7;
  color: var(--text-soft);
  max-width: 560px;
  margin-bottom: 32px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  letter-spacing: 0.2px;
  transition: transform 0.2s ease, background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.btn-accent {
  background-color: var(--accent);
  color: var(--white);
}

.btn-accent:hover {
  background-color: var(--accent-2);
  transform: translateY(-2px);
}

.btn-ghost {
  background-color: transparent;
  color: var(--text);
  border: 1px solid var(--border);
}

.btn-ghost:hover {
  border-color: var(--accent-2);
  color: var(--accent-soft);
  transform: translateY(-2px);
}

/* --- Pagoda illustration --- */

.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 380px;
}

.hero-visual::before {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, #2A0A15 0%, #0E0F14 70%);
  z-index: 0;
}

.pagoda {
  position: relative;
  z-index: 1;
  width: 300px;
  filter: drop-shadow(0 0 30px #6E0E2A);
}

.pagoda-finial {
  width: 4px;
  height: 22px;
  margin: 0 auto 2px;
  background-color: var(--gold);
  position: relative;
}

.pagoda-finial::before {
  content: "";
  position: absolute;
  top: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background-color: var(--gold);
}

.pagoda-finial::after {
  content: "";
  position: absolute;
  bottom: -3px;
  left: 50%;
  transform: translateX(-50%);
  width: 16px;
  height: 5px;
  background-color: var(--gold);
  border-radius: 3px;
}

.pagoda-tier {
  margin-top: -4px;
}

.tier-top {
  width: 46%;
  margin-left: auto;
  margin-right: auto;
}

.tier-mid {
  width: 66%;
  margin-left: auto;
  margin-right: auto;
}

.tier-bot {
  width: 86%;
  margin-left: auto;
  margin-right: auto;
}

.pagoda-roof {
  height: 25px;
  background: linear-gradient(180deg, #BE123C 0%, #9F1239 82%);
  clip-path: polygon(34% 0%, 66% 0%, 100% 100%, 0% 100%);
}

.pagoda-eave {
  position: relative;
  height: 5px;
  background-color: var(--gold);
  margin: 0 -7%;
  border-radius: 0 0 4px 4px;
}

.pagoda-eave::before,
.pagoda-eave::after {
  content: "";
  position: absolute;
  top: -3px;
  width: 13px;
  height: 6px;
  background-color: var(--gold);
}

.pagoda-eave::before {
  left: -9px;
  border-radius: 10px 0 0 0;
}

.pagoda-eave::after {
  right: -9px;
  border-radius: 0 10px 0 0;
}

.pagoda-wall {
  position: relative;
  width: 60%;
  margin: 0 auto;
  height: 27px;
  background: linear-gradient(180deg, #2A0A15 0%, #3A0D1F 100%);
  border-left: 1px solid #BE123C;
  border-right: 1px solid #BE123C;
}

.pagoda-wall::before {
  content: "";
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 9px;
  height: 13px;
  background-color: var(--gold);
  border-radius: 4px 4px 0 0;
}

.pagoda-base {
  margin-top: -2px;
  width: 96%;
  margin-left: auto;
  margin-right: auto;
}

.pagoda-step {
  height: 8px;
  background-color: var(--wine-deep);
  border: 1px solid #5A1028;
  border-bottom: none;
}

.step-1 {
  width: 100%;
}

.step-2 {
  width: 76%;
  margin: 0 auto;
}

.pagoda-plinth {
  width: 56%;
  margin: 0 auto;
  height: 12px;
  background: linear-gradient(180deg, #BE123C 0%, #9F1239 100%);
  border-radius: 0 0 4px 4px;
}

/* ==========================================================================
   STATEMENT ROW (full-width)
   ========================================================================== */

.statement-row {
  position: relative;
  padding: 110px 0;
  background-color: #0B0C10;
  border-top: 1px solid var(--border-soft);
  border-bottom: 1px solid var(--border-soft);
  text-align: center;
}

.statement-row .statement-mark {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: var(--accent-dark);
  border: 1px solid var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 26px;
  color: var(--gold-soft);
  font-size: 18px;
  font-weight: 700;
}

.statement-row blockquote {
  font-size: clamp(24px, 3.6vw, 38px);
  line-height: 1.35;
  font-weight: 600;
  color: var(--text);
  max-width: 920px;
  margin: 0 auto;
  letter-spacing: -0.3px;
}

.statement-row blockquote strong {
  color: var(--accent-soft);
  font-weight: 700;
}

.statement-row .statement-byline {
  margin-top: 28px;
  font-size: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--muted);
}

/* ==========================================================================
   STATS (big numerals)
   ========================================================================== */

.stats-section {
  padding: 90px 0;
  background-color: #0E0F14;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.stat-card {
  text-align: center;
  padding: 38px 20px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background-color: var(--bg-2);
  transition: border-color 0.25s ease, transform 0.25s ease;
}

.stat-card:hover {
  border-color: var(--accent);
  transform: translateY(-4px);
}

.stat-number {
  font-size: clamp(38px, 5vw, 54px);
  font-weight: 800;
  line-height: 1;
  color: var(--accent-soft);
  margin-bottom: 12px;
  letter-spacing: -1px;
}

.stat-label {
  font-size: 15px;
  font-weight: 500;
  color: var(--text-soft);
}

/* ==========================================================================
   ABOUT SECTION
   ========================================================================== */

.about-section {
  padding: 100px 0;
  background-color: var(--bg-2);
  border-top: 1px solid var(--border-soft);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}

.about-copy p {
  font-size: 17px;
  color: var(--text-soft);
  margin-bottom: 18px;
}

.about-copy p strong {
  color: var(--text);
}

.about-facts {
  list-style: none;
  margin-top: 26px;
}

.about-facts li {
  display: flex;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid var(--border-soft);
  font-size: 15px;
  color: var(--text-soft);
}

.about-facts li:last-child {
  border-bottom: none;
}

.about-facts .fact-key {
  flex: none;
  width: 170px;
  font-weight: 600;
  color: var(--accent-soft);
}

.about-panel {
  background-color: #101118;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 30px;
}

.about-panel h3 {
  font-size: 20px;
  color: var(--text);
  margin-bottom: 8px;
}

.about-panel p {
  font-size: 15px;
  color: var(--muted);
  margin-bottom: 22px;
}

.panel-list {
  list-style: none;
}

.panel-list li {
  position: relative;
  padding: 11px 0 11px 26px;
  font-size: 15px;
  color: var(--text-soft);
  border-bottom: 1px solid var(--border-soft);
}

.panel-list li:last-child {
  border-bottom: none;
}

.panel-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 19px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--accent);
}

/* ==========================================================================
   SERVICES (tabbed panels)
   ========================================================================== */

.services-section {
  padding: 100px 0;
  background-color: #0E0F14;
}

.services-head {
  max-width: 640px;
  margin-bottom: 44px;
}

.tab-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 34px;
  border-bottom: 1px solid var(--border);
  padding-bottom: 16px;
}

.tab-btn {
  background-color: transparent;
  border: 1px solid var(--border);
  color: var(--text-soft);
  font-size: 15px;
  font-weight: 500;
  padding: 10px 20px;
  border-radius: 999px;
  cursor: pointer;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.tab-btn:hover {
  border-color: var(--accent);
  color: var(--text);
}

.tab-btn.active {
  background-color: var(--accent);
  border-color: var(--accent);
  color: var(--white);
}

.tab-panel {
  display: none;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background-color: var(--bg-2);
  padding: 34px;
}

.tab-panel.active {
  display: grid;
}

.tab-panel h3 {
  font-size: 24px;
  color: var(--text);
  margin-bottom: 14px;
}

.tab-panel p {
  font-size: 16px;
  color: var(--text-soft);
  margin-bottom: 16px;
}

.tab-panel ul {
  list-style: none;
}

.tab-panel ul li {
  position: relative;
  padding: 9px 0 9px 26px;
  font-size: 15px;
  color: var(--text-soft);
}

.tab-panel ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 17px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background-color: var(--accent-2);
}

.tab-side {
  background-color: #101118;
  border-left: 3px solid var(--accent);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 22px;
}

.tab-side h4 {
  font-size: 15px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--accent-soft);
  margin-bottom: 12px;
}

.tab-side p {
  font-size: 15px;
  margin-bottom: 0;
}

/* ==========================================================================
   PROCESS (numbered 01–05)
   ========================================================================== */

.process-section {
  padding: 100px 0;
  background-color: var(--bg-2);
  border-top: 1px solid var(--border-soft);
}

.process-head {
  text-align: center;
  margin-bottom: 60px;
}

.process-head .section-sub {
  margin: 0 auto;
}

.process-list {
  list-style: none;
  max-width: 760px;
  margin: 0 auto;
}

.process-item {
  position: relative;
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 26px;
  padding-bottom: 48px;
}

.process-item::after {
  content: "";
  position: absolute;
  left: 35px;
  top: 72px;
  bottom: 6px;
  width: 2px;
  background-color: var(--border);
}

.process-item:last-child::after {
  display: none;
}

.process-num {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background-color: var(--accent-dark);
  border: 1px solid var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  font-weight: 700;
  color: var(--accent-soft);
  z-index: 1;
}

.process-body {
  padding-top: 8px;
}

.process-body h3 {
  font-size: 21px;
  color: var(--text);
  margin-bottom: 8px;
}

.process-body p {
  font-size: 16px;
  color: var(--text-soft);
}

/* ==========================================================================
   COMPARISON TABLE
   ========================================================================== */

.compare-section {
  padding: 100px 0;
  background-color: #0E0F14;
}

.compare-head {
  text-align: center;
  margin-bottom: 54px;
}

.compare-head .section-sub {
  margin: 0 auto;
}

.compare-table {
  width: 100%;
  border-collapse: collapse;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  background-color: var(--bg-2);
}

.compare-table th,
.compare-table td {
  padding: 20px 22px;
  text-align: center;
  font-size: 15px;
  color: var(--text-soft);
  border-bottom: 1px solid var(--border-soft);
}

.compare-table thead th {
  background-color: #101118;
  color: var(--text);
  font-size: 17px;
  font-weight: 700;
}

.compare-table thead th.col-accent {
  background-color: var(--accent);
  color: var(--white);
}

.compare-table tbody th {
  text-align: left;
  font-weight: 600;
  color: var(--text);
  width: 40%;
}

.compare-table tbody tr:last-child td,
.compare-table tbody tr:last-child th {
  border-bottom: none;
}

.compare-table td.yes {
  color: var(--gold-soft);
  font-weight: 700;
}

.compare-table td.no {
  color: var(--muted);
}

.compare-note {
  margin-top: 22px;
  text-align: center;
  font-size: 14px;
  color: var(--muted);
}

/* ==========================================================================
   CATALOG (horizontal scroll)
   ========================================================================== */

.catalog-section {
  padding: 100px 0;
  background-color: var(--bg-2);
  border-top: 1px solid var(--border-soft);
}

.catalog-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 44px;
}

.catalog-head .section-sub {
  max-width: 480px;
}

.catalog-scroll-hint {
  font-size: 13px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--muted);
  flex: none;
  padding-bottom: 6px;
}

.catalog-track {
  display: flex;
  gap: 22px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 6px 4px 26px;
  -webkit-overflow-scrolling: touch;
}

.catalog-track::-webkit-scrollbar {
  height: 8px;
}

.catalog-track::-webkit-scrollbar-track {
  background: var(--bg-3);
  border-radius: 4px;
}

.catalog-track::-webkit-scrollbar-thumb {
  background: var(--accent);
  border-radius: 4px;
}

.catalog-card {
  flex: 0 0 300px;
  scroll-snap-align: start;
  background-color: #101118;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  transition: border-color 0.25s ease, transform 0.25s ease;
}

.catalog-card:hover {
  border-color: var(--accent);
  transform: translateY(-4px);
}

.catalog-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background-color: var(--accent-dark);
  border: 1px solid var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.catalog-icon span {
  font-size: 24px;
  color: var(--gold-soft);
}

.catalog-card h3 {
  font-size: 19px;
  color: var(--text);
  margin-bottom: 10px;
}

.catalog-card p {
  font-size: 15px;
  color: var(--text-soft);
  margin-bottom: 16px;
}

.catalog-card .catalog-tag {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--accent-soft);
}

/* ==========================================================================
   SPLIT CTA + CONTACT
   ========================================================================== */

.cta-section {
  padding: 100px 0;
  background-color: #0E0F14;
}

.cta-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.cta-copy h2 {
  font-size: clamp(28px, 4vw, 40px);
  line-height: 1.15;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 18px;
  letter-spacing: -0.5px;
}

.cta-copy p {
  font-size: 17px;
  color: var(--text-soft);
  margin-bottom: 28px;
  max-width: 480px;
}

.cta-contacts {
  list-style: none;
}

.cta-contacts li {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 0;
  font-size: 16px;
  color: var(--text);
  border-bottom: 1px solid var(--border-soft);
}

.cta-contacts li:last-child {
  border-bottom: none;
}

.cta-contacts .cta-ico {
  flex: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: var(--accent-dark);
  border: 1px solid var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-soft);
  font-size: 16px;
  font-weight: 700;
}

.cta-contacts a {
  color: var(--accent-soft);
  text-decoration: none;
}

.cta-contacts a:hover {
  text-decoration: underline;
}

.contact-form {
  background-color: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 34px;
}

.contact-form h3 {
  font-size: 21px;
  color: var(--text);
  margin-bottom: 6px;
}

.contact-form .form-note {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 22px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  margin-bottom: 18px;
}

.form-group label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-soft);
  margin-bottom: 8px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  background-color: #0E0F14;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--text);
  font-size: 16px;
  font-family: inherit;
  padding: 13px 14px;
  transition: border-color 0.2s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent);
}

.form-group textarea {
  resize: vertical;
  min-height: 130px;
}

.form-submit {
  background-color: var(--accent);
  color: var(--white);
  border: none;
  border-radius: var(--radius-sm);
  font-size: 16px;
  font-weight: 600;
  padding: 14px 30px;
  cursor: pointer;
  letter-spacing: 0.3px;
  transition: background-color 0.2s ease, transform 0.2s ease;
}

.form-submit:hover {
  background-color: var(--accent-2);
  transform: translateY(-1px);
}

.form-success {
  display: none;
  margin-top: 18px;
  padding: 14px 18px;
  border-radius: var(--radius-sm);
  background-color: #122A1A;
  border: 1px solid #1F6B38;
  color: #86E0A6;
  font-size: 15px;
}

.form-success.show {
  display: block;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */

.site-footer {
  background-color: #0B0C10;
  border-top: 3px solid var(--accent);
  padding: 64px 0 36px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 40px;
  margin-bottom: 44px;
}

.footer-brand .coin-brand {
  margin-bottom: 16px;
}

.footer-brand p {
  font-size: 15px;
  color: var(--muted);
  max-width: 300px;
}

.footer-col h4 {
  font-size: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent-soft);
  margin-bottom: 18px;
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 12px;
}

.footer-col ul li a {
  font-size: 15px;
  color: var(--text-soft);
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-col ul li a:hover {
  color: var(--accent-soft);
}

.footer-col p {
  font-size: 15px;
  color: var(--text-soft);
  margin-bottom: 8px;
  line-height: 1.6;
}

.footer-col a {
  color: var(--accent-soft);
  text-decoration: none;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  padding-top: 26px;
  border-top: 1px solid var(--border-soft);
  font-size: 14px;
  color: var(--muted);
}

.footer-legal {
  display: flex;
  gap: 20px;
}

.footer-legal a {
  color: var(--text-soft);
  text-decoration: none;
}

.footer-legal a:hover {
  color: var(--accent-soft);
}

/* ==========================================================================
   SCROLL REVEAL
   ========================================================================== */

.fade-up {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */

@media (max-width: 1024px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .hero-visual {
    min-height: 320px;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-grid,
  .cta-split {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 860px) {
  .nav-toggle {
    display: flex;
  }

  .coin-links {
    position: absolute;
    top: 74px;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background-color: #0B0C10;
    border-bottom: 1px solid var(--border);
    padding: 10px 24px 18px;
    display: none;
  }

  .coin-links.open {
    display: flex;
  }

  .coin-links a {
    padding: 14px 4px;
    border-bottom: 1px solid var(--border-soft);
  }

  .coin-links a:last-child {
    border-bottom: none;
  }

  .coin-cta {
    display: none;
  }

  .tab-panel,
  .tab-panel.active {
    grid-template-columns: 1fr;
  }

  .compare-table {
    font-size: 14px;
  }

  .compare-table th,
  .compare-table td {
    padding: 14px 12px;
  }
}

@media (max-width: 560px) {
  .pagoda-hero {
    padding: 130px 0 70px;
  }

  .stats-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .process-item {
    grid-template-columns: 56px 1fr;
    gap: 18px;
  }

  .process-num {
    width: 56px;
    height: 56px;
    font-size: 18px;
  }

  .process-item::after {
    left: 27px;
    top: 58px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .catalog-head {
    flex-direction: column;
    align-items: flex-start;
  }
}
