:root {
  --bg: #070c11;
  --bg2: #0c1319;
  --panel: rgba(14, 20, 25, 0.86);
  --panel2: #111920;
  --line: rgba(202, 161, 83, 0.32);
  --gold: #d8b46a;
  --gold2: #f2d28a;
  --cream: #f5efe2;
  --muted: #a8a295;
  --text: #f8f2e7;
  --darkText: #1e1a15;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.38);
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scrollbar-width: none;
}

html::-webkit-scrollbar,
body::-webkit-scrollbar {
  width: 0;
  height: 0;
}

body {
  margin: 0;
  color: var(--text);
  background: var(--bg);
  font-family: "Noto Serif SC", "Yu Mincho", "Hiragino Mincho ProN", "Microsoft YaHei", serif;
  line-height: 1.7;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
.mobile-break { display: none; }

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold2));
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 40;
  width: 100%;
  display: grid;
  grid-template-columns: minmax(230px, 1fr) auto auto auto;
  align-items: center;
  gap: 20px;
  height: 86px;
  padding: 0 42px;
  background: rgba(5, 9, 13, 0.72);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
  transition: height .25s ease, background .25s ease;
}

.site-header.is-scrolled {
  height: 72px;
  background: rgba(5, 9, 13, 0.94);
}

.brand { display: grid; gap: 2px; min-width: 0; }
.brand-main { color: var(--cream); font-size: 22px; font-weight: 700; letter-spacing: .04em; }
.brand-sub { color: var(--muted); font-size: 12px; letter-spacing: .08em; }

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 18px;
  color: var(--cream);
  font-size: 13px;
}

.desktop-nav a {
  position: relative;
  padding: 31px 0;
  transition: color .2s ease;
}

.desktop-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  transform: scaleX(0);
  background: var(--gold);
  transition: transform .25s ease;
}

.desktop-nav a:hover,
.desktop-nav .is-current { color: var(--gold2); }
.desktop-nav a:hover::after, .desktop-nav .is-current::after { transform: scaleX(1); }

.header-language {
  display: inline-flex;
  align-items: center;
  overflow: hidden;
  color: #9d9688;
  border: 1px solid rgba(216, 180, 106, .24);
  border-radius: 4px;
  background: rgba(5, 9, 13, .28);
  font-size: 12px;
  line-height: 1;
}

.header-language a {
  min-width: 42px;
  padding: 8px 10px;
  text-align: center;
  transition: color .2s ease, background .2s ease;
}

.header-language a + a { border-left: 1px solid rgba(216, 180, 106, .22); }
.header-language a:hover { color: var(--gold2); }
.header-language .active {
  color: var(--gold2);
  background: rgba(216, 180, 106, .1);
  font-weight: 700;
}

.header-reserve {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 22px;
  color: var(--gold2);
  border: 1px solid var(--gold);
  border-radius: 4px;
  font-size: 14px;
  transition: background .2s ease, color .2s ease, transform .2s ease;
}

.header-reserve:hover,
.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(216, 180, 106, .24);
}

.menu-button, .mobile-nav { display: none; }

.hero-section {
  position: relative;
  min-height: 760px;
  padding-top: 86px;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}

.hero-bg, .hero-bg img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-bg { z-index: 0; transform: scale(1.03); }
.hero-bg img { object-fit: cover; object-position: center; }

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(circle at 72% 52%, rgba(216, 180, 106, .12), transparent 32%),
    linear-gradient(90deg, rgba(5, 8, 11, .98) 0%, rgba(5, 8, 11, .82) 38%, rgba(5, 8, 11, .28) 68%, rgba(5, 8, 11, .1) 100%),
    linear-gradient(180deg, rgba(5, 8, 11, .08), rgba(5, 8, 11, .68));
}

.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: min(820px, 58vw);
  min-height: 674px;
  padding: 74px 0 64px clamp(28px, 5vw, 72px);
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--gold2);
  font-size: 14px;
  letter-spacing: .18em;
}

h1, h2, h3, p { margin-top: 0; }

.hero-content h1 {
  margin-bottom: 20px;
  color: var(--cream);
  font-size: clamp(52px, 5.8vw, 86px);
  line-height: 1.12;
  letter-spacing: .03em;
  text-shadow: 0 2px 24px rgba(0,0,0,.45);
}

