@font-face {
  font-family: "CircularXX";
  src: url("../assets/fonts/CircularXXWeb-Light.woff2") format("woff2");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "CircularXX";
  src: url("../assets/fonts/CircularXXWeb-Book.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "CircularXX";
  src: url("../assets/fonts/CircularXXWeb-Regular.woff2") format("woff2");
  font-weight: 450;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "CircularXX";
  src: url("../assets/fonts/CircularXXWeb-Medium.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "CircularXX";
  src: url("../assets/fonts/CircularXXWeb-Bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --blue: #0874b0;
  --blue-dark: #065a8a;
  --navy: #192331;
  --orange: #ef9309;
  --text: #363636;
  --muted: #8e8e8e;
  --line: #dedede;
  --bg: #f6f6f6;
  --bg-soft: #ebebeb;
  --white: #ffffff;
  --danger: #e53935;
  --success: #1e9e5a;
  --radius: 12px;
  --radius-lg: 20px;
  --shadow: 0 8px 30px rgba(25, 35, 49, 0.08);
  --header-h: 72px;
  --font: "CircularXX", "Segoe UI", sans-serif;
  --serif: "EB Garamond", Georgia, serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  font-family: var(--font);
  font-weight: 400;
  color: var(--text);
  background-color: #f7f9fb;
  background-image:
    radial-gradient(rgba(8, 116, 176, 0.045) 0.8px, transparent 0.8px),
    radial-gradient(rgba(25, 35, 49, 0.03) 0.8px, transparent 0.8px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(247, 249, 251, 0.96));
  background-size: 18px 18px, 18px 18px, auto;
  background-position: 0 0, 9px 9px, 0 0;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background:
    linear-gradient(135deg, rgba(8, 116, 176, 0.04), transparent 42%),
    linear-gradient(315deg, rgba(239, 147, 9, 0.035), transparent 40%);
}
.site-header,
main,
.hero,
.section,
.page-hero,
.site-footer,
#site-header,
#site-footer {
  position: relative;
  z-index: 1;
}
img {
  max-width: 100%;
  display: block;
}
a {
  color: inherit;
  text-decoration: none;
}
button,
input {
  font: inherit;
}
ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.container {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}
.container-wide {
  width: min(1280px, calc(100% - 40px));
  margin: 0 auto;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  height: var(--header-h);
  display: flex;
  align-items: center;
  gap: 28px;
}
.logo img {
  height: 32px;
  width: auto;
}
.nav {
  display: flex;
  align-items: center;
  gap: 4px;
  flex: 1;
}
.nav-item {
  position: relative;
}
.nav-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 12px;
  font-size: 14px;
  font-weight: 500;
  color: var(--navy);
  border-radius: 8px;
  transition: background 0.15s ease, color 0.15s ease;
}
.nav-link:hover,
.nav-item.open > .nav-link,
.nav-link.active {
  background: var(--bg);
  color: var(--blue);
}
.nav-link .chev {
  width: 10px;
  height: 10px;
  opacity: 0.55;
  transition: transform 0.2s ease;
}
.nav-item.open .chev {
  transform: rotate(180deg);
}
.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 0;
  border-radius: 999px;
  padding: 11px 20px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: 0.2s ease;
}
.btn-primary {
  background: var(--blue);
  color: #fff;
}
.btn-primary:hover {
  background: var(--blue-dark);
}
.btn-outline {
  background: transparent;
  color: var(--navy);
  border: 1px solid var(--line);
}
.btn-outline:hover {
  border-color: var(--blue);
  color: var(--blue);
}
.btn-dark {
  background: var(--navy);
  color: #fff;
}
.btn-dark:hover {
  background: #0f1724;
}
.btn-lg {
  padding: 14px 28px;
  font-size: 15px;
}
.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--navy);
  position: relative;
}
.menu-toggle span::before,
.menu-toggle span::after {
  content: "";
  position: absolute;
  left: 0;
  width: 18px;
  height: 2px;
  background: var(--navy);
}
.menu-toggle span::before {
  top: -6px;
}
.menu-toggle span::after {
  top: 6px;
}

