:root {
  --bg-main: #0150ba;
  --bg-card: #ffffff;
  --bg-soft: #fff7f2;
  --text-main: #3f2b21;
  --text-muted: #8e6a59;
  --line-soft: rgba(255, 255, 255, 0.22);
  --shadow-card: 0 14px 30px rgba(1, 80, 186, 0.18);
  --shadow-soft: 0 8px 18px rgba(1, 80, 186, 0.14);
  --radius-md: 18px;
  --theme-dark: #0150ba;
  --theme-light: #4e7dff;
  --theme-dark-rgb: 1, 80, 186;
  --theme-light-rgb: 78, 125, 255;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at top left, #ff9157 0, #ff9157 12%, transparent 13%),
    linear-gradient(180deg, #ff7b3b 0%, #ef4d10 28%, #f35a14 100%);
  color: var(--text-main);
  font-family: "Trebuchet MS", "PingFang SC", "Microsoft YaHei", sans-serif;
}

.mobile-page {
  max-width: 390px;
  min-height: 100vh;
  margin: 0 auto;
  padding: 0 12px 28px;
  position: relative;
  overflow: hidden;
}

.hero {
  position: relative;
  padding: 16px 8px 0;
  overflow: hidden;
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  background: radial-gradient(circle at 30% 30%, #ffd67d 0, #ffbd42 48%, #f48d16 100%);
  box-shadow: inset 0 0 0 3px rgba(255, 255, 255, 0.15);
  opacity: 0.85;
}

.hero::before {
  width: 90px;
  height: 90px;
  top: -18px;
  right: -24px;
  transform: rotate(-8deg);
}

.hero::after {
  width: 54px;
  height: 54px;
  left: -8px;
  transform: rotate(18deg);
}

.coin {
  position: absolute;
  border-radius: 999px;
  background: radial-gradient(circle at 35% 35%, #ffe18b 0, #ffc945 54%, #f38e19 100%);
  box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.12);
  opacity: 0.95;
}

.brand-row {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  margin-bottom: 12px;
  color: #fff7ed;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.brand-mark {
  width: 24px;
  height: 24px;
  margin-right: 8px;
  border-radius: 8px;
  background: linear-gradient(135deg, #fffad8 0%, #ffcf56 100%);
  box-shadow: 0 6px 14px rgba(118, 31, 0, 0.18);
  position: relative;
}

.brand-mark::before {
  content: "";
  position: absolute;
  inset: 5px;
  border-radius: 5px;
  background: linear-gradient(180deg, #ff8e3e 0%, #ff6f1f 100%);
}

.content-section {
  margin-top: 12px;
}

.section-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 130px;
  padding: 8px 20px;
  border-radius: 999px;
  background: linear-gradient(180deg, #ff7238 0%, #e64511 100%);
  color: #ffffff;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  box-shadow: 0 8px 18px rgba(139, 38, 0, 0.16);
  margin: 2px auto 10px;
}

.white-card {
  background: #ffffff;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
  padding: 14px;
}

.mini-tag {
  display: inline-flex;
  align-items: center;
  padding: 3px 8px;
  border-radius: 999px;
  background: #fff3e9;
  color: #e55317;
  font-size: 10px;
  font-weight: 700;
  margin-bottom: 8px;
}

.icon-blue {
  background: linear-gradient(180deg, #5ca8ff 0%, #2375e8 100%);
}

.icon-pink {
  background: linear-gradient(180deg, #ff84b5 0%, #ec4e84 100%);
}

.icon-yellow {
  background: linear-gradient(180deg, #ffc95b 0%, #f59600 100%);
}

.icon-red {
  background: linear-gradient(180deg, #ff8e7a 0%, #f1513f 100%);
}

.icon-green {
  background: linear-gradient(180deg, #7dd9b5 0%, #24a97b 100%);
}

.icon-purple {
  background: linear-gradient(180deg, #9c95ff 0%, #6755f4 100%);
}

.summary-strip {
  background: #fff3eb;
  border-radius: 15px;
  padding: 10px 12px;
  font-size: 12px;
  color: #7a5c4f;
}

.summary-strip strong {
  color: #e04610;
}

.footer-text {
  text-align: center;
  color: rgba(255, 241, 232, 0.88);
  font-size: 10px;
  line-height: 1.45;
  padding: 16px 12px 4px;
}

.channel-list {
  display: grid;
  gap: 10px;
}

.channel-row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px;
  border-radius: 16px;
  background: #fff9f6;
  border: 1px solid #ffd9c7;
  box-shadow: var(--shadow-soft);
}

.channel-icon {
  width: 40px;
  height: 40px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 14px;
  font-weight: 800;
  flex: 0 0 auto;
}

.channel-copy {
  flex: 1 1 auto;
  min-width: 0;
}

.channel-label {
  font-size: 12px;
  font-weight: 800;
  color: #4f392e;
  margin-bottom: 2px;
}

.channel-value {
  font-size: 12px;
  line-height: 1.45;
  color: #8e6a59;
  word-break: break-all;
  margin: 0;
}

.channel-action {
  border: 0;
  border-radius: 999px;
  padding: 8px 14px;
  background: linear-gradient(180deg, #ff7238 0%, #e64511 100%);
  color: #ffffff;
  font-size: 12px;
  font-weight: 700;
  box-shadow: 0 8px 18px rgba(139, 38, 0, 0.16);
  white-space: nowrap;
}

body.page-index .hero::after {
  top: 92px;
}

body.page-index,
body.page-context,
body.page-about {
  background: #183f8c;
}

body.page-index .mobile-page,
body.page-context .mobile-page,
body.page-about .mobile-page {
  background-color: #183f8c;
  background-image: url("../img/bg.png");
  background-repeat: no-repeat;
  background-position: top center;
  background-size: 100% auto;
}

body.page-index .coin-1 {
  width: 40px;
  height: 40px;
  top: 38px;
  left: 10px;
}

body.page-index .coin-2 {
  width: 28px;
  height: 28px;
  top: 126px;
  right: 18px;
}

body.page-index .coin-3 {
  width: 18px;
  height: 18px;
  top: 186px;
  left: 52px;
}

body.page-index .hero-copy {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #ffffff;
  padding: 6px 8px 4px;
}

body.page-index .brand-row,
body.page-context .brand-row,
body.page-about .brand-row {
  justify-content: space-between;
  gap: 12px;
}

body.page-index .brand-row-left,
body.page-context .brand-row-left,
body.page-about .brand-row-left {
  min-width: 0;
}

body.page-index .brand-logo,
body.page-context .brand-logo,
body.page-about .brand-logo {
  width: 50px;
  height: 50px;
  border-radius: 10px;
  margin-right: 10px;
  object-fit: cover;
  flex: 0 0 auto;
  box-shadow: 0 8px 18px rgba(var(--theme-dark-rgb), 0.18);
}

body.page-index .page-switcher,
body.page-context .page-switcher,
body.page-about .page-switcher {
  position: relative;
  display: inline-flex;
  align-items: center;
  flex: 0 0 122px;
}

body.page-index .page-switcher-select,
body.page-context .page-switcher-select,
body.page-about .page-switcher-select {
  width: 100%;
  appearance: none;
  -webkit-appearance: none;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
  color: #ffffff;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.2;
  padding: 10px 34px 10px 14px;
  backdrop-filter: blur(10px);
  cursor: pointer;
}

body.page-index .page-switcher-select:focus,
body.page-context .page-switcher-select:focus,
body.page-about .page-switcher-select:focus {
  outline: none;
  border-color: rgba(255, 255, 255, 0.5);
  box-shadow: 0 0 0 3px rgba(var(--theme-light-rgb), 0.22);
}

body.page-index .page-switcher-select option,
body.page-context .page-switcher-select option,
body.page-about .page-switcher-select option {
  color: #183f8c;
}

body.page-index .page-switcher-arrow,
body.page-context .page-switcher-arrow,
body.page-about .page-switcher-arrow {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(255, 255, 255, 0.92);
  font-size: 12px;
  line-height: 1;
  pointer-events: none;
}

body.page-index .hero-amount {
  font-family: "Arial Black", "DIN Alternate", sans-serif;
  font-size: 42px;
  line-height: 1;
  letter-spacing: 0.02em;
  margin-bottom: 8px;
  background: linear-gradient(180deg, #ffffff 0%, var(--theme-dark) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  text-shadow: 0 8px 16px rgba(var(--theme-dark-rgb), 0.18);
}

body.page-index .hero-subtitle {
  font-size: 13px;
  color: rgba(255, 248, 238, 0.92);
  margin-bottom: 18px;
}

body.page-index .feature-badges {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 16px;
}

body.page-index .feature-badge {
  width: 84px;
  text-align: center;
  color: #fff9f3;
  font-size: 11px;
  line-height: 1.2;
}

body.page-index .feature-badge .icon {
  width: 40px;
  height: 40px;
  margin: 0 auto 6px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-weight: 800;
  font-size: 15px;
  box-shadow: 0 8px 18px rgba(113, 24, 0, 0.14);
}

body.page-index .loan-card {
  position: relative;
  z-index: 2;
  background: rgba(255, 255, 255, 0.14);
  border-radius: 28px 28px 0 0;
  padding: 12px 10px 0;
  margin-top: 4px;
}

body.page-index .loan-form {
  background: #ffffff;
  border-radius: 18px;
  box-shadow: var(--shadow-card);
  overflow: hidden;
}

body.page-index .loan-form-header {
  background: linear-gradient(180deg, #ff5c2b 0%, #ea4110 100%);
  color: #fff7ef;
  text-align: center;
  padding: 11px 18px;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.04em;
}

body.page-index .loan-form-body {
  padding: 16px 14px 12px;
}

body.page-index .field-label {
  font-size: 11px;
  text-transform: uppercase;
  color: #b17f69;
  letter-spacing: 0.08em;
  margin-bottom: 8px;
}

body.page-index .selector-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  margin-bottom: 12px;
}

body.page-index .selector-pill {
  border: 1px solid #f2d5c2;
  border-radius: 14px;
  background: #fff9f6;
  color: #8e6856;
  text-align: center;
  font-size: 12px;
  font-weight: 700;
  padding: 10px 8px;
  transition: all 0.2s ease;
  cursor: pointer;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.45);
}

body.page-index .selector-pill.active {
  background: linear-gradient(180deg, #ffefdf 0%, #ffe0c8 100%);
  border-color: #ff9858;
  color: #f04a11;
  box-shadow: 0 8px 18px rgba(255, 129, 64, 0.24);
}

body.page-index .summary-strip {
  margin-bottom: 12px;
}

body.page-index .summary-strip strong {
  font-size: 14px;
}

body.page-index .loan-cta {
  border: 0;
  width: 100%;
  border-radius: 999px;
  background: linear-gradient(180deg, #7b7f84 0%, #53565b 100%);
  color: #ffffff;
  padding: 13px 18px;
  font-size: 15px;
  font-weight: 700;
  box-shadow: 0 10px 18px rgba(80, 84, 90, 0.25);
}

body.page-index .form-note {
  color: #b58a78;
  text-align: center;
  font-size: 11px;
  margin-top: 10px;
}

body.page-index .alert-bar {
  background: linear-gradient(180deg, #ff652e 0%, #df390b 100%);
  color: #ffe6da;
  text-align: center;
  font-size: 10px;
  line-height: 1.4;
  padding: 9px 12px;
}

body.page-index .info-copy {
  font-size: 12px;
  line-height: 1.58;
  color: #73584c;
}

body.page-index .info-copy strong {
  color: #ef4f10;
}

body.page-index .step-list {
  display: grid;
  gap: 10px;
}

body.page-index .step-card {
  background: #fff9f6;
  border: 2px solid #f06c34;
  border-radius: 16px;
  display: flex;
  align-items: center;
  padding: 12px;
  box-shadow: var(--shadow-soft);
}

body.page-index .step-index {
  width: 30px;
  height: 30px;
  margin-right: 12px;
  border-radius: 50%;
  background: linear-gradient(180deg, #ffb274 0%, #f45a1d 100%);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 800;
  flex: 0 0 auto;
}

body.page-index .step-card h3 {
  margin: 0 0 4px;
  font-size: 14px;
  color: #e64a12;
}

body.page-index .step-card p {
  margin: 0;
  color: #8e6a59;
  font-size: 11px;
  line-height: 1.45;
}

body.page-index .promo-app-card {
  position: relative;
  padding-top: 72px;
}

body.page-index .promo-app-badge {
  width: 122px;
  min-height: 122px;
  padding: 16px 12px 12px;
  border-radius: 20px;
  
  box-shadow: 0 18px 28px rgba(185, 61, 0, 0.22);
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
}

body.page-index .promo-app-symbol {
  width: 58px;
  height: 58px;
  margin-bottom: 10px;
  border: 5px solid #ffffff;
  border-radius: 18px;
  color: #ffffff;
  font-size: 30px;
  font-weight: 800;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.14);
}

body.page-index .promo-app-brand {
  color: #ffffff;
  font-size: 14px;
  font-weight: 800;
  line-height: 1;
}

body.page-index .promo-app-body {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, #fff7f2 100%);
  border-radius: 24px;
  box-shadow: var(--shadow-card);
  padding: 92px 26px 24px;
  text-align: center;
}

body.page-index .promo-app-title {
  margin: 0 0 18px;
  color: #26304f;
  font-size: 25px;
  font-weight: 800;
}

body.page-index .promo-app-subtitle {
  color: #ff6419;
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 20px;
}

body.page-index .promo-app-list {
  display: grid;
  gap: 12px;
  justify-items: center;
  margin-bottom: 24px;
}

body.page-index .promo-app-item {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #35405e;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.35;
  text-align: left;
}

body.page-index .promo-app-check {
  width: 20px;
  height: 20px;
  margin-right: 8px;
  border-radius: 50%;
  background: linear-gradient(180deg, #7ad36d 0%, #54bf49 100%);
  color: #ffffff;
  font-size: 12px;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}

body.page-index .promo-app-download {
  min-width: 238px;
  border: 0;
  border-radius: 14px;
  background: linear-gradient(180deg, #ff7a21 0%, #ff5b10 100%);
  color: #ffffff;
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 0.01em;
  padding: 15px 24px;
  box-shadow: 0 14px 24px rgba(221, 84, 13, 0.22);
}

body.page-index .metric-panel {
  background: linear-gradient(180deg, #ff5d2b 0%, #e13a0e 100%);
  border-radius: 18px;
  padding: 14px 10px 12px;
  box-shadow: var(--shadow-card);
}

body.page-index .metric-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

body.page-index .metric-box {
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid var(--line-soft);
  border-radius: 14px;
  padding: 10px 8px;
  text-align: center;
  color: white;
}

body.page-index .metric-box .icon {
  width: 34px;
  height: 34px;
  margin: 0 auto 6px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.95);
  color: #ef4e13;
  font-weight: 800;
}

body.page-index .metric-value {
  font-size: 12px;
  font-weight: 800;
  margin-bottom: 3px;
}

body.page-index .metric-label {
  font-size: 10px;
  color: rgba(255, 242, 234, 0.92);
  line-height: 1.35;
}

body.page-index .contact-card {
  background: white;
  border-radius: 18px;
  padding: 14px;
  box-shadow: var(--shadow-card);
}

body.page-index .contact-row {
  display: flex;
  align-items: center;
  padding: 9px 0;
  border-bottom: 1px solid #f3dfd3;
}

body.page-index .contact-row:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

body.page-index .contact-badge {
  width: 28px;
  height: 28px;
  border-radius: 9px;
  margin-right: 10px;
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 800;
  color: #ffffff;
}

body.page-index .contact-title {
  font-size: 12px;
  color: #967361;
  margin-bottom: 1px;
}

body.page-index .contact-value {
  font-size: 13px;
  font-weight: 700;
  color: #4f392e;
}

body.page-context .hero::after {
  top: 112px;
}

body.page-context .coin-1 {
  width: 38px;
  height: 38px;
  top: 74px;
  right: 16px;
}

body.page-context .coin-2 {
  width: 24px;
  height: 24px;
  top: 166px;
  left: 28px;
}

body.page-context .context-hero-card {
  position: relative;
  z-index: 2;
  overflow: hidden;
  border-radius: 24px;
  background: linear-gradient(160deg, #ff6c2d 0%, #e64811 100%);
  box-shadow: var(--shadow-card);
  padding: 18px 16px 18px;
  min-height: 196px;
}

body.page-context .context-hero-card::before,
body.page-context .context-hero-card::after {
  content: "";
  position: absolute;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.08);
  transform: rotate(14deg);
}

body.page-context .context-hero-card::before {
  width: 110px;
  height: 110px;
  top: -24px;
  right: -12px;
}

body.page-context .context-hero-card::after {
  width: 72px;
  height: 72px;
  bottom: 16px;
  right: 30px;
}

body.page-context .hero-mark {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  border: 3px solid rgba(255, 255, 255, 0.88);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  position: relative;
  z-index: 2;
}

body.page-context .hero-mark::before {
  content: "";
  width: 13px;
  height: 13px;
  border-radius: 3px;
  background: linear-gradient(180deg, #fff6cf 0%, #ffd86e 100%);
  transform: rotate(10deg);
}

body.page-context .hero-badge {
  display: inline-flex;
  align-items: center;
  padding: 8px 14px;
  border-radius: 16px;
  background: #ffffff;
  color: #e54810;
  font-size: 26px;
  font-weight: 800;
  line-height: 1.15;
  box-shadow: 0 10px 22px rgba(106, 25, 0, 0.18);
  position: relative;
  z-index: 2;
}

body.page-context .hero-subtitle {
  position: relative;
  z-index: 2;
  margin-top: 12px;
  color: rgba(255, 246, 240, 0.96);
  font-size: 12px;
  line-height: 1.5;
  max-width: 252px;
}

body.page-context .content-title {
  font-size: 20px;
  line-height: 1.25;
  color: #e34b11;
  font-weight: 800;
  margin-bottom: 8px;
}

body.page-context .content-copy {
  font-size: 12px;
  line-height: 1.6;
  color: #73584c;
  margin-bottom: 0;
}

body.page-context .soft-panel {
  margin-top: 12px;
  padding: 12px;
  border-radius: 16px;
  background: var(--bg-soft);
  border: 1px solid #ffd8c8;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.4);
}

body.page-context .notice-row {
  display: flex;
  align-items: flex-start;
  font-size: 12px;
  color: #8a6554;
  line-height: 1.45;
}

body.page-context .notice-row + .notice-row {
  margin-top: 8px;
}

body.page-context .notice-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: linear-gradient(180deg, #ff8d5a 0%, #eb4d16 100%);
  margin: 6px 8px 0 0;
  flex: 0 0 auto;
}

body.page-context .reason-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

body.page-context .reason-card {
  padding: 12px 8px;
  border-radius: 16px;
  background: #fff9f6;
  border: 1px solid #ffd9c7;
  text-align: center;
  box-shadow: var(--shadow-soft);
}

body.page-context .reason-icon {
  width: 42px;
  height: 42px;
  margin: 0 auto 8px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-weight: 800;
  font-size: 15px;
}

body.page-context .reason-name {
  font-size: 12px;
  font-weight: 800;
  color: #5d4236;
  margin-bottom: 3px;
}

body.page-context .reason-copy {
  font-size: 10px;
  line-height: 1.4;
  color: #9b7a69;
  margin: 0;
}

body.page-context .summary-strip {
  margin-top: 12px;
}

body.page-context .checklist {
  display: grid;
  gap: 10px;
}

body.page-context .check-item {
  display: flex;
  align-items: flex-start;
  padding: 12px;
  border-radius: 15px;
  background: #fff9f6;
  border: 1px solid #ffd9c7;
  cursor: pointer;
  transition: all 0.2s ease;
  box-shadow: var(--shadow-soft);
}

body.page-context .check-item.active {
  background: linear-gradient(180deg, #fff2e8 0%, #ffe6d5 100%);
  border-color: #ff965e;
  transform: translateY(-1px);
}

body.page-context .check-badge {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  margin-right: 10px;
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 12px;
  font-weight: 800;
  background: linear-gradient(180deg, #7dd9b5 0%, #24a97b 100%);
}

body.page-context .check-item.active .check-badge {
  background: linear-gradient(180deg, #ff8f62 0%, #ee4a14 100%);
}

body.page-context .check-content {
  font-size: 12px;
  line-height: 1.45;
  color: #5e4438;
  padding-top: 2px;
}

body.page-context .faq-accordion .card {
  border: 0;
  background: transparent;
  margin-bottom: 10px;
}

body.page-context .js-extra-faq {
  display: none;
}

body.page-context .faq-toggle {
  width: 100%;
  border: 0;
  border-radius: 16px;
  background: #ffffff;
  box-shadow: var(--shadow-card);
  color: #5d4236;
  font-size: 13px;
  font-weight: 700;
  text-align: left;
  padding: 14px 42px 14px 16px;
  position: relative;
}

body.page-context .faq-toggle::after {
  content: "+";
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: #df5618;
  font-size: 20px;
  line-height: 1;
}

body.page-context .faq-toggle[aria-expanded="true"]::after {
  content: "-";
}

body.page-context .faq-body {
  margin-top: -8px;
  padding: 16px 16px 14px;
  border-radius: 0 0 16px 16px;
  background: #fff8f4;
  color: #8e6a59;
  font-size: 12px;
  line-height: 1.55;
  box-shadow: var(--shadow-soft);
}

body.page-context .more-button {
  border: 0;
  width: 100%;
  border-radius: 16px;
  background: #ffffff;
  color: #df5618;
  padding: 14px 16px;
  font-size: 13px;
  font-weight: 700;
  box-shadow: var(--shadow-card);
}

body.page-about .hero::after {
  top: 108px;
}

body.page-about .coin-1 {
  width: 40px;
  height: 40px;
  top: 70px;
  right: 16px;
}

body.page-about .coin-2 {
  width: 18px;
  height: 18px;
  top: 188px;
  left: 42px;
}

body.page-about .status-row {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: rgba(255, 247, 237, 0.94);
  font-size: 12px;
  margin-bottom: 10px;
}

body.page-about .status-icons {
  display: flex;
  align-items: center;
  gap: 6px;
}

body.page-about .status-icon {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
}

body.page-about .status-bar {
  width: 14px;
  height: 8px;
  border-radius: 3px;
  border: 1px solid rgba(255, 255, 255, 0.9);
  position: relative;
}

body.page-about .status-bar::before {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.9);
}

body.page-about .notice-hero {
  position: relative;
  z-index: 2;
  overflow: hidden;
  border-radius: 24px;
  background: linear-gradient(160deg, #ff6c2d 0%, #e64811 100%);
  box-shadow: var(--shadow-card);
  padding: 16px 16px 18px;
  min-height: 188px;
}

body.page-about .notice-hero::before,
body.page-about .notice-hero::after {
  content: "";
  position: absolute;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.08);
  transform: rotate(14deg);
}

body.page-about .notice-hero::before {
  width: 118px;
  height: 118px;
  top: -30px;
  right: -12px;
}

body.page-about .notice-hero::after {
  width: 70px;
  height: 70px;
  bottom: 12px;
  right: 26px;
}

body.page-about .back-chip {
  width: 34px;
  height: 34px;
  border-radius: 11px;
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.24);
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  line-height: 1;
  margin-bottom: 18px;
  position: relative;
  z-index: 2;
}

body.page-about .notice-title {
  position: relative;
  z-index: 2;
  display: inline-block;
  padding: 10px 14px;
  border-radius: 18px;
  background: #ffffff;
  color: #e54910;
  font-size: 30px;
  font-weight: 800;
  line-height: 1.15;
  box-shadow: 0 10px 22px rgba(106, 25, 0, 0.18);
}

body.page-about .notice-subtitle {
  position: relative;
  z-index: 2;
  margin-top: 12px;
  color: rgba(255, 246, 240, 0.96);
  font-size: 12px;
  line-height: 1.5;
  max-width: 260px;
}

body.page-about .alert-card {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px;
  border-radius: 18px;
  background: #ffffff;
  box-shadow: var(--shadow-card);
}

body.page-about .alert-icon {
  width: 34px;
  height: 34px;
  border-radius: 12px;
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 16px;
  font-weight: 800;
  background: linear-gradient(180deg, #ffc95b 0%, #f59600 100%);
}

body.page-about .alert-title {
  font-size: 16px;
  font-weight: 800;
  color: #e34b11;
  margin-bottom: 6px;
}

body.page-about .alert-copy {
  font-size: 12px;
  line-height: 1.55;
  color: #6d5145;
  margin: 0;
}

body.page-about .rule-list {
  display: grid;
  gap: 10px;
}

body.page-about .rule-item {
  display: flex;
  align-items: flex-start;
  padding: 12px;
  border-radius: 16px;
  background: #fff9f6;
  border: 1px solid #ffd9c7;
  box-shadow: var(--shadow-soft);
}

body.page-about .rule-icon {
  width: 38px;
  height: 38px;
  margin-right: 10px;
  border-radius: 14px;
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 14px;
  font-weight: 800;
}

body.page-about .rule-title {
  font-size: 13px;
  font-weight: 800;
  color: #4f392e;
  margin-bottom: 4px;
}

body.page-about .rule-copy {
  font-size: 12px;
  line-height: 1.5;
  color: #8e6a59;
  margin: 0;
}

body.page-about .channel-panel {
  /* background: #ffffff; */
  border-radius: 18px;
  padding: 14px;
  box-shadow: var(--shadow-card);
  border: 2px solid rgba(237, 79, 16, 0.25);
}

body.page-about .panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}

body.page-about .panel-title {
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  border-radius: 14px;
  background: linear-gradient(180deg, #ff7238 0%, #e64511 100%);
  color: #ffffff;
  font-size: 16px;
  font-weight: 800;
  line-height: 1;
  box-shadow: 0 8px 18px rgba(139, 38, 0, 0.16);
}

body.page-about .panel-note {
  font-size: 11px;
  color: #a57c69;
}

body.page-about .summary-strip {
  margin-top: 12px;
}

body.page-about .cta-card {
  background: #ffffff;
  border-radius: 18px;
  padding: 12px;
  box-shadow: var(--shadow-card);
}

body.page-about .cta-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

body.page-about .cta-button {
  border-radius: 999px;
  padding: 12px 14px;
  font-size: 14px;
  font-weight: 700;
  border: 0;
}

body.page-about .cta-primary {
  background: linear-gradient(180deg, #ff7238 0%, #e64511 100%);
  color: #ffffff;
  box-shadow: 0 10px 18px rgba(139, 38, 0, 0.18);
}

body.page-about .cta-secondary {
  background: #fff7f2;
  color: #e44b10;
  border: 1px solid #ffc9ae;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.4);
}

@media (max-width: 340px) {
  body.page-index .hero-amount {
    font-size: 36px;
  }

  body.page-index .feature-badge {
    width: 76px;
  }

  body.page-index .brand-row,
  body.page-context .brand-row,
  body.page-about .brand-row {
    align-items: flex-start;
    flex-direction: column;
  }

  body.page-index .page-switcher,
  body.page-context .page-switcher,
  body.page-about .page-switcher {
    width: 100%;
    flex-basis: auto;
  }

  body.page-index .promo-app-badge {
    width: 110px;
    min-height: 110px;
  }

  body.page-index .promo-app-body {
    padding: 84px 18px 20px;
  }

  body.page-index .promo-app-title {
    font-size: 22px;
  }

  body.page-index .promo-app-download {
    min-width: 100%;
  }

  body.page-context .hero-badge {
    font-size: 22px;
  }

  body.page-context .reason-grid {
    grid-template-columns: 1fr;
  }

  body.page-context .channel-row,
  body.page-about .channel-row {
    align-items: flex-start;
    flex-wrap: wrap;
  }

  body.page-context .channel-action,
  body.page-about .channel-action {
    margin-left: 50px;
  }

  body.page-about .notice-title {
    font-size: 25px;
  }

  body.page-about .cta-row {
    grid-template-columns: 1fr;
  }
}

body {
  background:
    radial-gradient(circle at top left, rgba(var(--theme-light-rgb), 0.58) 0, rgba(var(--theme-light-rgb), 0.58) 12%, transparent 13%),
    linear-gradient(180deg, var(--theme-light) 0%, rgba(var(--theme-light-rgb), 0.92) 28%, var(--theme-dark) 100%);
}

.hero::before,
.hero::after,
.coin {
  background: radial-gradient(circle at 30% 30%, var(--theme-light) 0%, var(--theme-dark) 100%);
}

.brand-mark {
  background: linear-gradient(135deg, rgba(var(--theme-light-rgb), 0.9) 0%, var(--theme-light) 100%);
}

.brand-mark::before {
  background: linear-gradient(180deg, var(--theme-light) 0%, var(--theme-dark) 100%);
}

.section-chip,
body.page-index .loan-form-header,
body.page-index .alert-bar,
body.page-index .loan-cta,
body.page-index .metric-panel,
body.page-index .promo-app-badge,
body.page-index .promo-app-download,
body.page-context .context-hero-card,
body.page-about .notice-hero,
body.page-about .panel-title,
.channel-action,
body.page-about .cta-primary {
  background: linear-gradient(180deg, var(--theme-light) 0%, var(--theme-dark) 100%);
}

.icon-blue,
.icon-pink,
.icon-yellow,
.icon-red,
.icon-green,
.icon-purple,
body.page-index .promo-app-check,
body.page-index .step-index,
body.page-about .alert-icon,
body.page-context .check-badge {
  background: linear-gradient(180deg, var(--theme-light) 0%, var(--theme-dark) 100%);
}

body.page-index .selector-pill,
body.page-index .step-card,
body.page-context .reason-card,
body.page-context .check-item,
body.page-about .rule-item,
.channel-row {
  /* background: rgba(var(--theme-light-rgb), 0.06); */
  border-color: rgba(var(--theme-light-rgb), 0.28);
}

body.page-context .soft-panel,
body.page-index .summary-strip,
body.page-context .summary-strip,
body.page-about .summary-strip,
body.page-context .faq-body,
body.page-about .cta-secondary,
.mini-tag {
  background: rgba(var(--theme-light-rgb), 0.1);
}

body.page-context .soft-panel {
  border-color: rgba(var(--theme-light-rgb), 0.28);
}

body.page-index .selector-pill.active,
body.page-context .check-item.active {
  background: linear-gradient(180deg, rgba(var(--theme-light-rgb), 0.16) 0%, rgba(var(--theme-light-rgb), 0.28) 100%);
  border-color: rgba(var(--theme-light-rgb), 0.55);
  color: var(--theme-dark);
  box-shadow: 0 8px 18px rgba(var(--theme-dark-rgb), 0.16);
}

body.page-context .check-item.active .check-badge {
  background: linear-gradient(180deg, var(--theme-light) 0%, var(--theme-dark) 100%);
}

body.page-about .channel-panel {
  border-color: rgba(var(--theme-light-rgb), 0.42);
}

body.page-index .promo-app-body {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(var(--theme-light-rgb), 0.06) 100%);
}

body.page-index .promo-app-title,
body.page-index .promo-app-item,
body.page-index .metric-box .icon,
body.page-context .content-title,
body.page-context .hero-badge,
body.page-about .notice-title,
body.page-about .alert-title,
body.page-index .step-card h3,
.summary-strip strong,
.mini-tag,
body.page-context .more-button,
body.page-context .faq-toggle::after,
body.page-index .promo-app-subtitle,
body.page-about .cta-secondary {
  color: var(--theme-dark);
}

body.page-context .notice-dot {
  background: linear-gradient(180deg, var(--theme-light) 0%, var(--theme-dark) 100%);
}

body.page-context .more-button,
body.page-context .faq-toggle,
body.page-about .cta-secondary {
  border-color: rgba(var(--theme-light-rgb), 0.3);
}

body.page-about .cta-secondary,
body.page-context .more-button {
  box-shadow: inset 0 0 0 1px rgba(var(--theme-light-rgb), 0.14);
}

body.page-index .field-label,
body.page-about .panel-note {
  color: rgba(var(--theme-dark-rgb), 0.72);
}

body.page-index .info-copy strong {
  color: var(--theme-dark);
}
