:root {
  --bg: #f7fbff;
  --white: #fff;
  --text: #0f172a;
  --muted: #64748b;
  --line: #e2e8f0;
  --primary: #0E4AF0;
  --secondary: #F03B0E;
  --primary-soft: #eef4ff;
  --secondary-soft: #fff1ed;
  --sky: #0E4AF0;
  --gold: #F03B0E;
  --gold-soft: #fff1ed;
  --dark: #020617;
  --shadow: 0 18px 50px rgba(14, 74, 240, .10);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(14, 74, 240, .08), transparent 25%),
    radial-gradient(circle at bottom right, rgba(240, 59, 14, .08), transparent 28%),
    linear-gradient(135deg, #f7fbff 0%, #fff 58%, #fff7f4 100%);
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; }
button, input, select, textarea { font: inherit; }

::selection {
  background: rgba(14, 74, 240, .16);
  color: var(--text);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 18px;
}

.topbar {
  background: linear-gradient(90deg, var(--primary), #052a91);
  color: #fff;
  border-bottom: 1px solid rgba(255, 255, 255, .08);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .14em;
}

.topbar-inner {
  display: flex;
  gap: 14px;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  flex-wrap: wrap;
}

.topbar-inner div:nth-child(2) { white-space: nowrap; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, .96);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(14, 74, 240, .10);
  box-shadow: 0 10px 30px rgba(15, 23, 42, .06);
  transition: box-shadow .3s ease, border-color .3s ease;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  gap: 16px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0;
  min-width: 144px;
}

.brand img {
  width: 148px;
  height: auto;
  display: block;
}

.menu {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.menu a,
.dropbtn {
  border: none;
  background: none;
  color: #26364f;
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  padding: 10px 12px;
  border-radius: 8px;
  transition: color .25s ease, background .25s ease, transform .25s ease;
}

.menu a:hover,
.menu a.active,
.dropbtn:hover,
.dropdown:has(a.active) .dropbtn {
  color: var(--primary);
  background: var(--primary-soft);
}

.cta {
  background: var(--secondary);
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 11px 16px;
  font-weight: 800;
  cursor: pointer;
  box-shadow: 0 16px 35px rgba(240, 59, 14, .22);
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
}

.cta:hover {
  background: #c92f0b;
  transform: translateY(-2px);
  box-shadow: 0 20px 45px rgba(240, 59, 14, .28);
}

.mobile-toggle {
  display: none;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 9px 11px;
  cursor: pointer;
  color: var(--primary);
}

.mobile-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: currentColor;
  margin: 4px 0;
}

.dropdown { position: relative; }

.dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  background: #fff;
  min-width: 280px;
  border: 1px solid rgba(14, 74, 240, .12);
  border-radius: 8px;
  padding: 10px;
  box-shadow: 0 24px 60px rgba(15, 23, 42, .14);
  opacity: 0;
  transform: translateY(8px);
  pointer-events: none;
  transition: opacity .22s ease, transform .22s ease;
}