/* Mega menu */
.mega {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: calc(100% + 8px);
  width: min(980px, 92vw);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: var(--shadow);
  padding: 22px;
  display: none;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px 18px;
}
.nav-item.open .mega {
  display: grid;
}
.mega.mega-2 {
  grid-template-columns: repeat(2, 1fr);
  width: min(640px, 92vw);
}
.mega.mega-markets {
  grid-template-columns: 180px 1fr;
  width: min(760px, 92vw);
}
.mega-item {
  display: flex;
  gap: 12px;
  padding: 12px;
  border-radius: 12px;
  transition: background 0.15s ease;
}
.mega-item:hover {
  background: var(--bg);
}
.mega-item img {
  width: 36px;
  height: 36px;
  object-fit: contain;
  flex-shrink: 0;
}
.mega-item strong {
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: var(--navy);
  margin-bottom: 2px;
}
.mega-item span {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.35;
}
.mega-side {
  border-right: 1px solid var(--line);
  padding-right: 12px;
}
.mega-side a {
  display: block;
  padding: 10px 12px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  color: var(--navy);
}
.mega-side a:hover,
.mega-side a.active {
  background: var(--bg);
  color: var(--blue);
}
.mega-indices {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
}
.index-chip {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 10px;
  font-size: 13px;
  font-weight: 500;
}
.index-chip img {
  width: 22px;
  height: 22px;
}

/* Hero */
.hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(247, 251, 254, 0.75) 0%, rgba(255, 255, 255, 0.55) 55%, rgba(246, 246, 246, 0.35) 100%);
  padding: 48px 0 28px;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 40px;
  align-items: center;
}
.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 500;
  color: var(--blue);
  background: rgba(8, 116, 176, 0.08);
  padding: 6px 12px;
  border-radius: 999px;
  margin-bottom: 18px;
}
.hero h1 {
  margin: 0 0 14px;
  font-family: var(--serif);
  font-size: clamp(36px, 5vw, 56px);
  line-height: 1.08;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: -0.02em;
}
.hero h1 .rotate {
  color: var(--blue);
}
.hero-lead {
  margin: 0 0 24px;
  font-size: 17px;
  color: var(--muted);
  max-width: 480px;
}
.hero-form {
  display: flex;
  gap: 10px;
  align-items: center;
  max-width: 460px;
  margin-bottom: 22px;
}
.phone-field {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 14px;
  min-height: 52px;
}
.phone-field .cc {
  font-weight: 500;
  color: var(--navy);
  white-space: nowrap;
}
.phone-field input {
  border: 0;
  outline: 0;
  width: 100%;
  background: transparent;
  font-size: 15px;
}
.store-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin: 0 0 22px;
}
.store-badge {
  display: inline-flex;
  transition: transform 0.15s ease, opacity 0.15s ease;
}
.store-badge:hover {
  transform: translateY(-1px);
  opacity: 0.92;
}
.store-badge img {
  height: 46px;
  width: auto;
}
.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
}
.hero-stat strong {
  display: block;
  font-size: 22px;
  font-weight: 700;
  color: var(--navy);
}
.hero-stat span {
  font-size: 13px;
  color: var(--muted);
}
.hero-visual {
  position: relative;
}
.hero-visual img.hero-main {
  width: 100%;
  max-width: 560px;
  margin-left: auto;
  filter: drop-shadow(0 20px 40px rgba(25, 35, 49, 0.15));
}

