:root {
      --theme: #0B3D91;
      --theme-dark: #06285f;
      --theme-soft: #eaf1ff;
      --ink: #121821;
      --muted: #657083;
      --line: #dce3ec;
      --surface: #ffffff;
      --page: #f5f7fa;
      --success: #137a52;
      --warning: #c77a12;
      --danger: #b7222d;
      --shadow: 0 18px 48px rgba(14, 30, 54, 0.1);
      --radius: 18px;
      --container: 1240px;
    }

    * {
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      margin: 0;
      color: var(--ink);
      background: var(--page);
      font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
      line-height: 1.6;
    }

    body.drawer-lock {
      overflow: hidden;
    }

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

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

    button,
    input,
    select {
      font: inherit;
    }

    button,
    select {
      cursor: pointer;
    }

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

    .topbar {
      color: #dfe9ff;
      background: var(--theme-dark);
      font-size: 0.82rem;
    }

    .topbar-inner {
      min-height: 38px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 24px;
    }

    .topbar-contact {
      display: flex;
      align-items: center;
      gap: 20px;
    }

    .topbar a {
      transition: color 0.2s ease;
    }

    .topbar a:hover {
      color: #ffffff;
    }

    .header {
      position: relative;
      z-index: 50;
      border-bottom: 1px solid rgba(11, 61, 145, 0.1);
      background: rgba(255, 255, 255, 0.98);
      box-shadow: 0 8px 25px rgba(10, 35, 70, 0.04);
    }

    .header-inner {
      min-height: 82px;
      display: flex;
      align-items: center;
      gap: 28px;
    }

    .logo {
      min-width: 0;
      display: inline-flex;
      align-items: center;
      gap: 11px;
      color: var(--theme-dark);
      font-size: 1.05rem;
      font-weight: 850;
      letter-spacing: -0.02em;
    }

    .logo img {
      width: 42px;
      height: 42px;
      flex: 0 0 42px;
      object-fit: contain;
      border-radius: 10px;
    }

    .logo span {
      max-width: 190px;
      overflow: hidden;
      text-overflow: ellipsis;
      white-space: nowrap;
    }

    .main-nav {
      align-self: stretch;
      margin-left: auto;
    }

    .nav-list {
      height: 100%;
      margin: 0;
      padding: 0;
      display: flex;
      align-items: stretch;
      list-style: none;
    }

    .nav-item {
      position: static;
      display: flex;
      align-items: center;
    }

    .nav-link {
      position: relative;
      height: 100%;
      padding: 0 13px;
      display: inline-flex;
      align-items: center;
      color: #293344;
      font-size: 0.92rem;
      font-weight: 700;
      white-space: nowrap;
    }

    .nav-link::after {
      position: absolute;
      right: 13px;
      bottom: 19px;
      left: 13px;
      height: 2px;
      content: "";
      background: var(--theme);
      transform: scaleX(0);
      transform-origin: center;
      transition: transform 0.2s ease;
    }

    .nav-item:hover .nav-link,
    .nav-item:focus-within .nav-link {
      color: var(--theme);
    }

    .nav-item:hover .nav-link::after,
    .nav-item:focus-within .nav-link::after {
      transform: scaleX(1);
    }

    .dropdown-panel,
    .mega-menu {
      position: absolute;
      top: 100%;
      z-index: 80;
      border: 1px solid var(--line);
      background: var(--surface);
      box-shadow: var(--shadow);
      opacity: 0;
      visibility: hidden;
      transform: translateY(8px);
      pointer-events: none;
      transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.2s ease;
    }

    .dropdown-panel::before,
    .mega-menu::before {
      position: absolute;
      right: 0;
      bottom: 100%;
      left: 0;
      height: 10px;
      content: "";
    }

    .nav-item:hover > .dropdown-panel,
    .nav-item:focus-within > .dropdown-panel,
    .nav-item:hover > .mega-menu,
    .nav-item:focus-within > .mega-menu {
      opacity: 1;
      visibility: visible;
      transform: translateY(0);
      pointer-events: auto;
    }

    .dropdown-panel {
      width: min(420px, calc(100vw - 40px));
      margin-left: -90px;
      padding: 24px;
      border-radius: 0 0 18px 18px;
    }

    .dropdown-title,
    .mega-title {
      margin: 0 0 12px;
      color: var(--theme-dark);
      font-size: 1.1rem;
      line-height: 1.3;
    }

    .dropdown-list {
      display: grid;
      gap: 4px;
    }

    .dropdown-list a {
      padding: 10px 0;
      border-bottom: 1px solid var(--line);
      color: #344055;
      font-size: 0.9rem;
      font-weight: 650;
    }

    .dropdown-list a:hover,
    .panel-more:hover {
      color: var(--theme);
    }

    .panel-more {
      margin-top: 16px;
      display: inline-flex;
      color: var(--theme);
      font-size: 0.88rem;
      font-weight: 800;
    }

    .mega-menu {
      right: 0;
      left: 0;
      padding: 30px max(24px, calc((100vw - var(--container)) / 2));
      border-right: 0;
      border-left: 0;
      border-radius: 0 0 24px 24px;
    }

    .mega-grid {
      display: grid;
      grid-template-columns: minmax(210px, 0.7fr) minmax(0, 2.3fr);
      gap: 28px;
    }

    .mega-intro {
      padding: 22px;
      border-radius: 16px;
      color: #ffffff;
      background: linear-gradient(145deg, var(--theme-dark), var(--theme));
    }

    .mega-intro .mega-title {
      color: #ffffff;
    }

    .mega-intro p {
      margin: 0 0 18px;
      color: #dce7ff;
      font-size: 0.9rem;
    }

    .mega-intro > a {
      display: inline-flex;
      padding: 9px 13px;
      border: 1px solid rgba(255, 255, 255, 0.35);
      border-radius: 8px;
      color: #ffffff;
      font-size: 0.85rem;
      font-weight: 800;
    }

    .category-links {
      margin-bottom: 20px;
      display: flex;
      flex-wrap: wrap;
      gap: 9px;
    }

    .category-links a {
      padding: 8px 13px;
      border: 1px solid #cfd9e8;
      border-radius: 999px;
      color: #425069;
      background: #f8faff;
      font-size: 0.84rem;
      font-weight: 700;
    }

    .category-links a:hover {
      border-color: var(--theme);
      color: var(--theme);
    }

    .mega-cards {
      min-width: 0;
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 14px;
    }

    .mega-card {
      min-width: 0;
      padding: 15px;
      display: grid;
      align-content: start;
      gap: 8px;
      border: 1px solid var(--line);
      border-radius: 14px;
      background: #ffffff;
      transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
    }

    .mega-card:hover {
      border-color: rgba(11, 61, 145, 0.45);
      box-shadow: 0 10px 25px rgba(11, 61, 145, 0.08);
      transform: translateY(-2px);
    }

    .mega-card img {
      width: 38px;
      height: 38px;
      object-fit: contain;
      border-radius: 8px;
    }

    .mega-card .video-thumb,
    .mega-card .product-thumb {
      width: 100%;
      height: 82px;
      object-fit: cover;
    }

    .mega-card strong {
      overflow: hidden;
      color: #202a3a;
      font-size: 0.9rem;
      text-overflow: ellipsis;
      white-space: nowrap;
    }

    .mega-card p {
      margin: 0;
      display: -webkit-box;
      overflow: hidden;
      color: var(--muted);
      font-size: 0.78rem;
      line-height: 1.5;
      -webkit-box-orient: vertical;
      -webkit-line-clamp: 2;
    }

    .mega-meta {
      display: flex;
      flex-wrap: wrap;
      gap: 5px 10px;
      color: var(--theme);
      font-size: 0.72rem;
      font-weight: 750;
    }

    .header-btns {
      display: flex;
      align-items: center;
      gap: 10px;
      white-space: nowrap;
    }

    .open-account {
      padding: 10px 16px;
      border-radius: 9px;
      color: #ffffff;
      background: var(--theme);
      font-size: 0.88rem;
      font-weight: 800;
      box-shadow: 0 8px 18px rgba(11, 61, 145, 0.2);
    }

    .open-account:hover {
      background: var(--theme-dark);
    }

    .hamburger {
      width: 44px;
      height: 44px;
      padding: 10px;
      display: none;
      border: 1px solid var(--line);
      border-radius: 10px;
      background: #ffffff;
    }

    .hamburger span {
      width: 100%;
      height: 2px;
      margin: 5px 0;
      display: block;
      background: var(--ink);
      transition: transform 0.2s ease, opacity 0.2s ease;
    }

    .hamburger.active span:nth-child(1) {
      transform: translateY(7px) rotate(45deg);
    }

    .hamburger.active span:nth-child(2) {
      opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
      transform: translateY(-7px) rotate(-45deg);
    }

    .drawer-overlay {
      position: fixed;
      inset: 0;
      z-index: 90;
      background: rgba(5, 15, 31, 0.66);
      opacity: 0;
      visibility: hidden;
      transition: opacity 0.25s ease, visibility 0.25s ease;
    }

    .drawer-overlay.open {
      opacity: 1;
      visibility: visible;
    }

    .mobile-drawer {
      position: fixed;
      top: 0;
      right: 0;
      bottom: 0;
      z-index: 100;
      width: min(410px, 92vw);
      overflow-y: auto;
      background: #ffffff;
      box-shadow: -20px 0 50px rgba(0, 0, 0, 0.18);
      transform: translateX(104%);
      transition: transform 0.28s ease;
    }

    .mobile-drawer.open {
      transform: translateX(0);
    }

    .drawer-head {
      min-height: 76px;
      padding: 16px 20px;
      display: flex;
      align-items: center;
      gap: 12px;
      border-bottom: 1px solid var(--line);
    }

    .drawer-head > a {
      color: var(--theme);
      font-weight: 800;
    }

    .drawer-close {
      width: 40px;
      height: 40px;
      margin-left: auto;
      border: 1px solid var(--line);
      border-radius: 50%;
      color: var(--ink);
      background: #ffffff;
      font-size: 1.5rem;
      line-height: 1;
    }

    .drawer-menu {
      padding: 12px 20px 30px;
    }

    .drawer-link,
    .drawer-toggle {
      width: 100%;
      padding: 15px 4px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      border: 0;
      border-bottom: 1px solid var(--line);
      color: #243044;
      background: transparent;
      text-align: left;
      font-weight: 800;
    }

    .drawer-toggle::after {
      content: "+";
      color: var(--theme);
      font-size: 1.25rem;
    }

    .drawer-toggle.active::after {
      content: "−";
    }

    .drawer-submenu {
      max-height: 0;
      overflow: hidden;
      background: #f7f9fc;
      transition: max-height 0.3s ease;
    }

    .drawer-submenu.open {
      max-height: 640px;
    }

    .drawer-submenu a {
      padding: 11px 15px;
      display: block;
      border-bottom: 1px solid #e7ebf2;
      color: #526078;
      font-size: 0.9rem;
    }

    .drawer-submenu a:hover {
      color: var(--theme);
    }

    .brokerlist-page {
      min-width: 0;
    }

    .brokerlist-page .broker-intro {
      position: relative;
      overflow: hidden;
      padding: 74px 0 64px;
      color: #ffffff;
      background:
        radial-gradient(circle at 86% 22%, rgba(255, 255, 255, 0.17) 0 4px, transparent 5px),
        radial-gradient(circle at 78% 72%, rgba(255, 255, 255, 0.12) 0 70px, transparent 71px),
        linear-gradient(125deg, #061d47 0%, var(--theme) 63%, #245eb8 100%);
    }

    .brokerlist-page .broker-intro::before {
      position: absolute;
      top: -130px;
      right: -80px;
      width: 380px;
      height: 380px;
      border: 1px solid rgba(255, 255, 255, 0.14);
      border-radius: 50%;
      content: "";
    }

    .brokerlist-page .broker-intro::after {
      position: absolute;
      right: 180px;
      bottom: -160px;
      width: 330px;
      height: 330px;
      border: 54px solid rgba(255, 255, 255, 0.055);
      border-radius: 50%;
      content: "";
    }

    .brokerlist-page .intro-content {
      position: relative;
      z-index: 2;
      max-width: 840px;
    }

    .brokerlist-page .eyebrow {
      margin-bottom: 18px;
      display: inline-flex;
      align-items: center;
      gap: 9px;
      color: #ccdcff;
      font-size: 0.78rem;
      font-weight: 850;
      letter-spacing: 0.13em;
      text-transform: uppercase;
    }

    .brokerlist-page .eyebrow::before {
      width: 34px;
      height: 2px;
      content: "";
      background: #ffffff;
    }

    .brokerlist-page .broker-intro h1 {
      max-width: 780px;
      margin: 0;
      font-size: clamp(2.35rem, 5vw, 4.8rem);
      line-height: 1.02;
      letter-spacing: -0.055em;
    }

    .brokerlist-page .broker-intro p {
      max-width: 730px;
      margin: 22px 0 0;
      color: #dce8ff;
      font-size: 1.04rem;
    }

    .brokerlist-page .intro-points {
      margin-top: 30px;
      display: flex;
      flex-wrap: wrap;
      gap: 11px;
    }

    .brokerlist-page .intro-points span {
      padding: 8px 13px;
      border: 1px solid rgba(255, 255, 255, 0.25);
      border-radius: 999px;
      color: #f4f7ff;
      background: rgba(255, 255, 255, 0.08);
      font-size: 0.82rem;
      font-weight: 700;
      backdrop-filter: blur(8px);
    }

    .brokerlist-page .directory-section {
      padding: 48px 0 78px;
    }

    .brokerlist-page .filter-panel {
      position: relative;
      z-index: 4;
      margin-top: -76px;
      margin-bottom: 32px;
      padding: 24px;
      display: grid;
      grid-template-columns: minmax(210px, 1.4fr) repeat(3, minmax(145px, 0.7fr)) auto;
      gap: 14px;
      border: 1px solid rgba(11, 61, 145, 0.1);
      border-radius: 18px;
      background: #ffffff;
      box-shadow: var(--shadow);
    }

    .brokerlist-page .field {
      min-width: 0;
      display: grid;
      gap: 7px;
    }

    .brokerlist-page .field label {
      color: #4a5669;
      font-size: 0.77rem;
      font-weight: 800;
    }

    .brokerlist-page .field input,
    .brokerlist-page .field select {
      width: 100%;
      height: 46px;
      padding: 0 13px;
      border: 1px solid #d6deea;
      border-radius: 9px;
      outline: none;
      color: #253044;
      background: #fafcff;
    }

    .brokerlist-page .field input:focus,
    .brokerlist-page .field select:focus {
      border-color: var(--theme);
      box-shadow: 0 0 0 3px rgba(11, 61, 145, 0.1);
    }

    .brokerlist-page .filter-submit {
      align-self: end;
      height: 46px;
      padding: 0 22px;
      border: 0;
      border-radius: 9px;
      color: #ffffff;
      background: var(--theme);
      font-weight: 850;
    }

    .brokerlist-page .filter-submit:hover {
      background: var(--theme-dark);
    }

    .brokerlist-page .directory-heading {
      margin-bottom: 22px;
      display: flex;
      align-items: end;
      justify-content: space-between;
      gap: 20px;
    }

    .brokerlist-page .directory-heading h2 {
      margin: 0;
      color: #172237;
      font-size: clamp(1.65rem, 3vw, 2.35rem);
      letter-spacing: -0.035em;
    }

    .brokerlist-page .directory-heading p {
      max-width: 580px;
      margin: 7px 0 0;
      color: var(--muted);
    }

    .brokerlist-page .result-note {
      flex: 0 0 auto;
      padding: 8px 12px;
      border-radius: 999px;
      color: var(--theme);
      background: var(--theme-soft);
      font-size: 0.8rem;
      font-weight: 800;
    }

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

    .brokerlist-page .broker-card {
      min-width: 0;
      padding: 24px;
      display: grid;
      gap: 20px;
      border: 1px solid var(--line);
      border-radius: var(--radius);
      background: #ffffff;
      box-shadow: 0 8px 25px rgba(18, 33, 57, 0.045);
      transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
    }

    .brokerlist-page .broker-card:hover {
      border-color: rgba(11, 61, 145, 0.34);
      box-shadow: 0 18px 40px rgba(11, 61, 145, 0.1);
      transform: translateY(-3px);
    }

    .brokerlist-page .broker-card-head {
      min-width: 0;
      display: grid;
      grid-template-columns: 68px minmax(0, 1fr) auto;
      align-items: center;
      gap: 15px;
    }

    .brokerlist-page .broker-logo {
      width: 68px;
      height: 68px;
      padding: 8px;
      object-fit: contain;
      border: 1px solid var(--line);
      border-radius: 14px;
      background: #ffffff;
    }

    .brokerlist-page .broker-name {
      min-width: 0;
    }

    .brokerlist-page .broker-name h3 {
      margin: 0;
      overflow: hidden;
      color: #192438;
      font-size: 1.2rem;
      line-height: 1.3;
      text-overflow: ellipsis;
      white-space: nowrap;
    }

    .brokerlist-page .regulation {
      margin-top: 6px;
      display: flex;
      align-items: center;
      gap: 7px;
      color: var(--success);
      font-size: 0.79rem;
      font-weight: 750;
    }

    .brokerlist-page .regulation::before {
      width: 8px;
      height: 8px;
      flex: 0 0 8px;
      border-radius: 50%;
      content: "";
      background: var(--success);
      box-shadow: 0 0 0 4px rgba(19, 122, 82, 0.11);
    }

    .brokerlist-page .rating {
      min-width: 68px;
      padding: 10px;
      border: 1px solid #d7e2f4;
      border-radius: 12px;
      color: var(--theme);
      background: #f3f7ff;
      text-align: center;
    }

    .brokerlist-page .rating strong {
      display: block;
      font-size: 1.2rem;
      line-height: 1;
    }

    .brokerlist-page .rating span {
      display: block;
      margin-top: 5px;
      color: #68758a;
      font-size: 0.67rem;
      font-weight: 700;
    }

    .brokerlist-page .broker-summary {
      margin: 0;
      display: -webkit-box;
      overflow: hidden;
      color: #667184;
      font-size: 0.91rem;
      line-height: 1.7;
      -webkit-box-orient: vertical;
      -webkit-line-clamp: 3;
    }

    .brokerlist-page .broker-facts {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      border: 1px solid var(--line);
      border-radius: 12px;
      background: #f9fbfd;
    }

    .brokerlist-page .fact {
      min-width: 0;
      padding: 13px;
      text-align: center;
    }

    .brokerlist-page .fact + .fact {
      border-left: 1px solid var(--line);
    }

    .brokerlist-page .fact span {
      display: block;
      color: #7a8495;
      font-size: 0.69rem;
      font-weight: 750;
      text-transform: uppercase;
    }

    .brokerlist-page .fact strong {
      margin-top: 4px;
      display: block;
      overflow-wrap: anywhere;
      color: #243047;
      font-size: 0.87rem;
    }

    .brokerlist-page .broker-actions {
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .brokerlist-page .detail-link,
    .brokerlist-page .affiliate-link {
      min-height: 43px;
      padding: 10px 16px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      border-radius: 9px;
      font-size: 0.84rem;
      font-weight: 850;
    }

    .brokerlist-page .detail-link {
      flex: 1;
      border: 1px solid #cbd7e7;
      color: var(--theme);
      background: #ffffff;
    }

    .brokerlist-page .affiliate-link {
      flex: 1;
      border: 1px solid var(--theme);
      color: #ffffff;
      background: var(--theme);
    }

    .brokerlist-page .detail-link:hover {
      border-color: var(--theme);
      background: var(--theme-soft);
    }

    .brokerlist-page .affiliate-link:hover {
      background: var(--theme-dark);
    }

    .brokerlist-page .pagination {
      margin-top: 38px;
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 8px;
    }

    .brokerlist-page .pagination a {
      min-width: 42px;
      height: 42px;
      padding: 0 13px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      border: 1px solid #d4dce8;
      border-radius: 9px;
      color: #48556a;
      background: #ffffff;
      font-size: 0.86rem;
      font-weight: 800;
    }

    .brokerlist-page .pagination a:hover,
    .brokerlist-page .pagination a.active,
    .brokerlist-page .pagination a.current {
      border-color: var(--theme);
      color: #ffffff;
      background: var(--theme);
    }

    .brokerlist-page .comparison-note {
      margin-top: 40px;
      padding: 25px;
      display: grid;
      grid-template-columns: auto minmax(0, 1fr);
      gap: 17px;
      border: 1px solid #f0d7ad;
      border-radius: 16px;
      background: #fffaf0;
    }

    .brokerlist-page .note-mark {
      width: 44px;
      height: 44px;
      display: grid;
      place-items: center;
      border-radius: 50%;
      color: #ffffff;
      background: var(--warning);
      font-weight: 900;
    }

    .brokerlist-page .comparison-note h2 {
      margin: 0 0 6px;
      color: #3c3020;
      font-size: 1.05rem;
    }

    .brokerlist-page .comparison-note p {
      margin: 0;
      color: #72634f;
      font-size: 0.89rem;
    }

    .footer {
      color: #c9d3e3;
      background: #071528;
    }

    .footer-main {
      padding: 62px 0 42px;
      display: grid;
      grid-template-columns: 1.35fr 0.8fr 0.8fr 1fr;
      gap: 44px;
    }

    .footer .logo {
      color: #ffffff;
    }

    .footer-brand p {
      max-width: 390px;
      margin: 18px 0;
      color: #9eacc1;
      font-size: 0.9rem;
    }

    .social-links {
      color: #ffffff;
    }

    .footer h3 {
      margin: 7px 0 18px;
      color: #ffffff;
      font-size: 0.95rem;
    }

    .footer-links,
    .footer-contact {
      display: grid;
      gap: 10px;
    }

    .footer-links a,
    .footer-contact span {
      color: #9eacc1;
      font-size: 0.87rem;
    }

    .footer-links a:hover,
    .footer-contact a:hover {
      color: #ffffff;
    }

    .footer-bottom {
      min-height: 76px;
      padding: 18px 0;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 20px;
      border-top: 1px solid rgba(255, 255, 255, 0.09);
      color: #8190a7;
      font-size: 0.8rem;
    }

    .footer-bottom-links {
      display: flex;
      flex-wrap: wrap;
      gap: 16px;
    }

    .footer-bottom a:hover {
      color: #ffffff;
    }

    @media (max-width: 1120px) {
      .main-nav {
        display: none;
      }

      .hamburger {
        display: block;
      }

      .header-btns {
        margin-left: auto;
      }

      .brokerlist-page .filter-panel {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }

      .brokerlist-page .filter-submit {
        width: 100%;
      }

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

    @media (max-width: 820px) {
      .brokerlist-page .broker-grid {
        grid-template-columns: 1fr;
      }

      .brokerlist-page .directory-heading {
        align-items: flex-start;
        flex-direction: column;
      }

      .brokerlist-page .broker-intro {
        padding: 58px 0 102px;
      }
    }

    @media (max-width: 640px) {
      .container {
        width: min(calc(100% - 28px), var(--container));
      }

      .topbar-inner {
        padding: 8px 0;
        align-items: flex-start;
        flex-direction: column;
        gap: 4px;
      }

      .topbar-contact {
        flex-wrap: wrap;
        gap: 4px 14px;
      }

      .header-inner {
        min-height: 72px;
        gap: 12px;
      }

      .header .logo img {
        width: 36px;
        height: 36px;
        flex-basis: 36px;
      }

      .header .logo span {
        max-width: 125px;
        font-size: 0.9rem;
      }

      .header-btns > .open-account {
        display: none;
      }

      .brokerlist-page .broker-intro h1 {
        font-size: 2.55rem;
      }

      .brokerlist-page .filter-panel {
        grid-template-columns: 1fr;
        padding: 18px;
      }

      .brokerlist-page .broker-card {
        padding: 18px;
      }

      .brokerlist-page .broker-card-head {
        grid-template-columns: 58px minmax(0, 1fr);
      }

      .brokerlist-page .broker-logo {
        width: 58px;
        height: 58px;
      }

      .brokerlist-page .rating {
        grid-column: 1 / -1;
        display: flex;
        align-items: center;
        justify-content: space-between;
      }

      .brokerlist-page .rating strong,
      .brokerlist-page .rating span {
        margin: 0;
      }

      .brokerlist-page .broker-facts {
        grid-template-columns: 1fr;
      }

      .brokerlist-page .fact {
        text-align: left;
      }

      .brokerlist-page .fact + .fact {
        border-top: 1px solid var(--line);
        border-left: 0;
      }

      .brokerlist-page .broker-actions {
        align-items: stretch;
        flex-direction: column;
      }

      .brokerlist-page .comparison-note {
        grid-template-columns: 1fr;
      }

      .footer-main {
        padding-top: 46px;
        grid-template-columns: 1fr;
        gap: 30px;
      }

      .footer-bottom {
        align-items: flex-start;
        flex-direction: column;
      }
    }