/* ============================================================
   HKHL TRADING LIMITED — dataitrade.buzz
   Light theme · sky-blue accent · left icon-rail navigation
   ============================================================ */

:root {
  --bg: #F6F9FC;
  --surface: #FFFFFF;
  --surface-soft: #EDF4FA;
  --ink: #16222E;
  --ink-soft: #41576B;
  --ink-muted: #5C7288;
  --sky: #0EA5E9;
  --sky-deep: #0284C7;
  --sky-dark: #075985;
  --sky-ink: #0C4A6E;
  --ice: #E0F2FE;
  --ice-strong: #BAE6FD;
  --ice-mid: #7DD3FC;
  --line: #D9E6F2;
  --rail-bg: #082F49;
  --rail-muted: #38BDF8;
  --shadow-soft: 0 10px 30px rgba(12, 74, 110, 0.10);
  --shadow-glow: 0 18px 44px rgba(14, 165, 233, 0.32);
  --radius: 16px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Segoe UI", "Inter", -apple-system, BlinkMacSystemFont, Roboto, Helvetica, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: var(--ink);
  background-color: var(--bg);
  overflow-x: hidden;
}

a {
  color: var(--sky-deep);
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover {
  color: var(--sky);
}

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

.wrapper {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 40px;
}

/* ============================================================
   LEFT ICON-RAIL NAVIGATION
   ============================================================ */
.icon-rail {
  position: fixed;
  top: 0;
  left: 0;
  width: 72px;
  height: 100vh;
  background: var(--rail-bg);
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 22px 0 26px;
  z-index: 1000;
  box-shadow: 4px 0 24px rgba(8, 47, 73, 0.18);
}

.rail-brand {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin-bottom: 34px;
}

.brand-mark {
  position: relative;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(150deg, #38BDF8 0%, #0EA5E9 55%, #0284C7 100%);
  box-shadow: 0 6px 18px rgba(14, 165, 233, 0.45);
}

.brand-mark::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 15px;
  border-radius: 2px;
  background: #FFFFFF;
}

.brand-mark::after {
  content: "";
  position: absolute;
  top: 10px;
  left: 50%;
  width: 12px;
  height: 12px;
  border-top: 4px solid #FFFFFF;
  border-left: 4px solid #FFFFFF;
  transform: translateX(-50%) rotate(45deg);
  border-radius: 2px 0 0 0;
}

.rail-links {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  flex: 1;
}

.rail-link {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 12px;
  transition: background 0.25s ease;
}

.rail-link .label {
  position: absolute;
  left: 58px;
  top: 50%;
  transform: translateY(-50%) translateX(-6px);
  background: #FFFFFF;
  color: var(--ink);
  font-size: 13px;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 8px;
  white-space: nowrap;
  visibility: hidden;
  pointer-events: none;
  transition: transform 0.18s ease, visibility 0.18s ease;
  box-shadow: var(--shadow-soft);
}

.rail-link:hover .label,
.rail-link:focus-visible .label,
.rail-link.active .label {
  visibility: visible;
  transform: translateY(-50%) translateX(0);
}

.rail-link:hover {
  background: #0B3350;
}

.rail-link.active {
  background: #0C3F60;
}

/* CSS-drawn icons */
.rail-icon {
  position: relative;
  width: 22px;
  height: 22px;
}

.icon-home::before {
  content: "";
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 12px;
  height: 12px;
  background: #7DD3FC;
  border-radius: 2px;
}

.icon-home::after {
  content: "";
  position: absolute;
  top: 3px;
  left: 50%;
  width: 12px;
  height: 12px;
  border-top: 3px solid #7DD3FC;
  border-left: 3px solid #7DD3FC;
  transform: translateX(-50%) rotate(45deg);
  border-radius: 2px 0 0 0;
}

.rail-link.active .icon-home::before,
.rail-link.active .icon-home::after {
  border-color: #E0F2FE;
  background: #E0F2FE;
}

.icon-services::before,
.icon-services::after {
  content: "";
  position: absolute;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: #7DD3FC;
}

.icon-services::before {
  top: 1px;
  left: 1px;
}

.icon-services::after {
  bottom: 1px;
  right: 1px;
}

.icon-services i {
  position: absolute;
  top: 6px;
  left: 6px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #38BDF8;
}

.rail-link.active .icon-services::before,
.rail-link.active .icon-services::after {
  background: #E0F2FE;
}

.rail-link.active .icon-services i {
  background: #FFFFFF;
}

.icon-pricing {
  border: 3px solid #7DD3FC;
  border-radius: 3px;
  background: transparent;
}

.icon-pricing::before {
  content: "";
  position: absolute;
  top: 6px;
  left: 3px;
  width: 11px;
  height: 2px;
  background: #7DD3FC;
  box-shadow: 0 4px 0 #7DD3FC;
}

.rail-link.active .icon-pricing {
  border-color: #E0F2FE;
}

.rail-link.active .icon-pricing::before {
  background: #E0F2FE;
  box-shadow: 0 4px 0 #E0F2FE;
}

.icon-contact {
  border: 3px solid #7DD3FC;
  border-radius: 3px;
  overflow: hidden;
}

.icon-contact::before {
  content: "";
  position: absolute;
  top: 4px;
  left: 4px;
  width: 9px;
  height: 9px;
  border-top: 3px solid #7DD3FC;
  border-right: 3px solid #7DD3FC;
  transform: rotate(135deg) translate(0, 0);
  transform-origin: top left;
}

.rail-link.active .icon-contact {
  border-color: #E0F2FE;
}

.rail-link.active .icon-contact::before {
  border-color: #E0F2FE;
}

.rail-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(150deg, #38BDF8, #0EA5E9);
  box-shadow: 0 6px 16px rgba(14, 165, 233, 0.45);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.rail-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(14, 165, 233, 0.55);
}

.rail-cta .cta-arrow {
  width: 10px;
  height: 10px;
  border-top: 3px solid #FFFFFF;
  border-right: 3px solid #FFFFFF;
  transform: rotate(45deg) translate(-2px, 2px);
}

/* ============================================================
   MOBILE TOP BAR
   ============================================================ */
.mobile-topbar {
  display: none;
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--rail-bg);
  height: 62px;
  align-items: center;
  justify-content: space-between;
  padding: 0 18px;
  box-shadow: 0 4px 18px rgba(8, 47, 73, 0.22);
}