/* Sections */
.section {
  padding: 72px 0;
}
.section-tight {
  padding: 48px 0;
}
.section-dark {
  background: var(--navy);
  color: #fff;
}
.section-soft {
  background: rgba(246, 246, 246, 0.78);
}
.hero,
.page-hero,
.section:not(.section-dark):not(.section-soft) {
  background: transparent;
}
.info-card,
.feature-card-row,
.price-card,
.faq-item,
.t-card,
.award-card,
.news-card,
.principle,
.side-nav,
.table-wrap {
  backdrop-filter: blur(2px);
}
.section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 40px;
}
.section-head h2 {
  margin: 0 0 10px;
  font-family: var(--serif);
  font-size: clamp(28px, 3.4vw, 42px);
  font-weight: 600;
  color: inherit;
  letter-spacing: -0.02em;
}
.section-dark .section-head h2 {
  color: #fff;
}
.section-head p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
}
.section-dark .section-head p {
  color: rgba(255, 255, 255, 0.72);
}

.feature-tabs {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 28px;
}
.feature-tab {
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 999px;
  padding: 10px 18px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  color: var(--navy);
}
.feature-tab.active {
  background: var(--navy);
  color: #fff;
  border-color: var(--navy);
}
.feature-panel {
  display: none;
}
.feature-panel.active {
  display: block;
}
.feature-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: center;
}
.feature-list {
  display: grid;
  gap: 14px;
}
.feature-card-row {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 16px;
  border-radius: 14px;
  background: #fff;
  border: 1px solid var(--line);
}
.section-dark .feature-card-row {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.08);
}
.feature-card-row strong {
  display: block;
  font-size: 15px;
  margin-bottom: 4px;
  color: var(--navy);
}
.section-dark .feature-card-row strong {
  color: #fff;
}
.feature-card-row p {
  margin: 0;
  font-size: 13px;
  color: var(--muted);
}
.section-dark .feature-card-row p {
  color: rgba(255, 255, 255, 0.65);
}
.pill {
  display: inline-flex;
  align-items: center;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 500;
  background: rgba(8, 116, 176, 0.1);
  color: var(--blue);
}

/* Product / investment cards */
.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.card-grid-4 {
  grid-template-columns: repeat(4, 1fr);
}
.info-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 22px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  height: 100%;
}
.info-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}
.info-card img.icon {
  width: 44px;
  height: 44px;
  margin-bottom: 14px;
}
.info-card h3 {
  margin: 0 0 8px;
  font-size: 17px;
  font-weight: 500;
  color: var(--navy);
}
.info-card p {
  margin: 0;
  font-size: 13px;
  color: var(--muted);
  line-height: 1.45;
}
.info-card .more {
  display: inline-block;
  margin-top: 14px;
  font-size: 13px;
  font-weight: 500;
  color: var(--blue);
}

/* Principles */
.principle-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.principle {
  text-align: center;
  padding: 28px 18px;
  border-radius: 16px;
  background: #fff;
  border: 1px solid var(--line);
}
.principle .mark {
  width: 48px;
  height: 48px;
  margin: 0 auto 14px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(8, 116, 176, 0.1);
  color: var(--blue);
  font-weight: 700;
  font-size: 18px;
}
.principle h3 {
  margin: 0 0 6px;
  font-size: 16px;
  color: var(--navy);
}
.principle p {
  margin: 0;
  font-size: 13px;
  color: var(--muted);
}

/* Testimonials */
.ticker-wrap {
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.ticker {
  display: flex;
  gap: 16px;
  width: max-content;
  animation: marquee 55s linear infinite;
}
.ticker:hover {
  animation-play-state: paused;
}
@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
.t-card {
  width: 320px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 18px;
  flex-shrink: 0;
}
.t-card .who {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}
.t-card .avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--bg);
  display: grid;
  place-items: center;
  font-weight: 700;
  color: var(--blue);
  font-size: 13px;
}
.t-card strong {
  display: block;
  font-size: 14px;
  color: var(--navy);
}
.t-card .handle {
  font-size: 12px;
  color: var(--muted);
}
.t-card p {
  margin: 0;
  font-size: 13px;
  color: var(--text);
  line-height: 1.45;
}