.hero-copy {
  max-width: 760px;
  color: #d9d2c2;
  font-size: 20px;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 34px;
  margin: 24px 0 34px;
  color: var(--muted);
}

.hero-badges span {
  position: relative;
  padding-left: 34px;
  font-size: 14px;
}

.hero-badges span::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  width: 18px;
  height: 18px;
  border: 1px solid var(--gold);
  border-radius: 50%;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 220px;
  min-height: 54px;
  padding: 0 28px;
  border-radius: 4px;
  font-weight: 700;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.btn-gold {
  color: #20170b;
  background: linear-gradient(135deg, #f1d58d, #c89b45);
  border: 1px solid var(--gold2);
}

.btn-outline {
  color: var(--gold2);
  border: 1px solid var(--gold);
  background: rgba(5, 8, 11, .26);
}

.section {
  padding: 72px clamp(24px, 5vw, 72px);
}

.page-hero {
  position: relative;
  min-height: 430px;
  padding: 160px clamp(24px, 5vw, 72px) 72px;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(90deg, rgba(5,8,11,.98), rgba(5,8,11,.7) 52%, rgba(5,8,11,.26)),
    url("assets/dark-hero-visa.png") center 46% / cover;
}

.page-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  z-index: 0;
  height: 120px;
  background: linear-gradient(180deg, transparent, #081017);
}

.page-hero-content {
  position: relative;
  z-index: 2;
  max-width: 760px;
}

.page-hero p {
  margin-bottom: 14px;
  color: var(--gold2);
  letter-spacing: .18em;
}

.page-hero h1 {
  margin-bottom: 18px;
  color: var(--cream);
  font-size: clamp(42px, 5.2vw, 72px);
  line-height: 1.12;
}

.page-hero span {
  display: block;
  max-width: 680px;
  color: #d9d2c2;
  font-size: 18px;
}

.dark {
  background:
    radial-gradient(circle at 50% 0%, rgba(216, 180, 106, .08), transparent 30%),
    linear-gradient(180deg, #081017, #05090d);
  border-bottom: 1px solid var(--line);
}

.section-title {
  max-width: 800px;
  margin: 0 auto 42px;
  text-align: center;
}

.section-title p {
  margin-bottom: 8px;
  color: var(--gold2);
  letter-spacing: .18em;
}

.section-title h2 {
  margin-bottom: 10px;
  color: var(--cream);
  font-size: clamp(34px, 3.8vw, 50px);
  letter-spacing: .08em;
}

.section-title h2::after {
  content: "";
  display: block;
  width: 72px;
  height: 2px;
  margin: 18px auto 0;
  background: var(--gold);
}

.section-title span { color: var(--muted); }

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
  max-width: 1180px;
  margin: 0 auto;
}

.immigration-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.service-card {
  min-height: 270px;
  padding: 34px 28px;
  text-align: center;
  background: linear-gradient(180deg, rgba(17, 26, 34, .9), rgba(8, 13, 18, .95));
  border: 1px solid var(--line);
  border-radius: 6px;
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}

.service-card:hover {
  transform: translateY(-8px);
  border-color: rgba(242, 210, 138, .72);
  box-shadow: var(--shadow);
}

.icon-line {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  margin: 0 auto 22px;
  color: var(--gold2);
  border: 1px solid var(--gold);
  border-radius: 50%;
  font-size: 28px;
}

.service-card h3 { color: var(--cream); font-size: 23px; }
.service-card p { color: var(--muted); font-size: 14px; }
.service-card a { color: var(--gold2); font-weight: 700; }

.section-intro {
  max-width: 920px;
  margin: 0 auto 36px;
  color: #d9d2c2;
  text-align: center;
  font-size: 18px;
}

.content-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  max-width: 1180px;
  margin: 0 auto;
}

.content-card {
  min-height: 230px;
  padding: 30px 28px;
  background: linear-gradient(180deg, rgba(17, 26, 34, .92), rgba(8, 13, 18, .96));
  border: 1px solid var(--line);
  border-radius: 6px;
}

.content-card small {
  display: block;
  margin-bottom: 12px;
  color: var(--gold2);
  letter-spacing: .14em;
}

.content-card h3 {
  color: var(--cream);
  font-size: 23px;
}

.content-card p,
.content-card li {
  color: var(--muted);
}

.content-card a {
  display: inline-block;
  margin-top: 10px;
  color: var(--gold2);
  font-weight: 700;
}

