:root {
  --ink: #17191f;
  --muted: #69707d;
  --line: #e5e7eb;
  --paper: #f5f6f8;
  --white: #ffffff;
  --primary: #f33135;
  --primary-dark: #111216;
  --accent: #ff4a4f;
  --soft: #fff0f0;
  --danger: #c6282d;
  --red-glow-bg:
    radial-gradient(circle at 16% 22%, rgba(243, 49, 53, 0.34), transparent 32%),
    radial-gradient(circle at 78% 18%, rgba(255, 74, 79, 0.24), transparent 26%),
    radial-gradient(circle at 82% 86%, rgba(243, 49, 53, 0.18), transparent 28%),
    linear-gradient(135deg, #050506 0%, #121319 58%, #3a0709 100%);
  font-family: "Microsoft YaHei", "PingFang SC", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.65;
}

a {
  color: inherit;
  text-decoration: none;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px 6vw;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 20px;
  white-space: nowrap;
}

.brand-mark {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  color: var(--white);
  background: linear-gradient(135deg, #0c0d10, var(--primary));
  border-radius: 8px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 24px;
  color: #2f3440;
  font-size: 15px;
}

.menu-toggle {
  display: none;
}

.nav a:hover,
.section-title a,
.text-link,
table a {
  color: var(--primary);
}

.header-cta,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 20px;
  border-radius: 6px;
  font-weight: 700;
  border: 1px solid transparent;
}

.header-cta,
.btn.primary {
  color: var(--white);
  background: var(--primary);
}

.btn.ghost {
  color: var(--primary-dark);
  border-color: rgba(243, 49, 53, 0.28);
  background: var(--white);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(340px, 0.95fr);
  gap: 48px;
  align-items: center;
  min-height: 680px;
  padding: 76px 6vw 96px;
  background:
    radial-gradient(circle at 12% 18%, rgba(243, 49, 53, 0.15), transparent 24%),
    linear-gradient(135deg, #fff5f5 0%, #f6f7fa 54%, #fff0f0 100%);
}

.hero h1,
.page-hero h1 {
  margin: 10px 0 18px;
  max-width: 760px;
  font-size: clamp(38px, 6vw, 68px);
  line-height: 1.08;
  letter-spacing: 0;
}

.lead,
.page-hero p {
  max-width: 680px;
  color: var(--muted);
  font-size: 19px;
}

.eyebrow {
  margin: 0;
  color: var(--accent);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero-actions,
.stats {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 30px;
}

.stats {
  gap: 34px;
  margin-top: 46px;
}

.stats strong {
  display: block;
  font-size: 28px;
}

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

.terminal-visual {
  overflow: hidden;
  min-height: 430px;
  border: 1px solid rgba(243, 49, 53, 0.18);
  border-radius: 8px;
  background: #111216;
  box-shadow: 0 28px 70px rgba(17, 18, 22, 0.24);
}

.terminal-top {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 16px;
  color: #d7dbe4;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.terminal-top span {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--accent);
}

.terminal-top span:nth-child(2) {
  background: #ff4a4f;
}

.terminal-top span:nth-child(3) {
  background: #d66f59;
}

.terminal-top b {
  margin-left: auto;
  font-size: 13px;
}

.chart {
  display: flex;
  align-items: end;
  gap: 18px;
  height: 270px;
  padding: 34px;
  background:
    linear-gradient(rgba(255, 255, 255, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  background-size: 100% 54px, 54px 100%;
}

.chart i {
  flex: 1;
  min-width: 18px;
  border-radius: 5px 5px 0 0;
  background: linear-gradient(180deg, #ff4a4f, #f33135);
}

.ticker {
  display: grid;
  gap: 10px;
  padding: 18px 28px 28px;
  color: #d7dbe4;
}

.ticker span {
  display: flex;
  justify-content: space-between;
  padding: 10px 14px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.08);
}

.section {
  padding: 72px 6vw;
}

.strip {
  background: var(--white);
}

.service-grid,
.broker-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.service-grid article,
.broker-card,
.side-panel,
.contact-card,
.contact-form {
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.service-grid h3,
.broker-card h3 {
  margin: 0 0 8px;
}

.service-grid p,
.broker-card p,
.muted {
  color: var(--muted);
}

.section-title {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 28px;
}

.section-title h2,
.split h2,
.article h2,
.contact-card h2 {
  margin: 4px 0 0;
  font-size: 32px;
  line-height: 1.2;
}

.broker-card {
  display: grid;
  gap: 0;
  overflow: hidden;
  padding: 0;
}

.broker-card-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  padding: 18px 20px 20px;
  margin-top: 0;
}

.broker-card-actions .btn {
  min-height: 40px;
  padding: 0 12px;
}

.broker-card-actions .btn:only-child {
  grid-column: 1 / -1;
}

.broker-logo-stage {
  display: grid;
  min-height: 88px;
  place-items: center;
  padding: 18px 22px 14px;
  border: 0;
  border-bottom: 1px dashed #f3c8ca;
  border-radius: 0;
  background: var(--white);
}

.broker-logo-stage span {
  display: inline-flex;
  min-width: 64px;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  padding: 0 16px;
  color: var(--white);
  background: var(--primary);
  border-radius: 8px;
  font-size: 20px;
  font-weight: 900;
}

.broker-logo {
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  color: var(--white);
  background: var(--primary-dark);
  border-radius: 8px;
  font-size: 22px;
  font-weight: 800;
}

.broker-card-logo-img {
  max-width: 180px;
  max-height: 64px;
  object-fit: contain;
  display: block;
}

.featured-rebate-strip {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-bottom: 1px dashed #f3c8ca;
  background: #fff5f5;
}

.featured-rebate-strip div {
  display: grid;
  gap: 5px;
  justify-items: center;
  padding: 16px 10px 15px;
}

.featured-rebate-strip strong {
  color: var(--primary);
  font-size: 26px;
  line-height: 1;
}

.featured-rebate-strip div:last-child strong {
  color: var(--primary);
}

.featured-rebate-strip span {
  color: var(--muted);
  font-size: 14px;
}

.featured-rebate-details {
  display: grid;
  gap: 6px;
  padding: 18px 22px 8px;
  color: #69707d;
  font-size: 15px;
  line-height: 1.5;
}

.featured-rebate-details p {
  margin: 0;
}

.featured-rebate-details b {
  color: #69707d;
  font-weight: 700;
}

.reg-list {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 6px;
  vertical-align: middle;
}

.reg-chip {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  width: fit-content;
  padding: 3px 7px;
  color: #2a3142;
  background: #fff5f5;
  border: 1px solid #ffd2d2;
  border-radius: 6px;
  font-size: 13px;
  line-height: 1.45;
}

.reg-flag-img {
  display: block;
  width: 18px;
  height: 13px;
  object-fit: cover;
  border-radius: 2px;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.08);
  flex: 0 0 auto;
}

dl {
  display: grid;
  gap: 10px;
  margin: 0;
}

dl div {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding-top: 10px;
  border-top: 1px solid var(--line);
}

dt {
  color: var(--muted);
}

dd {
  margin: 0;
  font-weight: 700;
}

.split,
.content-layout,
.contact-grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.7fr) minmax(0, 1.3fr);
  gap: 38px;
  align-items: start;
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.steps li {
  padding: 24px;
  border-left: 3px solid var(--primary);
  background: var(--white);
}

.steps span {
  color: var(--accent);
  font-weight: 900;
}

.steps b {
  display: block;
  margin: 8px 0;
  font-size: 18px;
}

.steps p {
  margin: 0;
  color: var(--muted);
}

.news {
  background: var(--white);
}

.news-list {
  display: grid;
  border-top: 1px solid var(--line);
}

.news-list a {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 24px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.news-list time {
  color: var(--muted);
}

.page-hero {
  color: var(--white);
  padding: 88px 6vw;
  background: var(--red-glow-bg);
}

.page-hero.compact {
  padding-bottom: 64px;
}

.page-hero.warning {
  background:
    radial-gradient(circle at 18% 24%, rgba(243, 49, 53, 0.42), transparent 34%),
    radial-gradient(circle at 84% 30%, rgba(255, 74, 79, 0.2), transparent 28%),
    linear-gradient(135deg, #0d0e12 0%, #401012 100%);
}

.content-layout {
  padding: 64px 6vw;
}

.article {
  max-width: 860px;
}

.article p,
.article li {
  color: #69707d;
  font-size: 17px;
}

.check-list {
  display: grid;
  gap: 12px;
  padding-left: 20px;
}

.side-panel {
  position: sticky;
  top: 92px;
}

.side-panel h3 {
  margin-top: 0;
  font-size: 24px;
}

.table-wrap {
  overflow-x: auto;
  padding: 54px 6vw;
}

table {
  width: 100%;
  min-width: 820px;
  border-collapse: collapse;
  background: var(--white);
  border: 1px solid var(--line);
}

th,
td {
  padding: 18px;
  text-align: left;
  border-bottom: 1px solid var(--line);
}

th {
  color: var(--white);
  background: var(--primary-dark);
}

.feature-list {
  display: grid;
  gap: 16px;
}

.feature-list p {
  margin: 0;
  padding: 20px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.contact-grid {
  padding: 64px 6vw 88px;
}

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

label {
  display: grid;
  gap: 8px;
  font-weight: 700;
}

input,
textarea,
select {
  width: 100%;
  padding: 13px 14px;
  color: var(--ink);
  border: 1px solid var(--line);
  border-radius: 6px;
  font: inherit;
  background: #fffafa;
}

textarea {
  resize: vertical;
}

.contact-card h2 {
  margin-top: 0;
  font-size: 24px;
}

.rebate-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 380px;
  gap: 40px;
  align-items: center;
  padding: 84px 6vw;
  color: var(--white);
  background:
    radial-gradient(circle at 18% 22%, rgba(243, 49, 53, 0.38), transparent 32%),
    radial-gradient(circle at 86% 72%, rgba(255, 74, 79, 0.2), transparent 30%),
    linear-gradient(135deg, #050506 0%, #13141a 54%, #41080a 100%);
}

.rebate-hero h1,
.contact-hero h1,
.risk-hero h1 {
  margin: 10px 0 18px;
  max-width: 820px;
  font-size: clamp(36px, 5vw, 58px);
  line-height: 1.12;
}

.rebate-hero p,
.contact-hero p,
.risk-hero p {
  max-width: 760px;
  color: #d7dbe4;
  font-size: 18px;
}

.rebate-calculator {
  display: grid;
  gap: 14px;
  padding: 30px;
  color: #f2f3f5;
  border-radius: 8px;
  background: linear-gradient(145deg, #111216, #24262e);
  box-shadow: 0 24px 60px rgba(17, 18, 22, 0.18);
}

.rebate-calculator span {
  color: #ff4a4f;
  font-weight: 800;
}

.rebate-calculator strong {
  font-size: 24px;
  line-height: 1.25;
}

.rebate-calculator p {
  margin: 0;
  color: #b8bdc8;
  font-size: 14px;
}

.calc-row,
.calc-total {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 12px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.calc-row em {
  color: var(--accent);
  font-style: normal;
  font-weight: 800;
}

.calc-total {
  color: #fff;
  font-size: 20px;
  font-weight: 900;
}

.rebate-explain {
  display: grid;
  grid-template-columns: 320px minmax(0, 1fr);
  gap: 34px;
  padding: 72px 6vw;
  background: var(--white);
}

.explain-intro h2,
.rebate-columns h2,
.contact-quick h2,
.risk-summary h2,
.risk-banner h2 {
  margin: 4px 0 12px;
  font-size: 30px;
  line-height: 1.2;
}

.explain-intro p {
  color: var(--muted);
}

.explain-cards {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.explain-cards article {
  min-height: 220px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fffafa;
}

.explain-cards span,
.contact-aside span,
.risk-list span {
  display: inline-grid;
  width: 38px;
  height: 38px;
  margin-bottom: 14px;
  place-items: center;
  color: var(--white);
  background: var(--primary);
  border-radius: 8px;
  font-weight: 900;
}

.explain-cards h3,
.contact-aside h3 {
  margin: 0 0 8px;
}

.explain-cards p,
.plain-list,
.notice-box p,
.contact-quick p,
.contact-aside p,
.contact-note p,
.risk-summary li,
.risk-list p,
.risk-banner p {
  color: var(--muted);
}

.rebate-columns {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 380px;
  gap: 26px;
  padding: 70px 6vw 88px;
}

.rebate-columns article,
.notice-box {
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.notice-box {
  background: var(--soft);
  border-color: rgba(243, 49, 53, 0.18);
}

.plain-list {
  display: grid;
  gap: 14px;
  margin: 18px 0 0;
  padding-left: 20px;
}

.contact-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 38px;
  align-items: stretch;
  padding: 78px 6vw;
  color: var(--white);
  background: var(--red-glow-bg);
}

.contact-quick {
  display: grid;
  gap: 16px;
  align-content: center;
  padding: 28px;
  color: var(--white);
  border-radius: 8px;
  background:
    radial-gradient(circle at 14% 8%, rgba(243, 49, 53, 0.38), transparent 32%),
    linear-gradient(145deg, rgba(17, 18, 22, 0.94), rgba(51, 8, 10, 0.96));
}

.contact-quick h2,
.contact-quick p {
  color: inherit;
}

.contact-quick div {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.contact-quick span {
  color: #d7dbe4;
}

.contact-main {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  gap: 28px;
  padding: 68px 6vw;
}

.contact-info-panel {
  scroll-margin-top: 88px;
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(520px, 1.18fr);
  gap: 34px;
  align-items: start;
  padding: 64px 6vw 18px;
  background: linear-gradient(135deg, #fffafa 0%, #f6f7fa 100%);
}

.contact-info-panel h2 {
  margin: 8px 0 14px;
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.12;
}

.contact-info-panel > div:first-child p:last-child {
  max-width: 520px;
  color: var(--muted);
  font-size: 17px;
}

.contact-info-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.contact-info-grid article {
  min-height: 156px;
  padding: 22px;
  border: 1px solid rgba(243, 49, 53, 0.14);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 18px 45px rgba(17, 18, 22, 0.08);
}

.contact-info-grid span {
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  padding: 0 10px;
  color: var(--primary);
  border: 1px solid rgba(243, 49, 53, 0.22);
  border-radius: 999px;
  background: #fff0f0;
  font-size: 13px;
  font-weight: 900;
}

.contact-info-grid strong {
  display: block;
  margin: 14px 0 8px;
  color: var(--ink);
  font-size: 20px;
  line-height: 1.3;
}

.contact-info-grid p {
  margin: 0;
  color: var(--muted);
}

.wide-form {
  padding: 32px;
}

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

.contact-aside {
  display: grid;
  gap: 16px;
}

.contact-aside article {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.contact-note {
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr);
  gap: 26px;
  margin: 0 6vw 84px;
  padding: 24px 28px;
  border-left: 4px solid var(--accent);
  background: #fff0f0;
}

.contact-note b {
  font-size: 20px;
}

.contact-note p {
  margin: 0;
}

.risk-hero {
  padding: 84px 6vw 72px;
  color: var(--white);
  background:
    radial-gradient(circle at 20% 22%, rgba(243, 49, 53, 0.44), transparent 34%),
    radial-gradient(circle at 78% 62%, rgba(255, 74, 79, 0.18), transparent 30%),
    linear-gradient(135deg, #0b0c10 0%, #15161b 58%, #4d080b 100%);
}

.risk-hero .eyebrow,
.risk-hero p {
  color: #f1d5d7;
}

.risk-board {
  display: grid;
  grid-template-columns: 330px minmax(0, 1fr);
  gap: 30px;
  padding: 68px 6vw;
}

.risk-summary {
  position: sticky;
  top: 92px;
  padding: 28px;
  border-radius: 8px;
  background: #fff0f0;
  border: 1px solid #f3c8ca;
}

.risk-summary ul {
  display: grid;
  gap: 12px;
  margin: 18px 0 0;
  padding-left: 20px;
}

.risk-list {
  display: grid;
  gap: 18px;
}

.risk-list article {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  gap: 20px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.risk-list span {
  margin: 0;
  background: var(--danger);
}

.risk-list h2 {
  margin: 0 0 8px;
  font-size: 24px;
}

.risk-list p {
  margin: 0;
}

.risk-banner {
  margin: 0 6vw 88px;
  padding: 34px;
  border-radius: 8px;
  background:
    radial-gradient(circle at 12% 24%, rgba(243, 49, 53, 0.22), transparent 32%),
    linear-gradient(135deg, #0d0e12 0%, #280608 100%);
  color: var(--white);
}

.risk-banner p {
  max-width: 900px;
  margin-bottom: 0;
  color: #d1d5df;
}

.compare-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 190px;
  gap: 30px;
  align-items: center;
  color: var(--white);
  padding: 74px 6vw 54px;
  background: var(--red-glow-bg);
}

.compare-hero h1 {
  margin: 10px 0 14px;
  font-size: clamp(36px, 5vw, 58px);
  line-height: 1.1;
}

.compare-hero p {
  max-width: 780px;
  color: #d7dbe4;
  font-size: 18px;
}

.compare-count {
  display: grid;
  place-items: center;
  min-height: 150px;
  color: var(--white);
  border-radius: 8px;
  background: var(--primary-dark);
}

.compare-count strong {
  font-size: 56px;
  line-height: 1;
}

.compare-count span {
  color: #d7dbe4;
}

.compare-board {
  display: grid;
  gap: 12px;
  padding: 48px 6vw 70px;
}

.compare-head,
.compare-row {
  display: grid;
  grid-template-columns: 1.05fr 1.35fr 1.25fr 1.35fr 1.55fr 0.92fr;
  gap: 0;
  align-items: stretch;
}

.compare-head {
  position: sticky;
  top: 67px;
  z-index: 5;
  color: var(--white);
  background: var(--primary-dark);
  border-radius: 8px;
  overflow: hidden;
}

.compare-head span {
  padding: 16px 14px;
  font-weight: 800;
  border-right: 1px solid rgba(255, 255, 255, 0.14);
}

.compare-row {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.compare-row > div {
  padding: 18px 14px;
  border-right: 1px solid var(--line);
}

.compare-row > div:last-child,
.compare-head span:last-child {
  border-right: 0;
}

.compare-row p {
  margin: 0 0 6px;
  color: #69707d;
  font-size: 14px;
  line-height: 1.45;
}

.broker-name {
  display: grid;
  place-items: center;
  background: #fffafa;
}

.broker-name b,
.logo-badge {
  display: inline-flex;
  min-width: 58px;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  padding: 0 12px;
  color: var(--white);
  background: var(--primary);
  border-radius: 8px;
}

.logo-badge {
  min-width: 0;
  width: auto;
  max-width: 138px;
  padding: 0 14px;
  box-shadow: inset 0 -2px 0 rgba(0, 0, 0, 0.08);
}

.logo-badge.large {
  min-height: 72px;
  max-width: none;
  padding: 0 28px;
  font-size: 28px;
}

.broker-logo-img {
  display: block;
  width: 150px;
  max-width: 100%;
  height: 72px;
  object-fit: contain;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.broker-logo-missing {
  display: grid;
  width: 150px;
  height: 72px;
  place-items: center;
  color: var(--muted);
  border: 1px dashed var(--line);
  border-radius: 8px;
  background: #fff;
  font-size: 13px;
}

.broker-detail-logo-img {
  display: block;
  width: min(260px, 100%);
  max-height: 130px;
  object-fit: contain;
  padding: 18px;
  border-radius: 8px;
  background: #fff;
}

.row-actions {
  display: grid;
  gap: 10px;
  align-content: center;
}

.row-actions a {
  display: inline-flex;
  justify-content: center;
  padding: 8px 10px;
  color: var(--primary-dark);
  border: 1px solid rgba(243, 49, 53, 0.22);
  border-radius: 6px;
  font-weight: 800;
  font-size: 14px;
  background: #fff5f5;
}

.row-actions a:last-child {
  color: var(--white);
  background: var(--accent);
  border-color: var(--accent);
}

.compare-risk {
  margin: 0 6vw 88px;
  padding: 30px;
  border-left: 4px solid var(--danger);
  background: #fff0f0;
}

.compare-risk h2 {
  margin: 0 0 12px;
  font-size: 28px;
}

.compare-risk p {
  max-width: 1100px;
  color: var(--muted);
}

.broker-detail-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 36px;
  align-items: center;
  padding: 78px 6vw;
  color: var(--white);
  background:
    radial-gradient(circle at 18% 24%, rgba(243, 49, 53, 0.38), transparent 32%),
    radial-gradient(circle at 84% 72%, rgba(255, 74, 79, 0.2), transparent 30%),
    linear-gradient(135deg, #050506 0%, #111216 55%, #46080a 100%);
}

.broker-detail-hero .eyebrow,
.broker-detail-hero p {
  color: #d7dbe4;
}

.broker-detail-hero h1 {
  margin: 10px 0 18px;
  font-size: clamp(38px, 5vw, 62px);
  line-height: 1.1;
}

.broker-detail-hero p {
  max-width: 760px;
  font-size: 18px;
}

.detail-logo-card {
  display: grid;
  gap: 18px;
  place-items: center;
  min-height: 260px;
  padding: 34px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
}

.detail-logo-card p {
  margin: 0;
  text-align: center;
}

.detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  gap: 30px;
  padding: 66px 6vw 86px;
}

.detail-main {
  display: grid;
  gap: 24px;
}

.detail-section,
.detail-aside {
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.detail-section h2,
.detail-aside h2 {
  margin: 0 0 18px;
  font-size: 28px;
  line-height: 1.2;
}

.detail-metrics {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.detail-metrics div {
  padding: 20px;
  border-radius: 8px;
  background: var(--soft);
}

.detail-metrics span,
.detail-table span {
  display: block;
  margin-bottom: 8px;
  color: var(--muted);
}

.detail-metrics strong {
  font-size: 22px;
  color: var(--primary-dark);
}

.detail-table {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
}

.detail-table p {
  margin: 0;
  padding: 18px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.detail-table p:nth-child(2n) {
  border-right: 0;
}

.detail-table p:nth-last-child(-n+1) {
  grid-column: 1 / -1;
  border-right: 0;
}

.detail-table b {
  display: block;
  color: #2f3440;
}

.detail-table #regulations {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  column-gap: 12px;
  row-gap: 10px;
}

.detail-table .detail-reg-row,
.detail-table p:has(.reg-list) {
  border-right: 0;
}

.detail-table .reg-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  max-width: 100%;
}

.detail-table .reg-chip {
  display: inline-flex;
  width: auto;
  min-width: 0;
}

.detail-table .reg-flag-img {
  display: block;
}

.detail-steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.detail-steps li {
  padding: 20px;
  border-left: 3px solid var(--accent);
  background: #fffafa;
}

.detail-steps p,
.detail-section > p,
.detail-aside li {
  color: var(--muted);
}

.detail-aside {
  position: sticky;
  top: 92px;
  align-self: start;
  display: grid;
  gap: 18px;
}

.detail-aside ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding-left: 20px;
}

.form-result {
  min-height: 22px;
  margin: 0;
  color: var(--primary-dark);
  font-weight: 700;
}

.admin-body {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  min-height: 100vh;
  background: #f5f6f8;
}

.admin-sidebar {
  position: sticky;
  top: 0;
  height: 100vh;
  display: flex;
  flex-direction: column;
  gap: 28px;
  padding: 24px;
  color: #d7dbe4;
  background:
    radial-gradient(circle at 12% 10%, rgba(243, 49, 53, 0.28), transparent 34%),
    radial-gradient(circle at 86% 78%, rgba(255, 74, 79, 0.16), transparent 30%),
    #0d0e12;
}

.admin-brand {
  color: var(--white);
}

.admin-nav {
  display: grid;
  gap: 10px;
}

.admin-nav button,
.admin-sidebar-actions button,
.admin-sidebar-actions a,
.admin-row-actions button {
  min-height: 42px;
  padding: 0 14px;
  border: 1px solid transparent;
  border-radius: 6px;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.admin-nav button {
  text-align: left;
  color: #d7dbe4;
  background: rgba(255, 255, 255, 0.08);
}

.admin-nav button.active,
.admin-nav button:hover {
  color: var(--white);
  background: var(--primary);
}

.admin-sidebar-actions {
  display: grid;
  gap: 10px;
  margin-top: auto;
}

.admin-sidebar-actions a,
.admin-sidebar-actions button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #0d0e12;
  background: #f2f3f5;
}

.admin-sidebar-actions button:last-child {
  color: var(--white);
  background: rgba(243, 49, 53, 0.9);
}

.admin-user-label {
  display: block;
  padding: 10px 12px;
  color: #d7dbe4;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.06);
  font-weight: 800;
}

.admin-main {
  padding: 32px;
}

.admin-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 24px;
}

.admin-topbar h1 {
  margin: 4px 0 0;
  font-size: 34px;
}

.admin-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-bottom: 24px;
}

.admin-stats article {
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.admin-stats span {
  display: block;
  color: var(--muted);
}

.admin-stats strong {
  display: block;
  margin-top: 8px;
  font-size: 34px;
  line-height: 1;
}

.admin-panel {
  display: block;
}

.admin-table-wrap {
  overflow: auto;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.admin-table {
  min-width: 860px;
  border: 0;
}

.admin-table th {
  white-space: nowrap;
}

.admin-table td {
  max-width: 260px;
  color: #69707d;
  vertical-align: top;
  white-space: normal;
  word-break: break-word;
}

.admin-logo-thumb {
  display: block;
  width: 78px;
  height: 42px;
  object-fit: contain;
  padding: 6px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fff;
}

.admin-logo-preview {
  display: block;
  width: 180px;
  height: 92px;
  object-fit: contain;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.admin-file-field {
  align-content: start;
}

.admin-upload-hint {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.3;
}

.admin-empty {
  color: var(--muted);
  font-size: 14px;
}

.admin-row-actions {
  display: flex;
  gap: 8px;
}

.admin-row-actions button {
  min-height: 34px;
  color: var(--primary-dark);
  background: var(--soft);
}

.admin-row-actions button:last-child {
  color: #fff;
  background: var(--danger);
}

.admin-modal {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: none;
  place-items: center;
  padding: 28px;
}

.admin-modal.open {
  display: grid;
}

.admin-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(8, 9, 12, 0.56);
  backdrop-filter: blur(4px);
}

#loginModal {
  background:
    radial-gradient(circle at 18% 16%, rgba(243, 49, 53, 0.22), transparent 28%),
    radial-gradient(circle at 82% 78%, rgba(243, 49, 53, 0.18), transparent 30%),
    linear-gradient(135deg, #050506 0%, #111216 54%, #f33135 100%);
}

#loginModal .admin-modal-backdrop {
  display: none;
}

.admin-editor {
  position: relative;
  z-index: 1;
  width: min(920px, calc(100vw - 56px));
  max-height: calc(100vh - 56px);
  display: grid;
  gap: 18px;
  padding: 30px;
  overflow: auto;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 30px 90px rgba(17, 18, 22, 0.28);
}

.admin-editor-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.admin-editor h2 {
  margin: 0;
  font-size: 24px;
}

.admin-editor-head button {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 6px;
  color: var(--ink);
  background: #fffafa;
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
}

#formFields {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

#formFields label:has(textarea) {
  grid-column: 1 / -1;
}

.admin-editor-actions {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
}

.admin-login-box {
  width: min(460px, calc(100vw - 40px));
  box-shadow: 0 26px 80px rgba(17, 18, 22, 0.18);
}

.admin-permission-field {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.admin-permission-field legend {
  padding: 0 8px;
  font-weight: 800;
}

.admin-permission-field label {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px;
  border-radius: 6px;
  background: #fffafa;
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  padding: 34px 6vw;
  color: #f2f3f5;
  background:
    radial-gradient(circle at 12% 10%, rgba(243, 49, 53, 0.2), transparent 30%),
    linear-gradient(135deg, #0d0e12 0%, #1a0f12 100%);
}

.footer p {
  margin: 6px 0 0;
  color: #b8bdc8;
}

.home-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
  gap: 54px;
  align-items: center;
  min-height: 720px;
  padding: 84px 6vw 110px;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.82), rgba(12, 13, 16, 0.72)),
    radial-gradient(circle at 14% 24%, rgba(243, 49, 53, 0.32), transparent 34%),
    radial-gradient(circle at 78% 28%, rgba(243, 49, 53, 0.46), transparent 28%),
    radial-gradient(circle at 88% 82%, rgba(255, 74, 79, 0.2), transparent 28%),
    linear-gradient(135deg, #050506 0%, #15161b 56%, #4c090b 100%);
}

.home-hero .eyebrow {
  color: #ff4a4f;
}

.home-hero h1 {
  max-width: 860px;
  margin: 12px 0 22px;
  font-size: clamp(42px, 6vw, 76px);
  line-height: 1.05;
}

.home-hero .lead {
  max-width: 720px;
  color: #d7dbe4;
  font-size: 20px;
}

.home-hero .btn.ghost {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.08);
}

.home-hero-panel {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(8, 9, 12, 0.72);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.34);
}

.panel-head {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 22px;
  color: #d8dbe3;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.panel-head b {
  color: #ff4a4f;
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: rgba(255, 255, 255, 0.14);
}

.hero-metrics article {
  padding: 24px;
  background: rgba(13, 14, 18, 0.78);
}

.hero-metrics span,
.hero-metrics em,
.market-lines span {
  color: #b8bdc8;
  font-style: normal;
}

.hero-metrics strong {
  display: block;
  margin: 10px 0 6px;
  font-size: 30px;
  line-height: 1;
}

.market-lines {
  display: grid;
  gap: 12px;
  padding: 22px;
}

.market-lines p {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin: 0;
  padding: 13px 15px;
  border-radius: 6px;
  background: rgba(243, 49, 53, 0.12);
}

.home-service-band {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin-top: -44px;
  padding: 0 6vw 76px;
  position: relative;
  z-index: 2;
}

.home-service-band article {
  padding: 28px;
  border: 1px solid rgba(243, 49, 53, 0.14);
  background: var(--white);
}

.home-service-band article:first-child {
  border-radius: 8px 0 0 8px;
}

.home-service-band article:last-child {
  border-radius: 0 8px 8px 0;
}

.home-service-band span {
  color: var(--accent);
  font-weight: 900;
}

.home-service-band h3 {
  margin: 10px 0 8px;
  font-size: 21px;
}

.home-service-band p {
  margin: 0;
  color: var(--muted);
}

.home-section {
  padding: 76px 6vw;
}

.home-section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 32px;
}

.home-section-head h2 {
  margin: 4px 0 0;
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.1;
}

.home-section-head > p {
  max-width: 420px;
  margin: 0;
  color: var(--muted);
}

.home-compare-cta {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1fr) auto;
  gap: 34px;
  align-items: center;
  padding: 62px 6vw;
  color: var(--white);
  background:
    radial-gradient(circle at 12% 26%, rgba(243, 49, 53, 0.28), transparent 30%),
    radial-gradient(circle at 88% 72%, rgba(255, 74, 79, 0.16), transparent 28%),
    linear-gradient(135deg, #0d0e12 0%, #2d0608 100%);
}

.home-compare-cta h2 {
  margin: 4px 0 0;
  max-width: 720px;
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.12;
}

.compare-points {
  display: grid;
  gap: 12px;
}

.compare-points p {
  margin: 0;
  padding: 16px 18px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
}

.compare-points b {
  display: block;
  margin-bottom: 4px;
  color: #ff4a4f;
}

.compare-points span {
  color: #d1d5df;
}

.process-section {
  background: linear-gradient(135deg, #fff5f5, #f6f7fa);
}

.home-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.home-steps li {
  min-height: 220px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.home-steps span {
  color: var(--accent);
  font-weight: 900;
}

.home-steps b {
  display: block;
  margin: 18px 0 10px;
  font-size: 22px;
}

.home-steps p {
  margin: 0;
  color: var(--muted);
}

.news-section {
  background: var(--white);
}

.news-section .news-list {
  border-top: 0;
}

.news-section .news-list a {
  padding: 22px 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  margin-bottom: 12px;
  background: #fffafa;
}

@media (max-width: 1080px) {
  .site-header {
    align-items: flex-start;
    flex-wrap: wrap;
  }

  .nav {
    order: 3;
    width: 100%;
    overflow-x: auto;
    padding-bottom: 4px;
  }

  .hero,
  .home-hero,
  .home-compare-cta,
  .split,
  .content-layout,
  .contact-grid,
  .rebate-hero,
  .rebate-explain,
  .rebate-columns,
  .contact-hero,
  .contact-info-panel,
  .contact-main,
  .risk-board,
  .broker-detail-hero,
  .detail-layout {
    grid-template-columns: 1fr;
  }

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

  .admin-sidebar {
    position: static;
    height: auto;
  }

  .compare-board {
    overflow-x: auto;
  }

  .compare-head,
  .compare-row {
    min-width: 1180px;
  }

  .service-grid,
  .broker-grid,
  .home-service-band,
  .home-steps,
  .steps,
  .explain-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .side-panel,
  .risk-summary,
  .detail-aside {
    position: static;
  }
}

@media (max-width: 640px) {
  .site-header,
  .hero,
  .home-hero,
  .home-section,
  .home-service-band,
  .home-compare-cta,
  .section,
  .page-hero,
  .rebate-hero,
  .rebate-explain,
  .rebate-columns,
  .contact-hero,
  .contact-info-panel,
  .contact-main,
  .contact-note,
  .risk-hero,
  .risk-board,
  .risk-banner,
  .compare-hero,
  .compare-board,
  .compare-risk,
  .broker-detail-hero,
  .detail-layout,
  .content-layout,
  .contact-grid,
  .table-wrap,
  .footer {
    padding-left: 20px;
    padding-right: 20px;
  }

  .header-cta {
    width: 100%;
  }

  .hero {
    min-height: auto;
    padding-top: 46px;
  }

  .hero h1,
  .page-hero h1 {
    font-size: 38px;
  }

  .terminal-visual {
    min-height: 340px;
  }

  .contact-info-grid {
    grid-template-columns: 1fr;
  }

  .chart {
    height: 200px;
    gap: 10px;
    padding: 24px 18px;
  }

  .service-grid,
  .broker-grid,
  .home-service-band,
  .home-steps,
  .hero-metrics,
  .steps,
  .explain-cards,
  .form-row,
  .contact-note,
  .detail-metrics,
  .detail-table,
  .detail-steps,
  .admin-topbar,
  #formFields {
    grid-template-columns: 1fr;
  }

  .admin-main {
    padding: 20px;
  }

  .admin-topbar {
    display: grid;
  }

  .admin-modal {
    padding: 16px;
  }

  .admin-editor {
    width: calc(100vw - 32px);
    max-height: calc(100vh - 32px);
    padding: 20px;
  }

  .admin-editor-actions {
    display: grid;
  }

  .detail-table p,
  .detail-table p:nth-child(2n) {
    border-right: 0;
  }

  .section-title,
  .home-section-head,
  .footer {
    display: grid;
  }

  .home-hero {
    min-height: auto;
    padding-top: 56px;
    padding-bottom: 88px;
  }

  .home-hero h1 {
    font-size: 42px;
  }

  .home-service-band {
    margin-top: 0;
    padding-top: 26px;
  }

  .home-service-band article,
  .home-service-band article:first-child,
  .home-service-band article:last-child {
    border-radius: 8px;
  }

  .home-compare-cta {
    align-items: start;
  }

  .compare-hero,
  .compare-head,
  .compare-row {
    grid-template-columns: 1fr;
  }

  .compare-head {
    display: none;
  }

  .compare-row {
    min-width: 0;
  }

  .compare-row > div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .compare-row > div:last-child {
    border-bottom: 0;
  }

  .news-list a {
    grid-template-columns: 1fr;
    gap: 4px;
  }
}


.news-detail-hero {
  color: var(--white);
  padding: 72px 6vw 44px;
  background: var(--red-glow-bg);
}

.news-detail-hero h1 {
  max-width: 880px;
  margin: 12px 0 10px;
  font-size: clamp(32px, 5vw, 54px);
  line-height: 1.16;
  letter-spacing: 0;
}

.news-detail-hero time {
  color: #d7dbe4;
}

.news-detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 28px;
  padding: 44px 6vw 72px;
}

.news-detail-card {
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.news-detail-content {
  color: #2f3440;
  font-size: 17px;
}

.news-detail-content p {
  margin: 0 0 18px;
}

.news-detail-source {
  margin-top: 24px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.news-detail-aside {
  align-self: start;
  position: sticky;
  top: 92px;
}

@media (max-width: 900px) {
  .news-detail-layout {
    grid-template-columns: 1fr;
  }

  .news-detail-aside {
    position: static;
  }
}

@media (max-width: 640px) {
  .news-detail-hero,
  .news-detail-layout {
    padding-left: 20px;
    padding-right: 20px;
  }

  .news-detail-card {
    padding: 22px;
  }
}

/* mobile-menu-20260701 */
@media (max-width: 760px) {
  .site-header {
    align-items: center;
    gap: 12px;
    padding: 14px 20px;
  }

  .brand {
    flex: 1;
    min-width: 0;
    font-size: 19px;
  }

  .brand-mark {
    width: 32px;
    height: 32px;
  }

  .menu-toggle {
    display: inline-grid;
    width: 42px;
    height: 42px;
    place-items: center;
    gap: 4px;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: 6px;
    background: var(--white);
  }

  .menu-toggle span {
    display: block;
    width: 18px;
    height: 2px;
    border-radius: 999px;
    background: var(--primary-dark);
    transition: transform 0.18s ease, opacity 0.18s ease;
  }

  .site-header.menu-open .menu-toggle span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }

  .site-header.menu-open .menu-toggle span:nth-child(2) {
    opacity: 0;
  }

  .site-header.menu-open .menu-toggle span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }

  .site-header .nav,
  .site-header .header-cta {
    display: none;
  }

  .site-header.menu-open .nav {
    order: 3;
    display: grid;
    width: 100%;
    gap: 0;
    overflow: visible;
    padding: 8px 0 0;
    border-top: 1px solid var(--line);
  }

  .site-header.menu-open .nav a {
    padding: 12px 0;
    border-bottom: 1px solid var(--line);
    font-size: 15px;
  }

  .site-header.menu-open .header-cta {
    order: 4;
    display: inline-flex;
    width: 100%;
    min-height: 40px;
    margin-top: 4px;
    font-size: 15px;
  }

  .home-hero {
    padding-top: 42px;
    padding-bottom: 64px;
  }

  .home-hero h1 {
    font-size: 34px;
    line-height: 1.12;
  }

  .home-hero .lead {
    font-size: 17px;
    line-height: 1.7;
  }

  .hero h1,
  .page-hero h1,
  .news-detail-hero h1 {
    font-size: 32px;
    line-height: 1.18;
  }
}

@media (max-width: 380px) {
  .home-hero h1 {
    font-size: 31px;
  }

  .home-hero .lead {
    font-size: 16px;
  }
}

/* spacious-polish-20260701 */
.hero h1,
.page-hero h1,
.rebate-hero h1,
.contact-hero h1,
.risk-hero h1,
.compare-hero h1,
.broker-detail-hero h1,
.home-hero h1,
.news-detail-hero h1 {
  letter-spacing: 0;
  text-wrap: balance;
}

.hero h1,
.page-hero h1 {
  line-height: 1.12;
}

.home-hero h1 {
  line-height: 1.1;
}

.rebate-hero h1,
.contact-hero h1,
.risk-hero h1,
.compare-hero h1,
.broker-detail-hero h1 {
  line-height: 1.14;
}

.home-hero .lead,
.hero .lead,
.page-hero p,
.rebate-hero p,
.contact-hero p,
.risk-hero p,
.compare-hero p,
.broker-detail-hero p,
.news-detail-content {
  line-height: 1.78;
}

.service-grid,
.broker-grid,
.home-service-band,
.home-steps,
.steps,
.explain-cards,
.detail-metrics,
.detail-steps,
.detail-table,
.admin-stats {
  gap: 24px;
}

.broker-card,
.service-grid article,
.home-service-band article,
.home-steps li,
.steps li,
.explain-cards article,
.detail-section,
.detail-aside,
.side-panel,
.contact-card,
.contact-form,
.news-detail-card {
  padding: clamp(24px, 2.8vw, 36px);
}

.home-section,
.section {
  padding-top: clamp(72px, 7vw, 104px);
  padding-bottom: clamp(72px, 7vw, 104px);
}

.compare-hero,
.rebate-hero,
.contact-hero,
.risk-hero,
.broker-detail-hero,
.news-detail-hero {
  padding-top: clamp(76px, 7vw, 108px);
  padding-bottom: clamp(62px, 6vw, 92px);
}

.compare-board,
.detail-layout,
.content-layout,
.contact-main,
.risk-board,
.news-detail-layout {
  padding-top: clamp(52px, 5vw, 76px);
  padding-bottom: clamp(72px, 7vw, 104px);
}

@media (max-width: 1180px) {
  .service-grid,
  .broker-grid,
  .home-service-band,
  .home-steps,
  .steps,
  .explain-cards,
  .detail-metrics,
  .detail-steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  body {
    line-height: 1.72;
  }

  .site-header {
    padding-top: 16px;
    padding-bottom: 16px;
  }

  .hero,
  .home-hero,
  .page-hero,
  .rebate-hero,
  .contact-hero,
  .risk-hero,
  .compare-hero,
  .broker-detail-hero,
  .news-detail-hero {
    padding-top: 56px;
    padding-bottom: 58px;
  }

  .home-section,
  .section,
  .home-service-band,
  .home-compare-cta,
  .rebate-explain,
  .rebate-columns,
  .contact-main,
  .contact-note,
  .risk-board,
  .risk-banner,
  .compare-board,
  .compare-risk,
  .detail-layout,
  .content-layout,
  .contact-grid,
  .table-wrap,
  .news-detail-layout,
  .footer {
    padding-left: 24px;
    padding-right: 24px;
  }

  .home-hero h1,
  .hero h1,
  .page-hero h1,
  .rebate-hero h1,
  .contact-hero h1,
  .risk-hero h1,
  .compare-hero h1,
  .broker-detail-hero h1,
  .news-detail-hero h1 {
    max-width: 11.5em;
    font-size: clamp(30px, 8.4vw, 34px);
    line-height: 1.18;
  }

  .home-hero .lead,
  .lead,
  .page-hero p,
  .rebate-hero p,
  .contact-hero p,
  .risk-hero p,
  .compare-hero p,
  .broker-detail-hero p {
    font-size: 16px;
    line-height: 1.82;
  }

  .eyebrow {
    margin-bottom: 10px;
  }

  .hero-actions,
  .stats {
    margin-top: 24px;
  }

  .home-hero-panel,
  .terminal-visual,
  .broker-card,
  .service-grid article,
  .home-service-band article,
  .home-steps li,
  .steps li,
  .explain-cards article,
  .side-panel,
  .contact-card,
  .contact-form,
  .news-detail-card,
  .detail-section,
  .detail-aside {
    padding: 22px;
  }

  .service-grid,
  .broker-grid,
  .home-service-band,
  .home-steps,
  .steps,
  .explain-cards,
  .form-row,
  .contact-note,
  .detail-metrics,
  .detail-table,
  .detail-steps,
  .admin-topbar,
  #formFields {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .home-section-head h2,
  .section-title h2,
  .home-compare-cta h2 {
    font-size: clamp(26px, 7vw, 32px);
    line-height: 1.22;
  }

  .news-section .news-list a,
  .news-list a {
    grid-template-columns: 1fr;
    gap: 6px;
    padding: 18px 20px;
  }

  .compare-board {
    padding-top: 42px;
  }

  .compare-row > div,
  .compare-head > div {
    padding: 16px 18px;
  }
}

@media (max-width: 390px) {
  .home-section,
  .section,
  .home-service-band,
  .home-compare-cta,
  .rebate-explain,
  .rebate-columns,
  .contact-main,
  .contact-note,
  .risk-board,
  .risk-banner,
  .compare-board,
  .compare-risk,
  .detail-layout,
  .content-layout,
  .contact-grid,
  .table-wrap,
  .news-detail-layout,
  .footer {
    padding-left: 20px;
    padding-right: 20px;
  }

  .home-hero h1,
  .hero h1,
  .page-hero h1,
  .rebate-hero h1,
  .contact-hero h1,
  .risk-hero h1,
  .compare-hero h1,
  .broker-detail-hero h1,
  .news-detail-hero h1 {
    max-width: 10.5em;
    font-size: 30px;
  }
}

/* headline-breathing-20260701 */
.home-hero h1 {
  font-size: clamp(38px, 5.4vw, 68px);
  line-height: 1.12;
}

.home-compare-cta h2,
.home-section-head h2,
.section-title h2 {
  line-height: 1.18;
  text-wrap: balance;
}

.compare-hero h1,
.broker-detail-hero h1 {
  font-size: clamp(34px, 4.6vw, 54px);
}

@media (max-width: 760px) {
  .home-compare-cta h2,
  .home-section-head h2,
  .section-title h2 {
    max-width: 12em;
    font-size: clamp(25px, 6.8vw, 30px);
    line-height: 1.26;
  }

  .home-hero h1,
  .hero h1,
  .page-hero h1,
  .rebate-hero h1,
  .contact-hero h1,
  .risk-hero h1,
  .compare-hero h1,
  .broker-detail-hero h1,
  .news-detail-hero h1 {
    font-size: clamp(29px, 7.8vw, 32px);
    line-height: 1.22;
  }
}

/* menu-icon-fix-20260701 */
@media (max-width: 760px) {
  .menu-toggle {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex: 0 0 44px;
    width: 44px;
    height: 40px;
    gap: 5px;
    padding: 0;
    border: 1px solid var(--line);
    border-radius: 6px;
    background: var(--white);
    appearance: none;
  }

  .menu-toggle span {
    display: block;
    flex: 0 0 2px;
    width: 20px;
    height: 2px;
    min-height: 2px;
    border-radius: 999px;
    background-color: var(--primary-dark);
  }

  .site-header.menu-open .menu-toggle span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .site-header.menu-open .menu-toggle span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }
}

/* menu-visible-900-20260701 */
@media (max-width: 900px) {
  .site-header {
    align-items: center;
    gap: 12px;
  }

  .brand {
    flex: 1;
    min-width: 0;
  }

  .menu-toggle {
    display: inline-flex;
    flex: 0 0 44px;
    width: 44px;
    height: 40px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    padding: 0;
    border: 0;
    border-radius: 8px;
    background: var(--primary);
    box-shadow: 0 8px 18px rgba(243, 49, 53, 0.18);
    appearance: none;
    cursor: pointer;
    z-index: 20;
  }

  .menu-toggle span {
    display: block;
    flex: 0 0 2px;
    width: 20px;
    height: 2px;
    min-height: 2px;
    border-radius: 999px;
    background: var(--white);
  }

  .site-header .nav,
  .site-header .header-cta {
    display: none;
  }

  .site-header.menu-open .nav {
    order: 3;
    display: grid;
    width: 100%;
    gap: 0;
    overflow: visible;
    padding: 10px 0 0;
    border-top: 1px solid var(--line);
  }

  .site-header.menu-open .nav a {
    padding: 12px 0;
    border-bottom: 1px solid var(--line);
    font-size: 15px;
  }

  .site-header.menu-open .header-cta {
    order: 4;
    display: inline-flex;
    width: 100%;
    min-height: 40px;
    margin-top: 4px;
    font-size: 15px;
  }

  .site-header.menu-open .menu-toggle span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .site-header.menu-open .menu-toggle span:nth-child(2) {
    opacity: 0;
  }

  .site-header.menu-open .menu-toggle span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }
}

/* large-heading-comfort-20260701 */
.home-hero h1 {
  max-width: 980px;
  font-size: clamp(40px, 5vw, 60px);
  line-height: 1.22;
  font-weight: 900;
}

.compare-hero h1,
.rebate-hero h1,
.contact-hero h1,
.risk-hero h1,
.broker-detail-hero h1,
.news-detail-hero h1 {
  max-width: 920px;
  font-size: clamp(34px, 4.1vw, 48px);
  line-height: 1.24;
  font-weight: 900;
}

.compare-hero {
  grid-template-columns: minmax(0, 1fr) 160px;
}

.contact-hero {
  grid-template-columns: minmax(0, 1fr) 320px;
}

.home-compare-cta h2,
.home-section-head h2,
.section-title h2 {
  font-size: clamp(30px, 3.4vw, 42px);
  line-height: 1.26;
}

@media (min-width: 1180px) {
  .home-hero h1 {
    max-width: 1040px;
  }

  .compare-hero h1,
  .rebate-hero h1,
  .contact-hero h1,
  .risk-hero h1,
  .broker-detail-hero h1,
  .news-detail-hero h1 {
    max-width: 980px;
  }
}

@media (max-width: 900px) {
  .home-hero h1,
  .compare-hero h1,
  .rebate-hero h1,
  .contact-hero h1,
  .risk-hero h1,
  .broker-detail-hero h1,
  .news-detail-hero h1 {
    max-width: 12em;
    font-size: clamp(29px, 7.4vw, 34px);
    line-height: 1.28;
  }

  .home-compare-cta h2,
  .home-section-head h2,
  .section-title h2 {
    font-size: clamp(25px, 6.4vw, 30px);
    line-height: 1.32;
  }
}

@media (max-width: 390px) {
  .home-hero h1,
  .compare-hero h1,
  .rebate-hero h1,
  .contact-hero h1,
  .risk-hero h1,
  .broker-detail-hero h1,
  .news-detail-hero h1 {
    font-size: 28px;
    line-height: 1.3;
  }
}

.contact-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.contact-hero-actions .btn {
  min-width: 160px;
}

@media (max-width: 760px) {
  .contact-hero-actions {
    margin-top: 26px;
  }

  .contact-hero-actions .btn {
    width: 100%;
  }
}

#contactSection {
  scroll-margin-top: 110px;
}

@media (max-width: 760px) {
  #contactSection {
    scroll-margin-top: 92px;
  }
}