.dropdown:hover .dropdown-menu,
.dropdown:focus-within .dropdown-menu,
.dropdown.open .dropdown-menu {
  display: block;
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.dropdown-menu .label {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: .16em;
  color: var(--secondary);
  font-weight: 800;
  padding: 8px 10px;
}

.dropdown-menu a {
  display: block;
  width: 100%;
  text-align: left;
  padding: 10px 12px;
  border-radius: 8px;
  color: #26364f;
  font-size: 14px;
  transition: background .2s ease, color .2s ease, transform .2s ease;
}

.dropdown-menu a:hover,
.dropdown-menu a.active {
  background: var(--primary-soft);
  color: var(--primary);
  transform: translateX(3px);
}

.mobile-panel {
  display: none;
  border-top: 1px solid var(--line);
  background: linear-gradient(180deg, #fff, #f8fbff);
}

.mobile-panel.open { display: block; }

.mobile-links {
  display: grid;
  gap: 8px;
  padding: 12px 0 16px;
}

.mobile-links a {
  display: block;
  padding: 13px 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: #26364f;
  font-weight: 700;
  background: #fff;
}

.mobile-links a.active,
.mobile-links a:hover {
  background: var(--primary-soft);
  color: var(--primary);
  border-color: rgba(14, 74, 240, .22);
}

.mobile-link-group {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 8px;
  background: #fff;
}

.mobile-submenu-toggle {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border: 0;
  background: #fff;
  padding: 12px 10px;
  color: var(--secondary);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-weight: 850;
  cursor: pointer;
}

.mobile-submenu-toggle::after {
  content: "+";
  color: var(--primary);
  font-size: 18px;
  line-height: 1;
}

.mobile-link-group.open .mobile-submenu-toggle::after {
  content: "-";
}

.mobile-submenu {
  display: none;
  gap: 6px;
  padding-top: 6px;
}

.mobile-link-group.open .mobile-submenu {
  display: grid;
}

.mobile-submenu a {
  border: 0;
  background: #f8fafc;
}

.hero { padding: 38px 0 28px; }

.premium-hero {
  position: relative;
  overflow: hidden;
}

.premium-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(115deg, rgba(14, 74, 240, .10), transparent 42%),
    linear-gradient(35deg, transparent 62%, rgba(240, 59, 14, .10));
  pointer-events: none;
}

.premium-hero .container {
  position: relative;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.02fr .98fr;
  gap: 34px;
  align-items: center;
}

.pill,
.mini-tag {
  display: inline-block;
  border-radius: 999px;
  text-transform: uppercase;
  font-size: 10px;
  font-weight: 800;
}

.pill {
  padding: 8px 14px;
  border: 1px solid rgba(240, 59, 14, .22);
  background: #fff;
  color: var(--secondary);
  letter-spacing: .16em;
}

h1 {
  font-size: 56px;
  line-height: 1.02;
  margin: 18px 0 0;
  letter-spacing: -.02em;
}

.lead {
  font-size: 18px;
  line-height: 1.8;
  color: var(--muted);
  max-width: 700px;
  margin: 18px 0 0;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 24px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 18px;
  border-radius: 8px;
  font-weight: 800;
  font-size: 14px;
  cursor: pointer;
  border: 1px solid transparent;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease, border-color .25s ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 38px rgba(14, 74, 240, .18);
}

.btn-dark { background: var(--primary); color: #fff; }
.btn-gold { background: var(--secondary-soft); color: var(--secondary); border-color: rgba(240, 59, 14, .22); }
.full-width-btn {
  display: flex;
  width: 100%;
}
.btn-link {
  color: var(--primary);
  background: #fff;
  border-color: rgba(14, 74, 240, .18);
}

.hero-stats,
.quick-grid,
.grid-2,
.grid-3,
.grid-4 {
  display: grid;
  gap: 16px;
}

.hero-stats {
  grid-template-columns: repeat(3, 1fr);
  margin-top: 26px;
}

.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 22px;
  box-shadow: var(--shadow);
  transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
}

.card:hover {
  transform: translateY(-4px);
  border-color: rgba(14, 74, 240, .20);
  box-shadow: 0 24px 60px rgba(14, 74, 240, .13);
}

.soft-card {
  background: #f8fafc;
  border-radius: 8px;
  padding: 18px;
}

.hero-image {
  position: relative;
  background: #fff;
  border: 1px solid rgba(255, 255, 255, .7);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 24px 70px rgba(15, 23, 42, .12);
  isolation: isolate;
}

.hero-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 45%, rgba(2, 6, 23, .24)),
    linear-gradient(120deg, rgba(14, 74, 240, .12), transparent 42%);
  pointer-events: none;
  z-index: 1;
}

.hero-image img {
  width: 100%;
  height: 540px;
  object-fit: cover;
  display: block;
  transform: scale(1.025);
  transition: opacity .45s ease, transform .85s cubic-bezier(.22, 1, .36, 1), filter .45s ease;
}

.hero-is-changing .hero-image img {
  opacity: .22;
  transform: scale(1.09) translateX(14px);
  filter: saturate(1.1) blur(1px);
}

