:root {
  --color-ink: #10233f;
  --color-muted: #617086;
  --color-soft: #eef5ff;
  --color-line: #e6edf6;
  --color-bg: #f7fbff;
  --color-card: #ffffff;
  --color-blue: #1478e8;
  --color-blue-deep: #0d5ed0;
  --color-cyan: #14b8e7;
  --color-green: #18b77c;
  --color-amber: #f5a524;
  --color-violet: #7c5cff;
  --color-rose: #ec6a7b;
  --shadow-sm: 0 6px 18px rgba(22, 41, 72, 0.08);
  --shadow-md: 0 18px 50px rgba(23, 48, 86, 0.12);
  --radius: 8px;
  --shell: 1120px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--color-ink);
  background:
    linear-gradient(180deg, #ffffff 0%, #f8fbff 36%, #ffffff 100%);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

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

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

button,
input {
  font: inherit;
}

button {
  cursor: pointer;
}

.sr-only,
.skip-link {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link:focus {
  z-index: 1000;
  width: auto;
  height: auto;
  margin: 0;
  clip: auto;
  inset: 16px auto auto 16px;
  padding: 10px 14px;
  color: #ffffff;
  background: var(--color-ink);
  border-radius: var(--radius);
}

.section-shell {
  width: min(100% - 40px, var(--shell));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.9);
  border-bottom: 1px solid rgba(222, 231, 244, 0.7);
  backdrop-filter: blur(18px);
}

.market-ticker {
  overflow: hidden;
  color: #1c2f4a;
  background: rgba(246, 250, 255, 0.92);
  border-bottom: 1px solid rgba(222, 231, 244, 0.82);
}

.market-ticker__inner {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: 14px;
  min-height: 72px;
}

.market-ticker__label {
  flex: 0 0 auto;
  white-space: nowrap;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
}

.market-ticker__label {
  color: var(--color-blue);
  text-transform: uppercase;
}

.market-ticker__widget {
  position: relative;
  min-width: 0;
  height: 72px;
  overflow: hidden;
}

.market-ticker__widget .tradingview-widget-container__widget,
.market-ticker__widget iframe {
  display: block;
  width: 100%;
  height: 72px;
}

.market-ticker__loading {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  color: #6a7890;
  font-size: 13px;
  font-weight: 700;
}

.market-ticker.is-loaded .market-ticker__loading {
  display: none;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  min-height: 76px;
}

.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
}

.brand img {
  width: 150px;
  height: auto;
  object-fit: contain;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 22px;
  color: #1c2f4a;
  font-size: 14px;
  font-weight: 700;
}

.site-nav > a {
  position: relative;
  padding: 10px 0;
  color: #1c2f4a;
}

.site-nav > a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 4px;
  height: 2px;
  background: var(--color-blue);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.site-nav > a:hover::after,
.site-nav > a:focus-visible::after {
  transform: scaleX(1);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  background: #ffffff;
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}

.nav-toggle span:not(.sr-only) {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--color-ink);
  border-radius: 99px;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(380px, 1.05fr);
  gap: 56px;
  align-items: center;
  min-height: 610px;
  padding: 64px 0 46px;
}

.hero-copy {
  max-width: 560px;
}

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

.eyebrow.light {
  color: rgba(255, 255, 255, 0.78);
}

.hero h1 {
  margin: 0;
  max-width: 640px;
  font-size: 64px;
  line-height: 1;
  letter-spacing: 0;
}

.hero h1 span {
  display: block;
  color: var(--color-blue);
  white-space: nowrap;
}

.hero-lead {
  max-width: 500px;
  margin: 26px 0 30px;
  color: var(--color-muted);
  font-size: 18px;
}

.search-card {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 12px;
  width: min(100%, 520px);
  padding: 8px;
  background: #ffffff;
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
}

.search-icon {
  position: relative;
  width: 42px;
  height: 42px;
}

.search-icon::before {
  content: "";
  position: absolute;
  top: 12px;
  left: 12px;
  width: 14px;
  height: 14px;
  border: 2px solid #9ca9ba;
  border-radius: 50%;
}

.search-icon::after {
  content: "";
  position: absolute;
  top: 27px;
  left: 26px;
  width: 10px;
  height: 2px;
  background: #9ca9ba;
  border-radius: 999px;
  transform: rotate(45deg);
}

.search-card input {
  min-width: 0;
  height: 48px;
  color: var(--color-ink);
  background: transparent;
  border: 0;
  outline: 0;
}

.search-card input::placeholder {
  color: #aab5c4;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: var(--radius);
  font-weight: 800;
  line-height: 1.15;
  text-align: center;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
}

.button-primary {
  color: #ffffff;
  background: var(--color-blue);
  border: 1px solid var(--color-blue);
  box-shadow: 0 10px 24px rgba(20, 120, 232, 0.24);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: var(--color-blue-deep);
}