.content-card ul {
  display: grid;
  gap: 8px;
  margin: 16px 0 0;
  padding-left: 18px;
}

.fee-table {
  width: min(100%, 1040px);
  margin: 0 auto 28px;
  border-collapse: collapse;
  overflow: hidden;
  color: var(--cream);
  background: rgba(9, 15, 20, .72);
  border: 1px solid var(--line);
  border-radius: 6px;
}

.fee-table th,
.fee-table td {
  padding: 18px 20px;
  border-bottom: 1px solid rgba(216, 180, 106, .18);
  text-align: left;
  vertical-align: top;
}

.fee-table th {
  color: var(--gold2);
  background: rgba(216, 180, 106, .08);
  font-weight: 700;
}

.fee-table tr:last-child td { border-bottom: 0; }
.fee-table td:last-child { color: #d9d2c2; }

.note-panel {
  max-width: 1040px;
  margin: 0 auto;
  padding: 20px 24px;
  color: var(--muted);
  background: rgba(216, 180, 106, .06);
  border: 1px solid rgba(216, 180, 106, .22);
  border-radius: 6px;
}

.contact-section {
  background:
    radial-gradient(circle at 18% 12%, rgba(216,180,106,.08), transparent 34%),
    linear-gradient(180deg, #081017, #05090d);
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(320px, .75fr);
  gap: 28px;
  max-width: 1160px;
  margin: 0 auto;
  align-items: start;
}

.contact-form,
.contact-panel {
  background: linear-gradient(180deg, rgba(17, 26, 34, .94), rgba(8, 13, 18, .98));
  border: 1px solid var(--line);
  border-radius: 6px;
  box-shadow: 0 20px 70px rgba(0,0,0,.24);
}

.contact-form {
  display: grid;
  gap: 20px;
  padding: clamp(24px, 4vw, 42px);
}

.form-row {
  display: grid;
  gap: 9px;
}

.hidden-field {
  display: none;
}

.form-row.two-col {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.form-row label,
.form-check {
  color: var(--cream);
  font-weight: 700;
}

.form-row label span {
  display: inline-block;
  margin-left: 8px;
  padding: 1px 7px;
  color: #21180d;
  background: var(--gold2);
  border-radius: 3px;
  font-size: 12px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  min-height: 52px;
  padding: 13px 15px;
  color: var(--text);
  background: rgba(5, 9, 13, .74);
  border: 1px solid rgba(242, 210, 138, .26);
  border-radius: 4px;
  outline: none;
  transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}

.contact-form textarea {
  resize: vertical;
  line-height: 1.75;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(217, 210, 194, .48);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: rgba(242, 210, 138, .75);
  background: rgba(8, 13, 18, .95);
  box-shadow: 0 0 0 3px rgba(216, 180, 106, .12);
}

.form-check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: #d9d2c2;
  font-size: 14px;
}

.form-check input {
  width: 18px;
  min-height: 18px;
  margin-top: 5px;
  accent-color: var(--gold);
}

.contact-submit {
  width: fit-content;
  min-width: 220px;
  border: 0;
  cursor: pointer;
}

.form-note {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.contact-side {
  display: grid;
  gap: 18px;
}

.contact-panel {
  padding: 28px;
}

.contact-panel small {
  display: block;
  margin-bottom: 10px;
  color: var(--gold2);
  letter-spacing: .16em;
}

.contact-panel h3 {
  margin-bottom: 20px;
  color: var(--cream);
  font-size: 24px;
}

.contact-panel dl {
  display: grid;
  margin: 0;
}

.contact-panel dl div {
  display: grid;
  gap: 6px;
  padding: 14px 0;
  border-top: 1px solid rgba(242, 210, 138, .14);
}

.contact-panel dt {
  color: var(--gold2);
  font-weight: 700;
}

.contact-panel dd {
  margin: 0;
  color: #d9d2c2;
}

.contact-panel.slim ol {
  display: grid;
  gap: 12px;
  margin: 0;
  padding-left: 20px;
  color: #d9d2c2;
}

.info-list {
  display: grid;
  max-width: 980px;
  margin: 0 auto;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: rgba(9, 15, 20, .72);
}

.info-list div {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 18px;
  padding: 18px 22px;
  border-bottom: 1px solid rgba(216, 180, 106, .18);
}

.info-list div:last-child { border-bottom: 0; }
.info-list dt { color: var(--gold2); font-weight: 700; }
.info-list dd { margin: 0; color: #d9d2c2; }

.other-services {
  padding: 48px clamp(24px, 5vw, 72px);
  color: var(--darkText);
  background: linear-gradient(180deg, #fff8eb, #f6ecdb);
}

.other-services h2 {
  margin-bottom: 28px;
  text-align: center;
  color: #2b241b;
  font-size: 32px;
}

.other-row {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  max-width: 1160px;
  margin: 0 auto;
  border-left: 1px solid rgba(118, 85, 34, .22);
}

.other-row div {
  display: grid;
  gap: 6px;
  justify-items: center;
  padding: 22px 18px;
  border-right: 1px solid rgba(118, 85, 34, .22);
  text-align: center;
}

.other-row span { color: #a8792c; font-size: 28px; }
.other-row strong { font-size: 18px; }
.other-row small { color: #6f6250; }

.process-line {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  max-width: 1160px;
  margin: 0 auto;
  padding: 0;
  list-style: none;
}

.process-line li {
  position: relative;
  display: grid;
  justify-items: center;
  gap: 8px;
  text-align: center;
}

.process-line li:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 35px;
  left: calc(50% + 44px);
  width: calc(100% - 88px);
  height: 1px;
  background: var(--gold);
}

.process-line span {
  display: grid;
  place-items: center;
  width: 70px;
  height: 70px;
  color: var(--gold2);
  border: 1px solid var(--gold);
  border-radius: 50%;
  font-family: Georgia, serif;
  font-size: 20px;
}

.process-line strong { color: var(--cream); font-size: 19px; }
.process-line small { color: var(--muted); }

.strength-panel {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  max-width: 1180px;
  margin: 0 auto;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: rgba(12, 18, 23, .78);
}

.strength-panel div {
  display: grid;
  justify-items: center;
  gap: 8px;
  min-height: 150px;
  padding: 30px 18px;
  text-align: center;
}

.strength-panel div + div { border-left: 1px solid var(--line); }
.strength-panel span { color: var(--gold2); font-size: 30px; }
.strength-panel strong { color: var(--cream); font-size: 19px; }
.strength-panel small { color: var(--muted); }

.cases-section {
  padding: 72px clamp(24px, 5vw, 72px);
  background: linear-gradient(180deg, #fff9ef, #f4eadb);
}

.section-title.light h2 { color: #20170b; }
.section-title.light span { color: #675a48; }

.case-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
  max-width: 1180px;
  margin: 0 auto 34px;
}

.case-card {
  overflow: hidden;
  color: var(--darkText);
  background: #fffaf2;
  border: 1px solid rgba(148, 108, 46, .25);
  border-radius: 6px;
  box-shadow: 0 18px 40px rgba(72, 51, 22, .08);
}

.case-image {
  height: 140px;
  background-image: url("assets/dark-hero-visa.png");
  background-size: cover;
}

.image-one { background-position: 72% 65%; }
.image-two { background-position: 58% 58%; }
.image-three { background-position: 66% 48%; }
.image-four { background-position: 80% 36%; }

.case-card small {
  display: inline-block;
  margin: 14px 18px 0;
  padding: 3px 8px;
  color: #3b2c16;
  background: #e8c879;
  font-weight: 700;
}

.case-card h3 { margin: 12px 18px 8px; font-size: 19px; }
.case-card p { margin: 0 18px 22px; color: #655b4d; font-size: 14px; }

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  max-width: 1180px;
  margin: 0 auto;
}

.faq-item {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  width: 100%;
  padding: 18px 22px;
  color: var(--cream);
  text-align: left;
  background: rgba(9, 15, 20, .72);
  border: 1px solid rgba(216, 180, 106, .28);
  border-radius: 5px;
  cursor: pointer;
}

.faq-item b { color: var(--gold2); font-size: 22px; line-height: 1; }
.faq-item em {
  grid-column: 1 / -1;
  display: none;
  color: var(--muted);
  font-style: normal;
}
.faq-item.is-open em { display: block; }
.faq-item.is-open b { transform: rotate(45deg); }

.final-cta {
  position: relative;
  min-height: 280px;
  padding: 60px clamp(24px, 5vw, 72px);
  overflow: hidden;
  border-top: 1px solid var(--line);
}

.cta-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5,8,11,.95), rgba(5,8,11,.55)),
    url("assets/dark-hero-visa.png") center 68% / cover;
}

.cta-content {
  position: relative;
  max-width: 860px;
}

.cta-content h2 {
  margin-bottom: 14px;
  color: var(--cream);
  font-size: clamp(30px, 4vw, 48px);
}

.cta-content p { color: #d9d2c2; }

.site-footer {
  display: grid;
  grid-template-columns: minmax(260px, .8fr) minmax(520px, 1.2fr);
  gap: 40px;
  padding: 42px clamp(24px, 5vw, 72px);
  background: #05090d;
  border-top: 1px solid var(--line);
}

.site-footer strong { display: block; color: var(--cream); font-size: 21px; }
.site-footer p, .site-footer span, .site-footer a { color: var(--muted); font-size: 13px; }
.footer-cols { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 28px; }
.footer-cols div { display: grid; gap: 7px; }
.footer-cols b { color: var(--gold2); margin-bottom: 8px; }
.copyright { grid-column: 1 / -1; margin: 0; }

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.hero-section .reveal {
  opacity: 1;
  transform: none;
  animation: heroRise .85s ease both;
}
.hero-section .reveal:nth-child(2) { animation-delay: .08s; }
.hero-section .reveal:nth-child(3) { animation-delay: .16s; }
.hero-section .reveal:nth-child(4) { animation-delay: .24s; }
.hero-section .reveal:nth-child(5) { animation-delay: .32s; }
@keyframes heroRise {
  from { opacity: 1; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}

.materials-hero .page-hero-content {
  max-width: 860px;
  opacity: 1;
  transform: none;
  text-shadow: 0 2px 22px rgba(0, 0, 0, .55);
}

.materials-hero .page-hero-content h1 {
  color: #fff8ea !important;
}

.materials-hero .page-hero-content span {
  color: #e7ddca !important;
}

.materials-tool-section {
  background:
    radial-gradient(circle at 14% 12%, rgba(216, 180, 106, .08), transparent 30%),
    linear-gradient(180deg, #070c11, #0a1016);
}

.materials-tool-section .reveal {
  opacity: 1;
  transform: none;
}

.materials-app-shell {
  width: min(1120px, 100%);
  margin: 0 auto;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(17, 25, 32, .96), rgba(5, 9, 13, .96)),
    var(--panel2);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.screen {
  display: none;
  padding: clamp(24px, 4vw, 44px);
}

.screen.active {
  display: block;
}

.screen-heading {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: flex-end;
  margin-bottom: 22px;
}

.screen-heading h2,
.result-card h3,
.review-section h3 {
  margin: 0;
  color: var(--cream);
  letter-spacing: .04em;
}

.step-label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 58px;
  min-height: 30px;
  margin-bottom: 12px;
  padding: 0 12px;
  border: 1px solid rgba(216, 180, 106, .5);
  border-radius: 999px;
  color: var(--gold2);
  background: rgba(216, 180, 106, .08);
  font-size: 13px;
  font-weight: 700;
}

.type-select-panel {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr)) auto;
  gap: 18px;
  align-items: end;
  padding: 24px;
  border: 1px solid rgba(216, 180, 106, .26);
  border-radius: 8px;
  background: rgba(5, 9, 13, .42);
}

.type-select-panel label {
  display: grid;
  gap: 10px;
  color: var(--gold2);
  font-weight: 700;
}

.type-select-panel select {
  min-height: 52px;
  width: 100%;
  border: 1px solid rgba(216, 180, 106, .35);
  border-radius: 4px;
  padding: 0 14px;
  color: var(--cream);
  background: #071017;
  outline: none;
}

.type-select-panel select:focus {
  border-color: var(--gold2);
  box-shadow: 0 0 0 4px rgba(216, 180, 106, .12);
}

.type-select-panel select.is-placeholder {
  color: #827b70;
}

.type-select-panel option {
  color: #1e1a15;
  background: #f7f1e4;
}

.primary-button,
.secondary-button {
  min-height: 52px;
  border-radius: 4px;
  border: 1px solid var(--gold);
  padding: 0 28px;
  font-weight: 700;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, opacity .2s ease;
}

.primary-button {
  color: #20170b;
  background: linear-gradient(135deg, #f1d58d, #c89b45);
}

.primary-button:disabled {
  cursor: not-allowed;
  opacity: .45;
  box-shadow: none;
}

.primary-button:not(:disabled):hover,
.secondary-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(216, 180, 106, .2);
}

.secondary-button {
  color: var(--gold2);
  background: transparent;
}

.result-layout {
  display: block;
}

.result-card {
  display: grid;
  gap: 24px;
}

.notice {
  border: 1px solid rgba(216, 180, 106, .38);
  border-radius: 8px;
  padding: 18px 20px;
  color: #e2d7c4;
  background: rgba(216, 180, 106, .08);
}

.material-list {
  display: grid;
  gap: 12px;
}

.material-item {
  border: 1px solid rgba(216, 180, 106, .24);
  border-radius: 8px;
  background: rgba(255, 255, 255, .025);
  overflow: hidden;
}

.material-item summary,
.material-static-title {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 58px;
  padding: 15px 18px;
  color: var(--cream);
  font-weight: 700;
  cursor: pointer;
}

.material-item summary::-webkit-details-marker {
  display: none;
}

.material-item summary::after {
  content: "+";
  margin-left: auto;
  color: var(--gold2);
  font-size: 22px;
  line-height: 1;
}

.material-item[open] summary::after {
  content: "-";
}

.material-item p {
  margin: 0;
  padding: 0 18px 18px 52px;
  color: #d4cbbb;
  line-height: 1.85;
}

.material-item a {
  display: inline-flex;
  margin-left: 10px;
  color: var(--gold2);
  border-bottom: 1px solid rgba(216, 180, 106, .45);
}

.checkmark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 24px;
  width: 24px;
  height: 24px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  color: var(--gold2);
  font-size: 13px;
}

.review-section {
  display: grid;
  gap: 16px;
  padding-top: 8px;
}

.review-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding-left: 28px;
  color: #d8d0c0;
}

.review-list li::marker {
  color: var(--gold2);
  font-weight: 700;
}

.actions {
  display: flex;
  justify-content: flex-start;
}

.contact-footer {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  padding: 28px clamp(24px, 4vw, 44px);
  border-top: 1px solid var(--line);
  background:
    linear-gradient(90deg, rgba(216, 180, 106, .08), transparent),
    rgba(5, 9, 13, .72);
}

.contact-copy p {
  margin: 0;
}

.contact-kicker {
  color: var(--gold2);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .18em;
}

.contact-title {
  color: var(--cream);
  font-size: clamp(20px, 2.8vw, 30px);
  font-weight: 700;
}

.contact-note {
  color: var(--muted);
}

.wechat-card {
  display: grid;
  gap: 10px;
  justify-items: center;
  padding: 14px;
  border: 1px solid rgba(216, 180, 106, .32);
  border-radius: 8px;
  background: rgba(255, 255, 255, .04);
  color: var(--gold2);
  font-size: 13px;
  font-weight: 700;
}

.wechat-qr {
  width: 112px;
  height: 112px;
  object-fit: cover;
  border-radius: 4px;
  background: #fff;
}

@media (max-width: 1080px) {
  .desktop-nav, .header-reserve { display: none; }
  .site-header {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    padding: 0 20px;
  }
  .brand {
    flex: 1 1 auto;
    max-width: min(170px, calc(100vw - 220px));
  }
  .header-language {
    position: static;
    flex: 0 0 auto;
    height: auto;
    border-radius: 4px;
    background: rgba(5, 9, 13, .38);
    font-size: 11px;
  }
  .header-language a {
    min-width: 32px;
    padding: 7px 7px;
  }
  .menu-button {
    display: grid;
    flex: 0 0 44px;
    gap: 0;
    width: 44px;
    height: 44px;
    padding: 11px;
    margin-left: auto;
    background-color: rgba(216, 180, 106, .06);
    background-image:
      linear-gradient(var(--gold2), var(--gold2)),
      linear-gradient(var(--gold2), var(--gold2)),
      linear-gradient(var(--gold2), var(--gold2));
    background-repeat: no-repeat;
    background-size: 22px 2px, 22px 2px, 22px 2px;
    background-position: center 14px, center 21px, center 28px;
    border: 1px solid rgba(242, 210, 138, .68);
    border-radius: 4px;
  }
  .menu-button span { display: none; }
  .mobile-nav.is-open {
    display: grid;
    position: fixed;
    top: 74px;
    left: 0;
    right: 0;
    z-index: 35;
    background: rgba(5,9,13,.98);
    border-bottom: 1px solid var(--line);
  }
  .mobile-nav a { padding: 14px 22px; border-top: 1px solid rgba(216,180,106,.16); }
  .hero-content { width: min(720px, 82vw); }
  .service-grid, .case-grid, .content-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .other-row, .strength-panel, .process-line { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .process-line li:not(:last-child)::after { display: none; }
  .type-select-panel { grid-template-columns: 1fr; }
}

@media (max-width: 700px) {
  .site-header { height: 74px; }
  .site-header {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 8px;
    padding: 0 20px;
  }
  .brand { max-width: 100%; }
  .brand-main { font-size: 17px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; max-width: 150px; }
  .brand-sub { display: none; }
  .header-language { display: none; }
  .menu-button {
    position: absolute;
    top: 12px;
    right: 20px;
    z-index: 3;
    flex-basis: 40px;
    width: 40px;
    height: 40px;
    margin-left: 0;
    background-color: rgba(5, 9, 13, .92);
  }
  .menu-button::before {
    content: "☰";
    display: grid;
    place-items: center;
    color: var(--gold2);
    font-size: 22px;
    line-height: 1;
  }
  .hero-section { min-height: auto; padding-top: 74px; }
  .page-hero {
    min-height: 330px;
    padding: 128px 20px 48px;
    background-position: 60% 42%;
  }
  .page-hero h1 { font-size: 38px; }
  .page-hero-content,
  .page-hero span {
    max-width: 100%;
    overflow-wrap: anywhere;
  }
  .page-hero span { font-size: 16px; }
  .hero-bg { height: 390px; bottom: auto; }
  .hero-overlay {
    background:
      linear-gradient(180deg, rgba(5,8,11,.18), rgba(5,8,11,.88) 76%, #05090d 100%);
  }
  .hero-content {
    width: 100%;
    min-height: auto;
    padding: 318px 20px 56px;
  }
  .eyebrow { font-size: 13px; letter-spacing: .12em; }
  .hero-content h1 {
    max-width: 100%;
    font-size: clamp(31px, 8.7vw, 36px);
    line-height: 1.16;
    letter-spacing: 0;
    overflow-wrap: break-word;
  }
  .hero-copy { font-size: 16px; }
  .hero-badges {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .hero-badges span {
    min-width: 0;
    padding-left: 28px;
    overflow-wrap: break-word;
  }
  .btn { width: 100%; min-width: 0; }
  .section { padding: 54px 20px; }
  .section-title h2 {
    max-width: 100%;
    font-size: clamp(30px, 8.6vw, 36px);
    overflow-wrap: anywhere;
  }
  .section-title span { overflow-wrap: anywhere; }
  .mobile-break { display: block; }
  .service-card {
    width: 100%;
    padding: 30px 20px;
  }
  .service-card h3,
  .service-card p {
    overflow-wrap: anywhere;
  }
  .service-grid, .case-grid, .faq-grid, .other-row, .strength-panel, .process-line, .site-footer, .footer-cols, .content-grid {
    grid-template-columns: 1fr;
  }
  .contact-layout,
  .form-row.two-col {
    grid-template-columns: 1fr;
  }
  .contact-form,
  .contact-panel {
    padding: 22px;
  }
  .contact-submit {
    width: 100%;
    min-width: 0;
  }
  .materials-app-shell { border-radius: 0; }
  .screen { padding: 22px; }
  .type-select-panel { padding: 18px; }
  .primary-button,
  .secondary-button { width: 100%; }
  .material-item p { padding-left: 18px; }
  .contact-footer { grid-template-columns: 1fr; }
  .wechat-card { justify-items: start; }
  .wechat-qr { width: 96px; height: 96px; }
  .fee-table th, .fee-table td { padding: 14px 12px; font-size: 14px; }
  .info-list div { grid-template-columns: 1fr; gap: 6px; }
  .strength-panel div + div { border-left: 0; border-top: 1px solid var(--line); }
  .other-row { border-left: 0; }
  .other-row div { border-right: 0; border-top: 1px solid rgba(118,85,34,.18); }
  .process-line { gap: 24px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  html { scroll-behavior: auto; }
}