.mobile-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #FFFFFF;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.mobile-brand .brand-mark {
  width: 34px;
  height: 34px;
}

.mobile-brand .brand-mark::before {
  top: 8px;
  height: 12px;
}

.mobile-brand .brand-mark::after {
  top: 8px;
  width: 10px;
  height: 10px;
}

.mobile-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 0 10px;
  background: #0B3350;
  border: none;
  border-radius: 10px;
  cursor: pointer;
}

.mobile-toggle span {
  display: block;
  height: 2px;
  width: 100%;
  background: #E0F2FE;
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.2s ease;
}

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

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

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

.mobile-menu {
  display: none;
  position: fixed;
  top: 62px;
  left: 0;
  right: 0;
  background: var(--rail-bg);
  border-top: 1px solid #1E4A66;
  flex-direction: column;
  padding: 8px 18px 18px;
  z-index: 999;
}

.mobile-menu.open {
  display: flex;
}

.mobile-menu a {
  display: block;
  color: #E0F2FE;
  font-weight: 600;
  padding: 13px 6px;
  border-bottom: 1px solid #1E4A66;
}

.mobile-menu a:last-child {
  border-bottom: none;
}

.mobile-menu a:hover {
  color: #FFFFFF;
}

/* ============================================================
   MAIN CONTENT OFFSET (sits right of the icon rail)
   ============================================================ */
.home-page {
  margin-left: 72px;
}

/* ============================================================
   HERO — asymmetric 40/60 split
   ============================================================ */
.hero-section {
  position: relative;
  padding: 72px 0 56px;
  background: linear-gradient(180deg, #FFFFFF 0%, #F6F9FC 100%);
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 40% 60%;
  gap: 44px;
  align-items: center;
}

.hero-copy .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--sky-deep);
  background: var(--ice);
  padding: 7px 14px;
  border-radius: 999px;
  margin-bottom: 20px;
}

.hero-copy .eyebrow::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--sky);
}

.hero-copy h1 {
  font-size: 46px;
  line-height: 1.12;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 22px;
  font-weight: 800;
}