.button-light {
  color: var(--color-blue);
  background: #ffffff;
  border: 1px solid #ffffff;
}

.button-ghost {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.35);
}

.trust-list {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 32px;
  padding: 0;
  margin: 34px 0 0;
  list-style: none;
  color: #33445e;
  font-size: 14px;
  font-weight: 700;
}

.trust-list li {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.trust-icon {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  color: var(--color-blue);
  --icon-color: var(--color-blue);
  --icon-soft: #dff0ff;
  background: #eaf4ff;
  border: 1px solid #c9e3ff;
  border-radius: 50%;
}

.trust-icon svg {
  width: 15px;
  height: 15px;
}

.trust-icon.shield::before {
  content: "";
  position: absolute;
  inset: 5px 6px 6px;
  border: 2px solid currentColor;
  border-top-width: 3px;
  border-radius: 5px 5px 7px 7px;
  clip-path: polygon(50% 0, 100% 18%, 86% 82%, 50% 100%, 14% 82%, 0 18%);
}

.trust-icon.refresh::before {
  content: "";
  position: absolute;
  inset: 5px;
  border: 2px solid currentColor;
  border-left-color: transparent;
  border-radius: 50%;
}

.trust-icon.refresh::after {
  content: "";
  position: absolute;
  top: 3px;
  right: 4px;
  width: 6px;
  height: 6px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  transform: rotate(10deg);
}

.trust-icon.savings::before {
  content: "";
  position: absolute;
  left: 5px;
  right: 5px;
  bottom: 5px;
  height: 8px;
  border: 2px solid currentColor;
  border-radius: 7px;
}

.trust-icon.savings::after {
  content: "";
  position: absolute;
  top: 5px;
  left: 8px;
  width: 6px;
  height: 4px;
  border-top: 2px solid currentColor;
  border-radius: 50%;
}

.icon-line {
  fill: none;
  stroke: var(--icon-color, currentColor);
  stroke-width: 2.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.icon-soft-fill {
  fill: var(--icon-soft, #e7f3ff);
}

.icon-bg {
  fill: var(--icon-bg, #eef6ff);
}

.icon-dot {
  fill: var(--icon-color, currentColor);
}

.hero-visual {
  min-width: 0;
}

.hero-image {
  display: block;
  width: 100%;
  height: auto;
  border-radius: var(--radius);
  filter: drop-shadow(0 24px 45px rgba(18, 38, 68, 0.13));
}

.visual-stage {
  position: relative;
  min-height: 480px;
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, #f3f8ff 0%, #ffffff 44%, #e8f4ff 100%);
  overflow: hidden;
}

.visual-stage::before {
  content: "";
  position: absolute;
  inset: 38px;
  border: 1px solid rgba(20, 120, 232, 0.08);
  border-radius: var(--radius);
}

.phone {
  position: absolute;
  left: 43%;
  top: 44px;
  width: 206px;
  padding: 12px;
  background: #0a1321;
  border-radius: 34px;
  box-shadow: 0 24px 45px rgba(18, 38, 68, 0.22);
  transform: rotate(-5deg);
}

.phone-top {
  position: absolute;
  top: 14px;
  left: 50%;
  width: 66px;
  height: 18px;
  background: #07101d;
  border-radius: 99px;
  transform: translateX(-50%);
  z-index: 2;
}

.phone-screen {
  min-height: 380px;
  padding: 44px 18px 18px;
  background: #ffffff;
  border-radius: 24px;
}

.phone-screen .muted,
.rate-card span {
  display: block;
  color: var(--color-muted);
  font-size: 12px;
  font-weight: 700;
}

.phone-screen strong {
  display: block;
  margin-top: 4px;
  font-size: 24px;
  line-height: 1.1;
}

.gain {
  display: inline-block;
  margin-top: 4px;
  color: var(--color-green);
  font-weight: 800;
}

.sparkline {
  display: flex;
  align-items: end;
  gap: 7px;
  height: 72px;
  margin: 18px 0 20px;
  padding: 9px 0 0;
  border-bottom: 2px solid #e6edf6;
}

.sparkline i {
  display: block;
  width: 3px;
  background: var(--color-blue);
  border-radius: 999px;
}

.sparkline i:nth-child(1) { height: 18px; }
.sparkline i:nth-child(2) { height: 28px; }
.sparkline i:nth-child(3) { height: 22px; }
.sparkline i:nth-child(4) { height: 38px; }
.sparkline i:nth-child(5) { height: 34px; }
.sparkline i:nth-child(6) { height: 47px; }
.sparkline i:nth-child(7) { height: 56px; }

.portfolio-list {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 0;
  list-style: none;
  font-size: 12px;
}

.portfolio-list li {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 8px;
}

.portfolio-list b {
  font-weight: 800;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.dot.green { background: var(--color-green); }
.dot.blue { background: var(--color-blue); }
.dot.orange { background: var(--color-amber); }
.dot.slate { background: #5f6e82; }

.bank-card {
  position: absolute;
  left: 14%;
  top: 168px;
  width: 164px;
  height: 104px;
  padding: 18px;
  color: #ffffff;
  background:
    linear-gradient(135deg, #15243e 0%, #253c62 52%, #0b1528 100%);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  transform: rotate(-17deg);
}

.bank-card span {
  display: block;
  width: 34px;
  height: 24px;
  margin-bottom: 14px;
  background: linear-gradient(135deg, #e8d9a8, #a48645);
  border-radius: 5px;
}

.bank-card strong,
.bank-card small {
  display: block;
}

.bank-card small {
  color: rgba(255, 255, 255, 0.7);
}

.rate-card {
  position: absolute;
  top: 126px;
  right: 16px;
  width: 170px;
  padding: 18px;
  background: #ffffff;
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
}

.rate-card strong {
  display: block;
  margin-top: 4px;
  font-size: 29px;
  line-height: 1.1;
}

.rate-card a {
  display: inline-block;
  margin-top: 12px;
  color: var(--color-blue);
  font-size: 13px;
  font-weight: 800;
}

.pie {
  position: absolute;
  right: 58px;
  bottom: 54px;
  width: 138px;
  height: 138px;
  background: conic-gradient(var(--color-blue) 0 60%, #69b7ff 60% 78%, #d5eaff 78% 100%);
  border: 9px solid #eef6ff;
  border-radius: 50%;
  box-shadow: 0 20px 32px rgba(20, 120, 232, 0.2);
}

.pie span {
  position: absolute;
  right: -8px;
  bottom: 36px;
  width: 68px;
  height: 68px;
  background: #f7fbff;
  border-left: 9px solid #eef6ff;
  transform: rotate(42deg);
  transform-origin: 0 100%;
}

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

.section-heading h2,
.center-heading h2 {
  margin: 0;
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.18;
  letter-spacing: 0;
}

.text-link,
.card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--color-blue);
  font-size: 14px;
  font-weight: 800;
}

.text-link::after,
.card-link::after {
  content: "";
  width: 8px;
  height: 8px;
  border-right: 2px solid currentColor;
  border-top: 2px solid currentColor;
  transform: rotate(45deg);
}

.categories,
.popular,
.benefits,
.articles {
  padding: 42px 0;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(120px, 1fr));
  gap: 12px;
}

.category-card {
  display: grid;
  place-items: center;
  min-height: 106px;
  padding: 14px 10px;
  text-align: center;
  background: #ffffff;
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.category-card:hover,
.category-card:focus-visible {
  border-color: #c7ddf6;
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.category-card strong {
  margin-top: 10px;
  font-size: 13px;
}

.category-icon {
  display: block;
  width: 48px;
  height: 48px;
  overflow: visible;
}

.category-icon,
.benefit-icon {
  --icon-bg: #edf6ff;
  --icon-soft: #dff0ff;
  --icon-color: var(--color-blue);
}

.icon-green {
  --icon-bg: #eafaf3;
  --icon-soft: #cef5e5;
  --icon-color: #13a879;
}

.icon-amber {
  --icon-bg: #fff5df;
  --icon-soft: #ffd98b;
  --icon-color: #ef9800;
}

.icon-blue {
  --icon-bg: #eaf4ff;
  --icon-soft: #cfe7ff;
  --icon-color: #1478e8;
}

.icon-brown {
  --icon-bg: #f8f1ea;
  --icon-soft: #e3b581;
  --icon-color: #8b5726;
}

.icon-navy {
  --icon-bg: #edf3fb;
  --icon-soft: #d9e7f5;
  --icon-color: #24324a;
}

.icon-slate {
  --icon-bg: #f0f4f8;
  --icon-soft: #e2e9f1;
  --icon-color: #7f8ea3;
}

.icon-cyan {
  --icon-bg: #e9faff;
  --icon-soft: #c9f2ff;
  --icon-color: #14a6d7;
}

.icon-violet {
  --icon-bg: #f0edff;
  --icon-soft: #ded7ff;
  --icon-color: #7657e8;
}

.chart-up::before,
.bars::before,
.coin::before,
.piggy::before,
.card::before,
.wallet::before,
.bottle::before,
.ball::before,
.dots::before {
  content: "";
  position: absolute;
  inset: 0;
}

.chart-up::before {
  border-left: 4px solid var(--color-green);
  border-top: 4px solid var(--color-green);
  transform: rotate(135deg) translate(-4px, -10px);
}

.chart-up::after {
  content: "";
  position: absolute;
  right: 2px;
  top: 7px;
  width: 9px;
  height: 9px;
  border-right: 4px solid var(--color-green);
  border-top: 4px solid var(--color-green);
  transform: rotate(45deg);
}

.bars {
  display: flex;
  align-items: end;
  justify-content: center;
  gap: 4px;
}

.bars::before,
.bars::after {
  content: "";
  position: static;
  inset: auto;
  display: block;
  width: 6px;
  border-radius: 999px;
  background: var(--color-cyan);
}

.bars::before { height: 18px; }
.bars::after { height: 30px; }

.bars span {
  display: none;
}

.coin::before {
  background: var(--color-amber);
  border-radius: 50%;
  box-shadow: inset 0 0 0 5px rgba(255, 255, 255, 0.42);
}

.coin::after {
  content: "B";
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: #ffffff;
  font-weight: 900;
}

.piggy::before {
  top: 10px;
  height: 20px;
  background: #ff9ab0;
  border-radius: 18px 18px 14px 14px;
}

.piggy::after {
  content: "";
  position: absolute;
  top: 4px;
  right: 7px;
  width: 12px;
  height: 12px;
  background: #ff9ab0;
  transform: rotate(45deg);
}

.card::before,
.wallet::before {
  top: 8px;
  height: 22px;
  background: linear-gradient(135deg, #5fc4ff, #1478e8);
  border-radius: 6px;
}

.wallet::before {
  background: linear-gradient(135deg, #9b7bff, #6648e8);
}

.card::after,
.wallet::after {
  content: "";
  position: absolute;
  left: 6px;
  right: 6px;
  top: 17px;
  height: 3px;
  background: rgba(255, 255, 255, 0.76);
  border-radius: 99px;
}

.bottle::before {
  left: 12px;
  top: 4px;
  width: 12px;
  height: 29px;
  background: linear-gradient(180deg, #d7a45d, #7a461e);
  border-radius: 8px 8px 5px 5px;
}

.bottle::after {
  content: "";
  position: absolute;
  left: 15px;
  top: 0;
  width: 6px;
  height: 9px;
  background: #7a461e;
  border-radius: 3px 3px 0 0;
}

.ball::before {
  background: #f2f5f9;
  border: 3px solid #222b3a;
  border-radius: 50%;
}

.ball::after {
  content: "";
  position: absolute;
  left: 13px;
  top: 10px;
  width: 10px;
  height: 10px;
  background: #222b3a;
  clip-path: polygon(50% 0, 100% 38%, 82% 100%, 18% 100%, 0 38%);
}

.dots::before {
  top: 16px;
  left: 5px;
  width: 6px;
  height: 6px;
  background: #9aa6b7;
  border-radius: 50%;
  box-shadow: 12px 0 0 #9aa6b7, 24px 0 0 #9aa6b7;
}

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

.comparison-card {
  position: relative;
  min-height: 220px;
  padding: 24px;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}

.comparison-content {
  position: relative;
  z-index: 2;
  max-width: 70%;
}

.comparison-card h3,
.benefit-card h3,
.article-card h3 {
  margin: 12px 0 8px;
  font-size: 22px;
  line-height: 1.22;
  letter-spacing: 0;
}

.comparison-card p,
.benefit-card p,
.article-card p {
  margin: 0;
  color: var(--color-muted);
}

.badge {
  display: inline-flex;
  align-items: center;
  padding: 5px 9px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
}

.badge-green {
  color: #087a4e;
  background: #ddf8ed;
}

.badge-violet {
  color: #5034d1;
  background: #eeeaff;
}

.badge-blue {
  color: #0960bd;
  background: #e6f2ff;
}

.mini-chart {
  position: absolute;
  right: 20px;
  bottom: 24px;
  width: 132px;
  height: 118px;
  opacity: 0.95;
}

.mini-chart::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(20, 120, 232, 0.14), rgba(20, 120, 232, 0));
  clip-path: polygon(0 88%, 16% 70%, 28% 76%, 41% 43%, 54% 60%, 66% 32%, 80% 39%, 100% 12%, 100% 100%, 0 100%);
}

.mini-chart::after {
  content: "";
  position: absolute;
  inset: 12px 0 22px;
  border-top: 4px solid var(--color-blue);
  border-right: 4px solid var(--color-blue);
  clip-path: polygon(0 88%, 16% 70%, 28% 76%, 41% 43%, 54% 60%, 66% 32%, 80% 39%, 100% 12%, 100% 22%, 80% 49%, 66% 42%, 54% 70%, 41% 53%, 28% 86%, 16% 80%, 0 98%);
}

.green-chart::before {
  background: linear-gradient(180deg, rgba(24, 183, 124, 0.16), rgba(24, 183, 124, 0));
}

.green-chart::after {
  border-color: var(--color-green);
}

.amber-chart::before {
  background: linear-gradient(180deg, rgba(245, 165, 36, 0.18), rgba(245, 165, 36, 0));
}

.amber-chart::after {
  border-color: var(--color-amber);
}

.center-heading {
  max-width: 680px;
  margin: 0 auto 22px;
  text-align: center;
}

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

.benefit-card {
  min-height: 148px;
  padding: 22px;
  background: #ffffff;
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}

.benefit-card h3 {
  font-size: 16px;
}

.benefit-card p {
  font-size: 14px;
}

.benefit-icon {
  position: relative;
  display: block;
  width: 44px;
  height: 44px;
  background: #eaf4ff;
  border-radius: 50%;
}

.benefit-icon::before,
.benefit-icon::after {
  content: "";
  position: absolute;
}

.benefit-icon.target::before {
  inset: 9px;
  border: 3px solid var(--color-blue);
  border-radius: 50%;
}

.benefit-icon.target::after {
  inset: 17px;
  background: var(--color-blue);
  border-radius: 50%;
}

.benefit-icon.sync::before {
  inset: 10px;
  border: 3px solid var(--color-cyan);
  border-left-color: transparent;
  border-radius: 50%;
}

.benefit-icon.sync::after {
  top: 8px;
  right: 8px;
  width: 9px;
  height: 9px;
  border-top: 3px solid var(--color-cyan);
  border-right: 3px solid var(--color-cyan);
}

.benefit-icon.verified::before {
  inset: 9px 11px 8px;
  border: 3px solid var(--color-blue);
  clip-path: polygon(50% 0, 100% 18%, 86% 78%, 50% 100%, 14% 78%, 0 18%);
}

.benefit-icon.verified::after {
  left: 17px;
  top: 20px;
  width: 10px;
  height: 6px;
  border-left: 3px solid var(--color-green);
  border-bottom: 3px solid var(--color-green);
  transform: rotate(-45deg);
}

.benefit-icon.clock::before {
  inset: 9px;
  border: 3px solid var(--color-blue);
  border-radius: 50%;
}

.benefit-icon.clock::after {
  left: 22px;
  top: 14px;
  width: 8px;
  height: 12px;
  border-left: 3px solid var(--color-blue);
  border-bottom: 3px solid var(--color-blue);
}

.benefit-icon {
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  background: transparent;
  border-radius: 0;
}

.benefit-icon svg {
  width: 56px;
  height: 56px;
}

.benefit-icon::before,
.benefit-icon::after {
  content: none;
  display: none;
}

.cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.78fr);
  gap: 34px;
  align-items: center;
  margin-top: 42px;
  margin-bottom: 42px;
  padding: 52px 44px;
  color: #ffffff;
  background:
    linear-gradient(135deg, #0868e8 0%, #1478e8 48%, #19a3ff 100%);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 26px 60px rgba(20, 120, 232, 0.28);
}

.cta h2 {
  margin: 0;
  max-width: 560px;
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.12;
}

.cta p {
  max-width: 520px;
  margin: 16px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 18px;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.cta-panel {
  justify-self: end;
  width: min(100%, 520px);
}

.broker-logo-image {
  width: 100%;
  height: auto;
  display: block;
  background: #ffffff;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
}

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

.article-card {
  overflow: hidden;
  background: #ffffff;
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.article-card:hover,
.article-card:focus-within {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.article-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.article-card div {
  padding: 18px;
}

.article-card span {
  color: var(--color-blue);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.article-card h3 {
  margin-top: 7px;
  font-size: 18px;
}

.article-card h3 a:hover,
.article-card h3 a:focus-visible {
  color: var(--color-blue);
}

.article-card p {
  font-size: 14px;
}

.category-page {
  background:
    linear-gradient(180deg, #ffffff 0, #f5faff 560px, #ffffff 100%),
    #ffffff;
}

.category-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.72fr);
  gap: 44px;
  align-items: center;
  padding: 70px 0 48px;
}

.category-hero h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(44px, 6vw, 74px);
  line-height: 0.99;
  letter-spacing: 0;
}

.category-lead {
  max-width: 680px;
  margin: 24px 0 0;
  color: var(--color-muted);
  font-size: 19px;
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  margin-bottom: 18px;
  color: var(--color-muted);
  font-size: 14px;
}

.breadcrumbs a {
  color: var(--color-blue);
  font-weight: 800;
}

.breadcrumbs span::before {
  content: "/";
  margin-right: 8px;
  color: #a7b3c4;
}

.category-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.category-meta li {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 8px 13px;
  color: #31445f;
  background: #ffffff;
  border: 1px solid var(--color-line);
  border-radius: 999px;
  box-shadow: var(--shadow-sm);
  font-size: 14px;
  font-weight: 800;
}

.category-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.button-secondary {
  color: var(--color-ink);
  background: #ffffff;
  border: 1px solid var(--color-line);
  box-shadow: var(--shadow-sm);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  color: var(--color-blue);
  box-shadow: var(--shadow-md);
}

.category-visual-card {
  overflow: hidden;
  background: #ffffff;
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
}

.category-visual-card img {
  width: 100%;
  aspect-ratio: 1198 / 627;
  object-fit: cover;
}

.category-visual-body {
  padding: 22px;
}

.category-visual-body h2 {
  margin: 0 0 8px;
  font-size: 24px;
}

.category-visual-body p {
  margin: 0;
  color: var(--color-muted);
}

.market-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--color-line);
  border-top: 1px solid var(--color-line);
}

.market-strip div {
  padding: 16px 18px;
  background: #ffffff;
}

.market-strip span {
  display: block;
  color: #6b7a90;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.market-strip strong {
  display: block;
  margin-top: 4px;
  color: var(--color-ink);
  font-size: 18px;
}

.featured-articles,
.archive-section,
.topic-paths,
.category-risk {
  padding: 42px 0;
}

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

.feature-card {
  display: grid;
  overflow: hidden;
  min-height: 100%;
  background: #ffffff;
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.feature-card:hover,
.feature-card:focus-within {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.feature-card img {
  width: 100%;
  aspect-ratio: 16 / 9;
  box-sizing: border-box;
  padding: 14px;
  background: linear-gradient(180deg, #ffffff 0%, #f6fbff 100%);
  object-fit: contain;
}

.feature-card div {
  display: grid;
  gap: 10px;
  padding: 20px;
}

.feature-card span,
.archive-card span {
  color: var(--color-blue);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.feature-card h3,
.archive-card h3 {
  margin: 0;
  font-size: 20px;
  line-height: 1.24;
}

.feature-card p,
.archive-card p {
  margin: 0;
  color: var(--color-muted);
  font-size: 15px;
}

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

.topic-card {
  display: grid;
  gap: 10px;
  min-height: 142px;
  padding: 20px;
  background: #ffffff;
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}

.topic-card span {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  color: var(--icon-color, var(--color-blue));
  background: var(--icon-bg, #eaf4ff);
  border-radius: var(--radius);
  font-size: 18px;
  font-weight: 900;
}

.topic-card svg {
  width: 22px;
  height: 22px;
}

.topic-card h3 {
  margin: 0;
  font-size: 18px;
}

.topic-card p {
  margin: 0;
  color: var(--color-muted);
  font-size: 14px;
}

.archive-toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}

.archive-count {
  color: var(--color-muted);
  font-size: 14px;
  font-weight: 800;
}

.archive-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.archive-pills span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 7px 12px;
  color: #31445f;
  background: #ffffff;
  border: 1px solid var(--color-line);
  border-radius: 999px;
  box-shadow: var(--shadow-sm);
  font-size: 13px;
  font-weight: 800;
}

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

.archive-card {
  display: grid;
  grid-template-rows: auto 1fr;
  overflow: hidden;
  min-height: 100%;
  background: #ffffff;
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.archive-card:hover,
.archive-card:focus-within {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.archive-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  box-sizing: border-box;
  padding: 12px;
  background: linear-gradient(180deg, #ffffff 0%, #f7fbff 100%);
  object-fit: contain;
}

.archive-card-body {
  display: grid;
  grid-template-rows: auto auto 1fr auto;
  gap: 10px;
  padding: 18px;
}

.archive-card .card-link {
  align-self: end;
  margin-top: 4px;
}

.risk-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.45fr);
  gap: 28px;
  align-items: center;
  padding: 30px;
  color: #ffffff;
  background: linear-gradient(135deg, #10233f 0%, #174a83 100%);
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
}

.risk-panel h2 {
  margin: 0 0 10px;
  font-size: clamp(24px, 3vw, 34px);
}

.risk-panel p {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
}

.risk-panel ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.risk-panel li {
  padding: 12px 14px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  font-weight: 800;
}

.contact-panel-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(300px, 0.75fr);
  gap: 24px;
  align-items: start;
  padding: 34px 0;
}

.contact-card {
  background: #ffffff;
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  padding: 28px;
}

.contact-card h2 {
  margin: 0 0 12px;
  font-size: clamp(24px, 3vw, 32px);
  line-height: 1.16;
  letter-spacing: 0;
}

.contact-card > p {
  margin: 0;
  color: var(--color-muted);
}

.contact-list {
  display: grid;
  gap: 12px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.contact-list li {
  display: grid;
  gap: 4px;
  padding: 16px;
  background: linear-gradient(180deg, #ffffff 0%, #f7fbff 100%);
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
}

.contact-label {
  color: var(--color-blue);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.contact-value {
  color: var(--color-ink);
  font-size: 18px;
  font-weight: 800;
  line-height: 1.35;
}

.contact-value a {
  color: var(--color-ink);
}

.contact-value a:hover,
.contact-value a:focus-visible {
  color: var(--color-blue);
}

.company-lines {
  display: grid;
  gap: 12px;
  margin: 22px 0 0;
}

.company-line {
  padding-bottom: 12px;
  border-bottom: 1px solid var(--color-line);
}

.company-line:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.company-line span {
  display: block;
  color: var(--color-muted);
  font-size: 13px;
  font-weight: 800;
}

.company-line strong {
  display: block;
  margin-top: 4px;
  color: var(--color-ink);
  line-height: 1.45;
}

.contact-note {
  margin-top: 18px;
  padding: 14px 16px;
  color: var(--color-muted);
  background: #f8fbff;
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
  font-size: 14px;
}

.recommendations-section {
  padding: 34px 0;
}

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

.recommendation-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.recommendation-card:hover,
.recommendation-card:focus-within {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.recommendation-card img {
  width: 100%;
  aspect-ratio: 16 / 9;
  box-sizing: border-box;
  padding: 16px;
  background: linear-gradient(180deg, #ffffff 0%, #f7fbff 100%);
  object-fit: contain;
}

.recommendation-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 12px;
  padding: 20px;
}

.recommendation-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.recommendation-meta span,
.status-pill {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  color: var(--color-blue);
  background: #eef6ff;
  border: 1px solid #dbeaff;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
}

.status-warning {
  color: #8b5a00;
  background: #fff6df;
  border-color: #ffe1a3;
}

.status-danger {
  color: #9d2832;
  background: #fff1f3;
  border-color: #ffd2d8;
}

.recommendation-body h3 {
  margin: 0;
  font-size: 24px;
  line-height: 1.18;
}

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

.recommendation-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: auto;
  padding-top: 6px;
}

.recommendation-actions .button {
  min-height: 42px;
  padding: 0 16px;
  font-size: 14px;
}

.legal-summary-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  padding: 34px 0 10px;
}

.legal-summary-card {
  min-height: 100%;
  padding: 24px;
  background: #ffffff;
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}

.legal-summary-card h2 {
  margin: 0 0 10px;
  font-size: 22px;
  line-height: 1.18;
  letter-spacing: 0;
}

.legal-summary-card p {
  margin: 0;
  color: var(--color-muted);
}

.legal-layout {
  display: grid;
  grid-template-columns: minmax(220px, 0.34fr) minmax(0, 1fr);
  gap: 24px;
  align-items: start;
  padding: 34px 0;
}

.legal-toc {
  position: sticky;
  top: 96px;
  padding: 22px;
  background: #ffffff;
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}

.legal-toc h2 {
  margin: 0 0 14px;
  font-size: 14px;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: 0;
}

.legal-toc nav {
  display: grid;
  gap: 8px;
}

.legal-toc a {
  display: block;
  padding: 10px 12px;
  color: var(--color-muted);
  background: #f8fbff;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 800;
}

.legal-toc a:hover,
.legal-toc a:focus-visible {
  color: var(--color-blue);
  border-color: #dbeaff;
}

.legal-document {
  padding: 34px;
  background: #ffffff;
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}

.legal-section + .legal-section {
  margin-top: 32px;
  padding-top: 28px;
  border-top: 1px solid var(--color-line);
}

.legal-section h2 {
  margin: 0 0 12px;
  font-size: clamp(24px, 3vw, 32px);
  line-height: 1.16;
  letter-spacing: 0;
}

.legal-section p {
  margin: 0 0 14px;
  color: var(--color-muted);
}

.legal-section p:last-child {
  margin-bottom: 0;
}

.legal-section ul {
  display: grid;
  gap: 10px;
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
}

.legal-section li {
  padding: 12px 14px;
  color: var(--color-muted);
  background: #f8fbff;
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
}

.site-footer {
  margin-top: 54px;
  padding: 52px 0 22px;
  background: #ffffff;
  border-top: 1px solid var(--color-line);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.25fr repeat(3, minmax(150px, 0.7fr));
  gap: 40px;
}

.footer-brand img {
  width: 140px;
  height: auto;
}

.footer-brand p,
.footer-contact p {
  color: var(--color-muted);
  font-size: 14px;
}

.footer-contact .company-info {
  margin: 14px 0;
  color: var(--color-muted);
  font-weight: 400;
  line-height: 1.65;
}

.site-footer h2 {
  margin: 0 0 14px;
  font-size: 14px;
  text-transform: uppercase;
}

.site-footer nav a,
.footer-contact a {
  display: block;
  margin: 8px 0;
  color: var(--color-muted);
  font-size: 14px;
}

.site-footer nav a:hover,
.site-footer nav a:focus-visible,
.footer-contact a:hover,
.footer-contact a:focus-visible {
  color: var(--color-blue);
}

.socials {
  display: flex;
  gap: 10px;
  margin-top: 18px;
}

.socials a {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  color: #ffffff;
  background: var(--color-ink);
  border-radius: 50%;
  font-weight: 900;
}

.footer-bottom {
  display: grid;
  gap: 14px;
  margin-top: 40px;
  padding-top: 18px;
  color: #7c8899;
  border-top: 1px solid var(--color-line);
  font-size: 13px;
  line-height: 1.7;
}

.footer-bottom p {
  margin: 0;
}

.footer-bottom a {
  color: var(--color-blue);
  font-weight: 800;
}

@media (max-width: 1060px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: 0;
    padding-top: 48px;
  }

  .hero-copy {
    max-width: 760px;
  }

  .visual-stage {
    min-height: 450px;
  }

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

  .comparison-grid,
  .benefit-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .category-hero,
  .risk-panel,
  .contact-panel-grid,
  .legal-layout {
    grid-template-columns: 1fr;
  }

  .legal-toc {
    position: static;
  }

  .featured-grid,
  .archive-grid,
  .topic-grid,
  .recommendation-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

@media (max-width: 860px) {
  .section-shell {
    width: min(100% - 28px, var(--shell));
  }

  .market-ticker__inner {
    gap: 10px;
    min-height: 64px;
  }

  .market-ticker__widget,
  .market-ticker__widget .tradingview-widget-container__widget,
  .market-ticker__widget iframe {
    height: 64px;
  }

  .header-inner {
    min-height: 68px;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    left: 14px;
    right: 14px;
    top: calc(100% + 8px);
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px;
    background: #ffffff;
    border: 1px solid var(--color-line);
    border-radius: var(--radius);
    box-shadow: var(--shadow-md);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav > a {
    display: block;
    width: 100%;
    padding: 12px;
    text-align: left;
  }

  .site-nav > a::after {
    display: none;
  }

  .hero {
    gap: 30px;
    padding: 38px 0 30px;
  }

  .category-hero {
    gap: 30px;
    padding: 40px 0 34px;
  }

  .category-hero h1 {
    font-size: clamp(38px, 10vw, 54px);
    overflow-wrap: break-word;
  }

  .category-lead {
    font-size: 16px;
  }

  .hero h1 {
    font-size: 58px;
  }

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

  .search-card {
    grid-template-columns: auto 1fr;
  }

  .search-card .button {
    grid-column: 1 / -1;
    width: 100%;
  }

  .trust-list {
    gap: 14px;
  }

  .visual-stage {
    min-height: 400px;
  }

  .phone {
    left: 36%;
    width: 188px;
  }

  .bank-card {
    left: 6%;
  }

  .rate-card {
    right: 8px;
    width: 154px;
  }

  .pie {
    right: 24px;
    bottom: 28px;
    width: 112px;
    height: 112px;
  }

  .section-heading {
    align-items: start;
    flex-direction: column;
  }

  .cta {
    grid-template-columns: 1fr;
    padding: 34px 22px;
  }

  .cta-panel {
    justify-self: stretch;
    width: 100%;
  }

}

@media (max-width: 640px) {
  .market-ticker__inner {
    grid-template-columns: minmax(0, 1fr);
  }

  .market-ticker__label {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
  }

  body {
    font-size: 15px;
  }

  .hero h1 {
    font-size: 40px;
    line-height: 1.04;
  }

  .brand img {
    width: 132px;
  }

  .category-grid,
  .comparison-grid,
  .benefit-grid,
  .article-grid,
  .featured-grid,
  .archive-grid,
  .topic-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .market-strip {
    grid-template-columns: 1fr;
  }

  .archive-toolbar {
    align-items: flex-start;
    flex-direction: column;
  }

  .risk-panel {
    padding: 24px;
  }

  .contact-card {
    padding: 24px;
  }

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

  .recommendation-body {
    padding: 18px;
  }

  .legal-summary-grid {
    grid-template-columns: 1fr;
  }

  .legal-document,
  .legal-summary-card,
  .legal-toc {
    padding: 22px;
  }

  .category-grid {
    gap: 10px;
  }

  .category-card {
    grid-template-columns: auto 1fr;
    justify-items: start;
    min-height: 74px;
    text-align: left;
    padding-inline: 18px;
  }

  .category-card strong {
    margin: 0 0 0 8px;
    font-size: 15px;
  }

  .comparison-content {
    max-width: 100%;
  }

  .mini-chart {
    position: relative;
    right: auto;
    bottom: auto;
    width: 100%;
    height: 78px;
    margin-top: 16px;
  }

  .visual-stage {
    min-height: 390px;
  }

  .phone {
    left: 50%;
    top: 42px;
    width: 174px;
    transform: translateX(-50%) rotate(-4deg);
  }

  .phone-screen {
    min-height: 326px;
    padding-inline: 14px;
  }

  .bank-card {
    display: none;
  }

  .rate-card {
    left: 12px;
    right: auto;
    top: 246px;
    width: 142px;
    padding: 14px;
  }

  .rate-card strong {
    font-size: 24px;
  }

  .pie {
    right: 12px;
    bottom: 18px;
    width: 92px;
    height: 92px;
    border-width: 7px;
  }

  .pie span {
    width: 46px;
    height: 46px;
    bottom: 24px;
    border-left-width: 7px;
  }

}

@media (max-width: 420px) {
  .hero h1 {
    font-size: 36px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

}