/* Awards / news */
.award-grid,
.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.award-card,
.news-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 20px;
}
.award-card h3,
.news-card h3 {
  margin: 0 0 8px;
  font-size: 15px;
  color: var(--navy);
}
.award-card p,
.news-card p {
  margin: 0;
  font-size: 13px;
  color: var(--muted);
}

/* FAQ */
.faq-list {
  max-width: 860px;
  margin: 0 auto;
  display: grid;
  gap: 10px;
}
.faq-item {
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
  overflow: hidden;
}
.faq-q {
  width: 100%;
  text-align: left;
  background: transparent;
  border: 0;
  padding: 18px 20px;
  font-size: 15px;
  font-weight: 500;
  color: var(--navy);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  gap: 16px;
}
.faq-q::after {
  content: "+";
  font-size: 20px;
  color: var(--muted);
}
.faq-item.open .faq-q::after {
  content: "–";
}
.faq-a {
  display: none;
  padding: 0 20px 18px;
  font-size: 14px;
  color: var(--muted);
  line-height: 1.55;
}
.faq-item.open .faq-a {
  display: block;
}

/* CTA banner */
.cta-banner {
  background: linear-gradient(135deg, #0b3d5c 0%, #0874b0 55%, #0aa0d8 100%);
  color: #fff;
  border-radius: 24px;
  padding: 42px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.cta-banner h2 {
  margin: 0 0 8px;
  font-family: var(--serif);
  font-size: clamp(26px, 3vw, 36px);
}
.cta-banner p {
  margin: 0;
  opacity: 0.85;
}
.cta-banner .btn {
  background: #fff;
  color: var(--navy);
}

/* Page hero (inner) */
.page-hero {
  padding: 56px 0 28px;
  background: linear-gradient(180deg, #f7fbfe, #fff);
  border-bottom: 1px solid var(--line);
}
.page-hero h1 {
  margin: 0 0 10px;
  font-family: var(--serif);
  font-size: clamp(32px, 4vw, 48px);
  color: var(--navy);
  letter-spacing: -0.02em;
}
.page-hero p {
  margin: 0;
  max-width: 640px;
  color: var(--muted);
  font-size: 16px;
}
.breadcrumb {
  display: flex;
  gap: 8px;
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 14px;
}
.breadcrumb a:hover {
  color: var(--blue);
}

/* Pricing */
.price-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 36px;
}
.price-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 22px;
  min-height: 180px;
}
.price-card .tag {
  font-size: 12px;
  font-weight: 500;
  color: var(--blue);
  margin-bottom: 10px;
}
.price-card h3 {
  margin: 0 0 8px;
  font-size: 18px;
  color: var(--navy);
}
.price-card p {
  margin: 0;
  font-size: 13px;
  color: var(--muted);
}
.price-card.highlight {
  background: var(--navy);
  color: #fff;
  border-color: var(--navy);
}
.price-card.highlight .tag,
.price-card.highlight h3,
.price-card.highlight p {
  color: #fff;
}
.price-card.highlight p {
  opacity: 0.75;
}
.tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
}
.tab-btn {
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 999px;
  padding: 9px 16px;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
}
.tab-btn.active {
  background: var(--blue);
  border-color: var(--blue);
  color: #fff;
}
.tab-panel {
  display: none;
}
.tab-panel.active {
  display: block;
}
.table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
}
table.charges {
  width: 100%;
  border-collapse: collapse;
  min-width: 720px;
}
table.charges th,
table.charges td {
  padding: 14px 16px;
  text-align: left;
  border-bottom: 1px solid var(--line);
  font-size: 13px;
  vertical-align: top;
}
table.charges th {
  background: var(--bg);
  color: var(--navy);
  font-weight: 500;
}
.note-list {
  margin-top: 18px;
  color: var(--muted);
  font-size: 13px;
  display: grid;
  gap: 8px;
}