.floating {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  background: rgba(255, 255, 255, .9);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, .7);
  border-radius: 8px;
  padding: 14px;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
  z-index: 2;
  transition: transform .45s ease, opacity .45s ease;
}

.floating::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  transform-origin: left;
  animation: slideProgress 5s linear infinite;
}

.hero-is-changing .floating {
  opacity: .25;
  transform: translateY(10px);
}

.slider-controls { display: flex; gap: 8px; }

.iconbtn {
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 8px;
  padding: 10px 12px;
  cursor: pointer;
  transition: transform .22s ease, background .22s ease, color .22s ease;
}

.iconbtn:hover {
  background: var(--primary);
  color: #fff;
  transform: translateY(-2px);
}

.section { padding: 70px 0; }

.section.alt {
  background: #fff;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.section-head {
  text-align: center;
  max-width: 820px;
  margin: 0 auto 42px;
}

.section-head h2 {
  font-size: 42px;
  line-height: 1.1;
  margin: 16px 0 0;
}

.section-head p {
  margin: 14px 0 0;
  color: var(--muted);
  line-height: 1.8;
}

.quick-grid { grid-template-columns: repeat(4, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.mini-tag {
  background: var(--gold-soft);
  color: var(--secondary);
  padding: 6px 10px;
  letter-spacing: .14em;
}

.muted { color: var(--muted); }
.title { font-size: 21px; font-weight: 850; margin-top: 12px; }
.large-number { font-size: 28px; font-weight: 850; }

.image-card { overflow: hidden; padding: 0; }
.image-wrap { position: relative; }
.image-card img { width: 100%; height: 220px; object-fit: cover; display: block; }
.image-card img,
.market-card img {
  transition: transform .65s cubic-bezier(.22, 1, .36, 1), filter .35s ease;
}

.image-card:hover img,
.market-card:hover img {
  transform: scale(1.055);
  filter: saturate(1.06) contrast(1.03);
}
.image-card-content { padding: 22px; }

.badge {
  position: absolute;
  left: 16px;
  top: 16px;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 850;
  background: rgba(255, 255, 255, .92);
  color: var(--text);
}

.tabs {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 30px;
}

.tab {
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 999px;
  padding: 12px 18px;
  font-weight: 800;
  cursor: pointer;
}

.tab.active {
  background: var(--primary);
  color: #fff;
  border-color: var(--dark);
}

form { display: grid; gap: 18px; }

.form-grid-2,
.form-grid-3 { display: grid; gap: 18px; }

.form-grid-2 { grid-template-columns: repeat(2, 1fr); }
.form-grid-3 { grid-template-columns: repeat(3, 1fr); }

label {
  display: grid;
  gap: 8px;
  font-size: 14px;
  font-weight: 800;
  color: #334155;
}

input,
select,
textarea {
  width: 100%;
  padding: 14px 15px;
  border-radius: 8px;
  border: 1px solid var(--line);
  outline: none;
  background: #fff;
}

input:focus,
select:focus,
textarea:focus {
  border-color: #7dd3fc;
  box-shadow: 0 0 0 4px rgba(125, 211, 252, .18);
}

.submit-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  padding: 16px;
  border-radius: 8px;
  background: linear-gradient(to right, #fef3c7, #fff);
  font-size: 14px;
  color: var(--muted);
}

.checkbox {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  background: #f8fafc;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 14px 16px;
}

.checkbox input {
  width: 16px;
  height: 16px;
  margin-top: 4px;
}

.success {
  margin-top: 18px;
  padding: 16px 18px;
  border-radius: 8px;
  background: #ecfeff;
  border: 1px solid #bae6fd;
  color: #0c4a6e;
}

.status-box {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 24px;
  box-shadow: var(--shadow);
}

.status-pill {
  display: inline-block;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 850;
}

.status-pill.gold { background: var(--gold-soft); color: #b45309; }
.status-pill.blue { background: #e0f2fe; color: #0369a1; }

.steps { display: grid; gap: 10px; margin-top: 18px; }

.step {
  display: flex;
  gap: 10px;
  align-items: center;
  color: var(--muted);
  font-size: 14px;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: #cbd5e1;
  flex: 0 0 auto;
}

.dot.active-blue { background: #0ea5e9; }
.dot.active-gold { background: #f59e0b; }

.faq-item {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 20px;
  box-shadow: var(--shadow);
}

#faqList { display: grid; gap: 14px; }

.faq-q {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
  font-weight: 850;
  font-size: 18px;
  cursor: pointer;
}

.faq-a {
  margin-top: 14px;
  color: var(--muted);
  line-height: 1.8;
  display: none;
}

.faq-item.open .faq-a { display: block; }

.feedback-stars { color: var(--secondary); letter-spacing: .08em; }
.feedback-card .name { font-weight: 850; color: var(--secondary); font-size: 13px; margin-top: 10px; }
.feedback-card .quote { margin-top: 10px; line-height: 1.8; color: var(--muted); }

.contact {
  border: 1px solid rgba(14, 74, 240, .35);
  background: linear-gradient(135deg, #04164e 0%, var(--primary) 62%, var(--secondary) 100%);
  color: #fff;
  border-radius: 8px;
  padding: 32px;
  box-shadow: 0 24px 70px rgba(15, 23, 42, .28);
}

.contact-hero h2 {
  font-size: 42px;
  line-height: 1.12;
}

.contact-hero p {
  color: #e5edff;
  line-height: 1.85;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 30px;
  align-items: center;
}

.contact-card {
  border: 1px solid rgba(255, 255, 255, .15);
  background: rgba(255, 255, 255, .10);
  backdrop-filter: blur(8px);
  border-radius: 8px;
  padding: 22px;
  line-height: 1.9;
  color: #e2e8f0;
}

.contact-card strong { color: #fff; }

.contact-row {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin-top: 8px;
}

.contact-row .ico { color: #fbbf24; margin-top: 4px; }

.contact-form-grid {
  display: grid;
  grid-template-columns: .86fr 1.14fr;
  gap: 36px;
  align-items: start;
}

.contact-form-grid h2 {
  font-size: 40px;
  line-height: 1.12;
  margin: 16px 0 0;
}

.contact-note {
  margin-top: 22px;
  display: grid;
  gap: 8px;
  padding: 18px;
  border-left: 4px solid var(--secondary);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
  color: var(--muted);
  line-height: 1.75;
}

.contact-note strong {
  color: var(--text);
}

.premium-form {
  position: relative;
  overflow: hidden;
}

.premium-form::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
}

.site-footer {
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(14, 74, 240, .12);
  background:
    radial-gradient(circle at 12% 20%, rgba(14, 74, 240, .34), transparent 28%),
    radial-gradient(circle at 88% 12%, rgba(240, 59, 14, .24), transparent 25%),
    linear-gradient(135deg, #040b1f 0%, #071331 54%, #0d1b43 100%);
  color: #dbe7ff;
}

.site-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, .04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .04) 1px, transparent 1px);
  background-size: 42px 42px;
  opacity: .35;
  pointer-events: none;
}

.footer-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.25fr .8fr 1fr;
  gap: 42px;
  padding: 58px 0 44px;
  color: #dbe7ff;
  font-size: 14px;
}

.footer-logo {
  width: 148px;
  display: block;
  margin-bottom: 16px;
  background: #fff;
  border-radius: 8px;
  padding: 8px;
  box-shadow: 0 18px 45px rgba(0, 0, 0, .16);
}

.footer-links {
  display: grid;
  gap: 9px;
  margin-top: 12px;
}

.footer-links a {
  color: #dbe7ff;
  font-weight: 700;
  transition: color .22s ease, transform .22s ease;
}

.footer-links a::before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  margin-right: 9px;
  border-radius: 999px;
  background: var(--secondary);
  vertical-align: middle;
}

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

.footer-links a:hover {
  transform: translateX(4px);
}

.footer-title {
  color: #fff;
  font-size: 16px;
  font-weight: 850;
  margin-bottom: 14px;
  letter-spacing: .02em;
}

.footer-copy { line-height: 1.9; color: #b9c8f2; }

.footer-contact-list {
  display: grid;
  gap: 12px;
}

.footer-contact-list div {
  display: grid;
  grid-template-columns: 34px 1fr;
  align-items: start;
  gap: 10px;
}

.footer-contact-list span {
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: rgba(255, 255, 255, .10);
  color: #fff;
  font-weight: 900;
}

.footer-contact-list a {
  color: #dbe7ff;
}

.footer-bottom {
  position: relative;
  border-top: 1px solid rgba(255, 255, 255, .12);
  padding: 18px 0;
  color: #aebdea;
  font-size: 13px;
}
.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
}

.hide { display: none !important; }
.gold-panel { background: linear-gradient(to bottom, #fff, var(--secondary-soft)); border-color: rgba(240, 59, 14, .18); }
.blue-panel { background: linear-gradient(to bottom, #fff, var(--primary-soft)); }
.chip-wrap { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 18px; }
.chip { padding: 10px 14px; border-radius: 999px; box-shadow: none; }

.premium-hero {
  padding-top: 58px;
  padding-bottom: 54px;
}

#heroTitle,
#heroText {
  transition: opacity .38s ease, transform .38s ease;
}

.hero-is-changing #heroTitle,
.hero-is-changing #heroText {
  opacity: 0;
  transform: translateY(12px);
}

.overlap-section {
  margin-top: -26px;
  position: relative;
  z-index: 2;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  overflow: hidden;
  border: 1px solid rgba(14, 74, 240, .12);
  border-radius: 8px;
  background: rgba(14, 74, 240, .12);
  box-shadow: 0 24px 65px rgba(15, 23, 42, .12);
}

.trust-strip > div {
  background: #fff;
  padding: 24px;
  transition: background .28s ease, transform .28s ease;
}

.trust-strip > div:hover {
  background: linear-gradient(180deg, #fff, var(--primary-soft));
  transform: translateY(-2px);
}

.trust-strip strong {
  display: block;
  margin-top: 10px;
  color: var(--text);
  font-size: 17px;
}

.trust-strip p {
  margin: 8px 0 0;
  color: var(--muted);
  line-height: 1.7;
  font-size: 14px;
}

.trust-kicker {
  color: var(--secondary);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .14em;
}

.stat-card {
  border-color: rgba(14, 74, 240, .10);
}

.split-feature {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 42px;
  align-items: center;
}

.split-feature.reverse {
  grid-template-columns: .95fr 1.05fr;
}

.split-feature h2,
.cta-band h2 {
  font-size: 42px;
  line-height: 1.12;
  margin: 16px 0 0;
}

.lead-sm {
  color: #334155;
  font-size: 17px;
  line-height: 1.85;
  margin: 18px 0 0;
}

.feature-image-card img {
  height: 360px;
}

.capability-card {
  position: relative;
  overflow: hidden;
}

.capability-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
}

.brand-list {
  display: grid;
  gap: 12px;
  margin-top: 22px;
}

.brand-list div {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 14px;
  padding: 16px;
  border: 1px solid rgba(14, 74, 240, .12);
  border-radius: 8px;
  background: #fff;
}

.brand-list strong {
  color: var(--primary);
}

.brand-list span {
  color: var(--muted);
  line-height: 1.7;
}

.market-card {
  overflow: hidden;
  padding: 0;
}

.market-card img {
  width: 100%;
  height: 210px;
  object-fit: cover;
  display: block;
}

.market-card .title,
.market-card p {
  margin-left: 22px;
  margin-right: 22px;
}

.market-card p {
  margin-bottom: 22px;
}

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

.process-step {
  padding: 24px;
  border: 1px solid rgba(14, 74, 240, .12);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
  transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
}

.process-step:hover {
  transform: translateY(-5px);
  border-color: rgba(14, 74, 240, .22);
  box-shadow: 0 24px 60px rgba(14, 74, 240, .14);
}

.process-step span {
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  color: #fff;
  background: var(--primary);
  font-weight: 900;
}

.process-step strong {
  display: block;
  margin-top: 18px;
  font-size: 18px;
}

.process-step p {
  color: var(--muted);
  line-height: 1.75;
}

.cta-band {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px;
  align-items: center;
  padding: 34px;
  border-radius: 8px;
  background: linear-gradient(135deg, #06184d, var(--primary) 62%, var(--secondary));
  color: #fff;
  box-shadow: 0 28px 75px rgba(14, 74, 240, .24);
  position: relative;
  overflow: hidden;
}

.cta-band::after {
  content: "";
  position: absolute;
  inset: -60% auto auto -10%;
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(255, 255, 255, .22), transparent 65%);
  animation: premiumGlow 7s ease-in-out infinite alternate;
}

.cta-band .mini-tag {
  background: rgba(255, 255, 255, .16);
  color: #fff;
}

.cta-band p {
  color: #e5edff;
  line-height: 1.8;
  max-width: 780px;
}

.cta-band-actions {
  display: grid;
  gap: 12px;
  min-width: 240px;
}

.reveal-on-scroll {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .65s ease, transform .65s cubic-bezier(.22, 1, .36, 1);
}

.reveal-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes slideProgress {
  from { transform: scaleX(0); }
  to { transform: scaleX(1); }
}

@keyframes premiumGlow {
  from { transform: translate3d(0, 0, 0) scale(1); opacity: .75; }
  to { transform: translate3d(70px, 35px, 0) scale(1.18); opacity: .38; }
}

@media (max-width: 1120px) {
  .menu { display: none; }
  .mobile-toggle { display: block; }
  .cta { display: none; }
}

@media (min-width: 1121px) {
  .dropdown.open .dropdown-menu {
    display: none;
  }

  .dropdown:hover .dropdown-menu,
  .dropdown:focus-within .dropdown-menu {
    display: block;
  }
}

@media (max-width: 1024px) {
  .hero-grid,
  .contact-grid,
  .grid-2 { grid-template-columns: 1fr; }
  .hero-image { order: -1; }
  .grid-4,
  .quick-grid { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .trust-strip,
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .split-feature,
  .split-feature.reverse,
  .cta-band { grid-template-columns: 1fr; }
}

@media (max-width: 720px) {
  .container { padding: 0 18px; }
  .topbar { font-size: 8px; letter-spacing: .055em; }
  .topbar { text-transform: none; font-weight: 800; }
  .topbar-inner {
    display: block;
    padding: 8px 22px;
    text-align: center;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: clip;
  }
  .topbar-inner div { display: none; }
  .topbar-inner div:nth-child(2) { display: block; }
  .site-header .container { padding-left: 22px; padding-right: 22px; }
  .nav { padding: 12px 0; }
  .brand { min-width: 0; }
  .brand img { width: 126px; }
  h1 { font-size: 36px; }
  .section { padding: 54px 0; }
  .section-head h2 { font-size: 32px; }
  .lead { font-size: 16px; }
  .hero-image img { height: 320px; }
  .hero-stats,
  .grid-4,
  .quick-grid,
  .grid-3,
  .form-grid-2,
  .form-grid-3 { grid-template-columns: 1fr; }
  .floating {
    left: 12px;
    right: 12px;
    bottom: 12px;
    padding: 12px;
    align-items: flex-start;
  }
  .mobile-panel {
    margin: 0 14px 14px;
    border: 1px solid rgba(14, 74, 240, .12);
    border-radius: 8px;
    box-shadow: 0 18px 45px rgba(15, 23, 42, .10);
  }
  .mobile-links { padding: 12px; }
  .contact { padding: 24px; }
  .contact-form-grid { grid-template-columns: 1fr; }
  .contact-form-grid h2,
  .contact-hero h2 { font-size: 31px; }
  .submit-row .btn { width: 100%; }
  .footer-inner { grid-template-columns: 1fr; padding: 34px 0; }
  .footer-bottom-inner { display: grid; }
  .premium-hero { padding-top: 36px; }
  .trust-strip,
  .process-grid { grid-template-columns: 1fr; }
  .split-feature h2,
  .cta-band h2 { font-size: 31px; }
  .brand-list div { grid-template-columns: 1fr; }
  .feature-image-card img { height: 260px; }
  .cta-band { padding: 24px; }
  .cta-band-actions { min-width: 0; }
}