.hero-copy h1 .accent {
  color: var(--sky-deep);
}

.hero-copy .lead {
  font-size: 17px;
  color: var(--ink-soft);
  max-width: 430px;
  margin-bottom: 30px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-weight: 700;
  font-size: 15px;
  padding: 14px 26px;
  border-radius: 12px;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
  border: none;
}

.btn-primary {
  background: linear-gradient(150deg, #0EA5E9, #0284C7);
  color: #FFFFFF;
  box-shadow: 0 12px 26px rgba(14, 165, 233, 0.32);
}

.btn-primary:hover {
  transform: translateY(-2px);
  color: #FFFFFF;
  box-shadow: 0 16px 32px rgba(14, 165, 233, 0.42);
}

.btn-ghost {
  background: #FFFFFF;
  color: var(--sky-deep);
  border: 1px solid var(--ice-strong);
}

.btn-ghost:hover {
  background: var(--ice);
  color: var(--sky-deep);
}

/* --- Ticker tape visual (no text) --- */
.hero-visual {
  position: relative;
}

.ticker-hero {
  position: relative;
  height: 420px;
  border-radius: 24px;
  background:
    radial-gradient(circle at 22% 18%, #E0F2FE 0%, rgba(224, 242, 254, 0) 52%),
    radial-gradient(circle at 80% 78%, #BAE6FD 0%, rgba(186, 230, 253, 0) 48%),
    linear-gradient(150deg, #FFFFFF 0%, #EDF4FA 100%);
  box-shadow: var(--shadow-soft);
}

.ribbon {
  position: absolute;
  top: 50%;
  left: -8%;
  width: 116%;
  height: 78px;
  margin-top: -39px;
  background: linear-gradient(120deg, #0EA5E9 0%, #38BDF8 55%, #0284C7 100%);
  transform: rotate(-11deg);
  box-shadow: var(--shadow-glow);
  display: flex;
  align-items: center;
  justify-content: space-around;
  padding: 0 6%;
}

.ribbon::before {
  content: "";
  position: absolute;
  top: 12px;
  bottom: 12px;
  left: 0;
  right: 0;
  border-top: 2px solid #BAE6FD;
  border-bottom: 2px solid #BAE6FD;
}

.tick {
  width: 3px;
  height: 26px;
  border-radius: 2px;
  background: #E0F2FE;
  position: relative;
  z-index: 1;
}

.tick.short {
  height: 15px;
}

.arrowhead {
  position: absolute;
  width: 0;
  height: 0;
  border-left: 13px solid transparent;
  border-right: 13px solid transparent;
  border-bottom: 20px solid #0284C7;
  filter: drop-shadow(0 6px 10px rgba(2, 132, 199, 0.35));
}

.arrowhead.a1 {
  top: 60px;
  left: 22%;
}

.arrowhead.a2 {
  top: 30px;
  left: 46%;
  border-bottom-color: #0EA5E9;
}

.arrowhead.a3 {
  top: 74px;
  left: 70%;
  border-bottom-color: #38BDF8;
  transform: scale(0.8);
}

.dot {
  position: absolute;
  border-radius: 50%;
  background: #0EA5E9;
}

.dot.d1 {
  bottom: 48px;
  left: 16%;
  width: 16px;
  height: 16px;
  background: #38BDF8;
}

.dot.d2 {
  bottom: 76px;
  left: 34%;
  width: 10px;
  height: 10px;
  background: #0284C7;
}

.dot.d3 {
  bottom: 42px;
  left: 52%;
  width: 20px;
  height: 20px;
  background: #0EA5E9;
  box-shadow: 0 8px 18px rgba(14, 165, 233, 0.4);
}

.dot.d4 {
  bottom: 70px;
  left: 72%;
  width: 12px;
  height: 12px;
  background: #7DD3FC;
}

.dot.d5 {
  bottom: 52px;
  left: 86%;
  width: 9px;
  height: 9px;
  background: #38BDF8;
}

.glow-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(30px);
}

.glow-orb.g1 {
  width: 160px;
  height: 160px;
  top: 20px;
  right: 8%;
  background: rgba(186, 230, 253, 0.7);
}

.glow-orb.g2 {
  width: 120px;
  height: 120px;
  bottom: 12px;
  left: 6%;
  background: rgba(224, 242, 254, 0.8);
}

/* ============================================================
   STATEMENT ROW
   ============================================================ */
.statement-section {
  padding: 76px 0;
  background: #FFFFFF;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.statement-section .statement {
  font-size: 32px;
  line-height: 1.4;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--ink);
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

.statement-section .statement .accent {
  color: var(--sky-deep);
}

/* ============================================================
   NUMBERED PROCESS
   ============================================================ */
.process-section {
  padding: 80px 0;
  background: var(--bg);
}

.section-head {
  max-width: 640px;
  margin-bottom: 52px;
}

.section-head .kicker {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--sky-deep);
  margin-bottom: 12px;
}

.section-head h2 {
  font-size: 34px;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--ink);
  font-weight: 800;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  position: relative;
}

.process-grid::before {
  content: "";
  position: absolute;
  top: 28px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: linear-gradient(90deg, #BAE6FD, #0EA5E9, #BAE6FD);
}

.process-step {
  position: relative;
  padding-right: 16px;
}

.process-num {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #FFFFFF;
  border: 2px solid var(--ice-strong);
  color: var(--sky-deep);
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 0.02em;
  margin-bottom: 20px;
  box-shadow: var(--shadow-soft);
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

.process-step:hover .process-num {
  background: linear-gradient(150deg, #0EA5E9, #0284C7);
  border-color: transparent;
  color: #FFFFFF;
}

.process-step h3 {
  font-size: 19px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 10px;
}

.process-step p {
  font-size: 15px;
  color: var(--ink-soft);
}

/* ============================================================
   FEE TABLE
   ============================================================ */
.fee-section {
  padding: 80px 0;
  background: #FFFFFF;
  border-top: 1px solid var(--line);
}

.fee-table {
  width: 100%;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  background: #FFFFFF;
}

.fee-table .table-scroll {
  overflow-x: auto;
}

.fee-table table {
  width: 100%;
  border-collapse: collapse;
  min-width: 620px;
}

.fee-table thead th {
  background: linear-gradient(120deg, #0EA5E9, #0284C7);
  color: #FFFFFF;
  text-align: left;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.03em;
  padding: 18px 24px;
}

.fee-table tbody td {
  padding: 20px 24px;
  font-size: 15px;
  color: var(--ink-soft);
  vertical-align: top;
  border-bottom: 1px solid var(--line);
}

.fee-table tbody tr:nth-child(even) {
  background: var(--surface-soft);
}

.fee-table tbody tr:last-child td {
  border-bottom: none;
}

.fee-table .svc-name {
  font-weight: 700;
  color: var(--ink);
  font-size: 16px;
}

.fee-table .fee-val {
  font-weight: 700;
  color: var(--sky-deep);
  white-space: nowrap;
}

.fee-note {
  margin-top: 18px;
  font-size: 14px;
  color: var(--ink-muted);
}

/* ============================================================
   CLIENT LOGO STRIP
   ============================================================ */
.client-section {
  padding: 56px 0;
  background: var(--bg);
}

.client-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.client-item {
  flex: 1 1 140px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 18px 8px;
  border-right: 1px solid var(--line);
}

.client-item:last-child {
  border-right: none;
}

.client-mark {
  width: 38px;
  height: 38px;
  color: #7A93A8;
}

.mark-diamond {
  width: 24px;
  height: 24px;
  background: #7A93A8;
  transform: rotate(45deg);
  border-radius: 3px;
}

.mark-circle {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 5px solid #7A93A8;
}

.mark-triangle {
  width: 0;
  height: 0;
  border-left: 15px solid transparent;
  border-right: 15px solid transparent;
  border-bottom: 26px solid #7A93A8;
}

.mark-hexagon {
  width: 28px;
  height: 16px;
  background: #7A93A8;
  position: relative;
}

.mark-hexagon::before,
.mark-hexagon::after {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  left: 0;
  border-left: 14px solid transparent;
  border-right: 14px solid transparent;
}

.mark-hexagon::before {
  top: -9px;
  border-bottom: 9px solid #7A93A8;
}

.mark-hexagon::after {
  bottom: -9px;
  border-top: 9px solid #7A93A8;
}

.mark-square {
  width: 24px;
  height: 24px;
  border: 5px solid #7A93A8;
  border-radius: 4px;
}

.client-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--ink-muted);
  letter-spacing: 0.02em;
}

/* ============================================================
   SPLIT CTA BAND
   ============================================================ */
.cta-section {
  padding: 40px 0 72px;
  background: var(--bg);
}

.cta-band {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 40px;
  align-items: center;
  background: linear-gradient(130deg, #0C4A6E 0%, #075985 100%);
  border-radius: 22px;
  padding: 48px 52px;
  position: relative;
  overflow: hidden;
}

.cta-band::before {
  content: "";
  position: absolute;
  top: -70px;
  right: -40px;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: rgba(14, 165, 233, 0.35);
  filter: blur(10px);
}

.cta-band h2 {
  font-size: 32px;
  line-height: 1.22;
  color: #FFFFFF;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 14px;
  position: relative;
}

.cta-band p {
  font-size: 16px;
  color: #E0F2FE;
  max-width: 480px;
  position: relative;
}

.cta-actions {
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: relative;
}

.cta-actions .btn {
  justify-content: center;
}

.cta-actions .btn-light {
  background: #FFFFFF;
  color: var(--sky-dark);
}

.cta-actions .btn-light:hover {
  color: var(--sky-dark);
  background: var(--ice);
}

.cta-actions .btn-outline {
  background: #0B4160;
  color: #E0F2FE;
  border: 1px solid #7DD3FC;
}

.cta-actions .btn-outline:hover {
  color: #FFFFFF;
  border-color: #E0F2FE;
  background: #0C4A6E;
}

/* ============================================================
   FOOTER — asymmetric two-column
   ============================================================ */
.footer {
  background: #0B2433;
  color: #E0F2FE;
  padding: 54px 0 44px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 40px;
}

.footer-about h3 {
  font-size: 20px;
  color: #FFFFFF;
  font-weight: 700;
  letter-spacing: 0.01em;
  margin-bottom: 14px;
}

.footer-about p {
  font-size: 15px;
  color: #9FC4DC;
  max-width: 520px;
  line-height: 1.65;
}

.footer-contact {
  margin-top: 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
}

.footer-contact a {
  color: #E0F2FE;
  font-size: 15px;
  font-weight: 600;
}

.footer-contact a:hover {
  color: #FFFFFF;
}

.footer-links {
  border-left: 1px solid #2A4A61;
  padding-left: 32px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: flex-start;
}

.footer-links .link-label {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: #7DD3FC;
  font-weight: 700;
  margin-bottom: 2px;
}

.footer-links a {
  color: #E0F2FE;
  font-size: 15px;
  font-weight: 600;
}

.footer-links a:hover {
  color: #FFFFFF;
}

.footer-base {
  margin-top: 40px;
  padding-top: 22px;
  border-top: 1px solid #16374C;
  font-size: 13px;
  color: #7FA6C0;
}

/* ============================================================
   REVEAL ANIMATION (safe without JS)
   ============================================================ */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: none;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .hero-copy h1 {
    font-size: 38px;
  }

  .process-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 34px;
  }

  .process-grid::before {
    display: none;
  }
}

@media (max-width: 860px) {
  .icon-rail {
    display: none;
  }

  .mobile-topbar {
    display: flex;
  }

  .home-page {
    margin-left: 0;
  }

  .wrapper {
    padding: 0 20px;
  }

  .hero-section {
    padding: 40px 0 44px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .hero-copy h1 {
    font-size: 32px;
  }

  .ticker-hero {
    height: 300px;
  }

  .statement-section .statement {
    font-size: 24px;
  }

  .cta-band {
    grid-template-columns: 1fr;
    padding: 36px 28px;
  }

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

  .footer-links {
    border-left: none;
    padding-left: 0;
    border-top: 1px solid #2A4A61;
    padding-top: 24px;
  }
}

@media (max-width: 480px) {
  .process-grid {
    grid-template-columns: 1fr;
  }

  .hero-copy h1 {
    font-size: 28px;
  }

  .section-head h2 {
    font-size: 27px;
  }

  .client-item {
    flex: 1 1 45%;
    border-right: none;
  }
}