/* Markets */
.market-layout {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 24px;
}
.side-nav {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 10px;
  height: fit-content;
  position: sticky;
  top: calc(var(--header-h) + 16px);
}
.side-nav a {
  display: block;
  padding: 11px 12px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  color: var(--navy);
}
.side-nav a:hover,
.side-nav a.active {
  background: rgba(8, 116, 176, 0.08);
  color: var(--blue);
}
.market-panel h2 {
  margin: 0 0 8px;
  font-size: 24px;
  color: var(--navy);
}
.market-panel > p {
  margin: 0 0 20px;
  color: var(--muted);
}

/* Partner */
.partner-hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 24px;
}
.partner-hero-stats .stat {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 16px 18px;
  min-width: 180px;
}
.partner-hero-stats strong {
  display: block;
  font-size: 22px;
  color: var(--navy);
}
.partner-hero-stats span {
  font-size: 13px;
  color: var(--muted);
}

/* Footer */
.site-footer {
  background: #111821;
  color: rgba(255, 255, 255, 0.78);
  padding: 56px 0 28px;
  font-size: 13px;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.2fr repeat(4, 1fr);
  gap: 28px;
  margin-bottom: 36px;
}
.footer-brand img {
  height: 34px;
  width: auto;
  margin-bottom: 14px;
}
.footer-brand p {
  margin: 0 0 12px;
  max-width: 280px;
  line-height: 1.5;
}
.footer-col h4 {
  margin: 0 0 14px;
  color: #fff;
  font-size: 14px;
  font-weight: 500;
}
.footer-col a {
  display: block;
  margin-bottom: 8px;
  color: rgba(255, 255, 255, 0.7);
}
.footer-col a:hover {
  color: #fff;
}
.footer-emails a {
  color: #7ec8ef;
}
.footer-legal {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 22px;
  display: grid;
  gap: 12px;
  color: rgba(255, 255, 255, 0.55);
  font-size: 12px;
  line-height: 1.55;
}
.footer-bottom {
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
}

/* Utilities */
.text-center {
  text-align: center;
}
.mt-24 {
  margin-top: 24px;
}
.mt-40 {
  margin-top: 40px;
}
.mb-0 {
  margin-bottom: 0;
}
.muted {
  color: var(--muted);
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}

@media (max-width: 980px) {
  .menu-toggle {
    display: inline-flex;
    margin-left: auto;
  }
  .nav {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    top: var(--header-h);
    background: #fff;
    border-bottom: 1px solid var(--line);
    flex-direction: column;
    align-items: stretch;
    padding: 12px;
    max-height: calc(100vh - var(--header-h));
    overflow: auto;
  }
  body.nav-open .nav {
    display: flex;
  }
  .header-actions .btn-outline {
    display: none;
  }
  .mega,
  .mega.mega-2,
  .mega.mega-markets {
    position: static;
    transform: none;
    width: 100%;
    box-shadow: none;
    border: 0;
    padding: 8px 4px 12px;
    grid-template-columns: 1fr;
  }
  .mega-side {
    border-right: 0;
    border-bottom: 1px solid var(--line);
    padding-right: 0;
    padding-bottom: 8px;
    margin-bottom: 8px;
  }
  .hero-grid,
  .feature-grid,
  .card-grid,
  .card-grid-4,
  .principle-grid,
  .award-grid,
  .news-grid,
  .price-cards,
  .market-layout,
  .footer-top {
    grid-template-columns: 1fr;
  }
  .hero-form {
    flex-direction: column;
    align-items: stretch;
  }
  .cta-banner {
    flex-direction: column;
    align-items: flex-start;
  }
  .side-nav {
    position: static;
    display: flex;
    gap: 6px;
    overflow-x: auto;
  }
  .side-nav a {
    white-space: nowrap;
  }
}
