:root {
  --purple: #24116f;
  --violet: #8c52ff;
  --blue: #0c6cab;
  --green: #10b968;
  --gold: #f5b942;
  --ink: #101421;
  --muted: #687083;
  --line: #e6e8ef;
  --paper: #ffffff;
  --mist: #f7f9ff;
  --deep: #080b18;
  --shadow: 0 24px 70px rgba(20, 12, 72, .14);
  --soft-shadow: 0 14px 40px rgba(20, 12, 72, .08);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: linear-gradient(180deg, #ffffff 0, #f7f9ff 420px, #eef3fb 100%);
  font-family: Inter, Arial, sans-serif;
  line-height: 1.55;
}
body.loaded .page-loader { opacity: 0; visibility: hidden; pointer-events: none; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.ticker-wrap {
  overflow: hidden;
  background: #080b18;
  border-bottom: 1px solid rgba(245,185,66,.22);
  color: #c7d1ec;
}
.ticker-move {
  display: flex;
  width: max-content;
  animation: tickerMove 34s linear infinite;
  white-space: nowrap;
}
.ticker-move:hover { animation-play-state: paused; }
.ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 24px;
  font-size: 12px;
  font-weight: 850;
}
.ticker-item strong { color: var(--gold); }
.ticker-up { color: #4ade80; }
.ticker-down { color: #f87171; }
@keyframes tickerMove {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
.page-loader {
  position: fixed;
  inset: 0;
  z-index: 999;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #080b18, #24116f 58%, #0c6cab);
  color: white;
  transition: opacity .45s ease, visibility .45s ease;
}
.loader-card {
  width: min(420px, calc(100vw - 40px));
  padding: 30px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 24px;
  background: rgba(255,255,255,.1);
  box-shadow: 0 34px 90px rgba(0,0,0,.3);
  backdrop-filter: blur(18px);
  text-align: center;
}
.loader-logo {
  width: min(270px, 80vw);
  height: auto;
  margin: 0 auto;
  border-radius: 8px;
  box-shadow: 0 22px 60px rgba(0,0,0,.22);
  animation: logoPulse 1.35s ease-in-out infinite;
}
.loader-market {
  position: relative;
  display: flex;
  justify-content: center;
  gap: 18px;
  min-height: 90px;
  margin-bottom: 18px;
}
.loader-animal {
  width: 84px;
  height: 84px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255,255,255,.14);
  border: 1px solid rgba(255,255,255,.18);
  font-size: 42px;
  animation: marketPulse 1.4s ease-in-out infinite;
}
.loader-animal.bear { animation-delay: .28s; }
.loader-line {
  height: 8px;
  border-radius: 999px;
  overflow: hidden;
  background: rgba(255,255,255,.18);
}
.loader-line i {
  display: block;
  width: 45%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--green), var(--gold));
  animation: loaderMove 1.15s ease-in-out infinite;
}
.loader-card h2 { margin: 0 0 8px; font-size: 28px; color: white; }
.loader-card p { margin: 0 0 18px; color: #dce4ff; }
@keyframes marketPulse {
  0%, 100% { transform: translateY(0) scale(1); opacity: .78; }
  50% { transform: translateY(-12px) scale(1.06); opacity: 1; }
}
@keyframes loaderMove {
  0% { transform: translateX(-105%); }
  100% { transform: translateX(235%); }
}
@keyframes logoPulse {
  0%, 100% { transform: scale(1); opacity: .9; }
  50% { transform: scale(1.035); opacity: 1; }
}
.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px 6vw;
  background: rgba(255,255,255,.92);
  border-bottom: 1px solid rgba(230,232,239,.8);
  backdrop-filter: blur(16px);
}
body.has-ticker .topbar {
  background: rgba(8,11,24,.9);
  border-bottom-color: rgba(245,185,66,.16);
  box-shadow: 0 18px 44px rgba(8,11,24,.22);
}
body.has-ticker .topbar .nav { color: #d8def3; }
body.has-ticker .topbar .brand span { color: white; }
.brand { display: inline-flex; align-items: center; gap: 10px; font-weight: 900; color: var(--purple); }
.brand img { width: 170px; height: 54px; object-fit: contain; border-radius: 6px; background: #5270ff; }
.brand span { font-size: 22px; letter-spacing: 0; }
.nav { display: flex; align-items: center; gap: 24px; color: #3b4254; font-size: 14px; font-weight: 800; }
.nav a:hover { color: var(--violet); }
.actions { display: flex; gap: 10px; align-items: center; flex-wrap: wrap; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid transparent;
  background: linear-gradient(135deg, var(--green), #0d9153);
  color: white;
  font-weight: 900;
  font-size: 14px;
  box-shadow: 0 12px 28px rgba(16,185,104,.22);
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 16px 34px rgba(16,185,104,.24); }
.btn.secondary { background: white; color: var(--purple); border-color: var(--line); box-shadow: none; }
.btn.secondary:hover { border-color: rgba(140,82,255,.34); box-shadow: 0 12px 26px rgba(20,12,72,.08); }
.btn.violet { background: linear-gradient(135deg, var(--violet), #5b34d8); box-shadow: 0 14px 34px rgba(140,82,255,.25); }
.btn.gold { background: linear-gradient(135deg, #ffd76b, var(--gold)); color: var(--ink); box-shadow: 0 14px 34px rgba(245,185,66,.26); }
.hero {
  position: relative;
  display: grid;
  grid-template-columns: 1.02fr .98fr;
  gap: 54px;
  min-height: 720px;
  padding: 84px 6vw 70px;
  overflow: hidden;
  color: white;
  background: linear-gradient(120deg, rgba(36,17,111,.97), rgba(8,11,24,.92)), url("https://www.fintitans.in/admin/light/upload/DISCOVER%20DIFFERENT%20WORLD%20(3)22012024_170592222812052025_1747063533.png") center/cover;
}
.hero.trading-hero {
  background:
    linear-gradient(rgba(245,185,66,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(245,185,66,.04) 1px, transparent 1px),
    radial-gradient(circle at 72% 28%, rgba(245,185,66,.12), transparent 28%),
    radial-gradient(circle at 22% 72%, rgba(16,185,104,.12), transparent 26%),
    linear-gradient(135deg, #080b18 0%, #24116f 48%, #071b2e 100%);
  background-size: 64px 64px, 64px 64px, auto, auto, auto;
}
.auth-hero {
  min-height: calc(100vh - 112px);
  grid-template-columns: .98fr 1.02fr;
  align-items: center;
  padding-top: 54px;
  padding-bottom: 54px;
  background:
    linear-gradient(110deg, rgba(36,17,111,.96), rgba(8,11,24,.72)),
    url("https://www.fintitans.in/images/Screenshot_20250426-163208.png") right center/contain no-repeat,
    linear-gradient(135deg, #130a46, #0b1024);
}
.auth-hero:after { height: 90px; }
.auth-copy h1 {
  max-width: 620px;
  font-size: clamp(38px, 4.2vw, 58px);
  line-height: 1.04;
}
.auth-copy p { max-width: 560px; font-size: 18px; }
.auth-points { display: grid; gap: 12px; margin-top: 28px; max-width: 560px; }
.auth-points div {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 16px;
  background: rgba(255,255,255,.08);
  color: #eef3ff;
  font-weight: 800;
}
.auth-panel {
  width: min(100%, 520px);
  justify-self: end;
  padding: 34px;
  border-radius: 28px;
  box-shadow: 0 30px 90px rgba(8,11,24,.18);
}
.auth-panel h2 { font-size: 34px; margin-bottom: 6px; }
.auth-panel input, .auth-panel select { min-height: 58px; border-radius: 16px; }
.auth-panel .btn { width: 100%; min-height: 58px; margin-top: 4px; }
.auth-meta { display: flex; justify-content: space-between; gap: 18px; flex-wrap: wrap; font-size: 14px; }
.hero:after { content: ""; position: absolute; inset: auto 0 0; height: 160px; background: linear-gradient(0deg, rgba(245,247,251,1), transparent); pointer-events: none; }
.hero > * { position: relative; z-index: 1; }
.eyebrow, .badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(140,82,255,.12);
  color: #5e39db;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .06em;
}
.hero .eyebrow { background: rgba(255,255,255,.12); color: #e8defe; border: 1px solid rgba(255,255,255,.18); }
.hero h1, .page-hero h1 { margin: 18px 0; font-size: clamp(42px, 5vw, 74px); line-height: .98; letter-spacing: 0; }
.hero p, .page-hero p { color: #dce4ff; font-size: 20px; max-width: 680px; }
.hero .market-card p,
.hero .card p,
.hero .course-card p,
.hero .visual-card p {
  color: var(--muted);
}
.hero .market-card h2,
.hero .market-card h3,
.hero .card h2,
.hero .card h3 {
  color: var(--ink);
}
.hero .market-card .price,
.hero .card .price {
  color: var(--purple);
}
.hero-panel { align-self: center; padding: 18px; border: 1px solid rgba(255,255,255,.18); border-radius: 28px; background: rgba(255,255,255,.12); box-shadow: 0 30px 90px rgba(0,0,0,.28); backdrop-filter: blur(18px); }
.market-card { padding: 26px; border-radius: 22px; background: white; color: var(--ink); }
.chart { height: 190px; border-radius: 18px; background: linear-gradient(90deg, rgba(36,17,111,.06) 1px, transparent 1px), linear-gradient(rgba(36,17,111,.06) 1px, transparent 1px), linear-gradient(160deg, #ffffff, #f1f4ff); background-size: 48px 48px; position: relative; overflow: hidden; }
.chart svg { position: absolute; inset: 20px; width: calc(100% - 40px); height: calc(100% - 40px); }
.image-stack { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.image-stack img { width: 100%; height: 180px; object-fit: cover; border-radius: 18px; box-shadow: 0 14px 34px rgba(20,12,72,.12); }
.image-stack img:first-child { grid-column: 1 / -1; height: 260px; }
.tracking-visual { display: grid; grid-template-columns: .9fr 1.1fr; gap: 18px; align-items: center; }
.tracking-phone { max-width: 250px; margin: auto; border-radius: 28px; box-shadow: 0 28px 70px rgba(20,12,72,.18); background: white; padding: 10px; }
.tracking-phone img { border-radius: 22px; width: 100%; }
.progress-bars { display: grid; gap: 14px; }
.progress-item { padding: 14px; border: 1px solid var(--line); border-radius: 16px; background: white; }
.progress-item span { display: flex; justify-content: space-between; font-weight: 900; color: var(--purple); }
.progress-track { height: 9px; margin-top: 10px; border-radius: 999px; background: #e9edf7; overflow: hidden; }
.progress-track i { display: block; height: 100%; border-radius: inherit; background: linear-gradient(90deg, var(--green), var(--violet)); }
.visual-card { padding: 0; overflow: hidden; }
.visual-card img { width: 100%; height: 230px; object-fit: cover; }
.visual-card .body { padding: 22px; }
.visual-card.icon-card img {
  height: 190px;
  object-fit: contain;
  padding: 38px 44px 18px;
  background: linear-gradient(180deg, #ffffff, #f6f9ff);
}
.visual-card.icon-card .body { padding: 18px 28px 28px; }
.visual-card.icon-card h3 { min-height: 54px; }
.logo-cloud { display: grid; grid-template-columns: repeat(6, 1fr); gap: 14px; }
.logo-cloud div { min-height: 74px; display: grid; place-items: center; border: 1px solid var(--line); border-radius: 16px; background: white; color: var(--purple); font-weight: 950; }
.format-card { min-height: 360px; display: grid; align-content: end; color: white; background: center/cover; isolation: isolate; }
.format-card:before { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent, rgba(8,11,24,.88)); z-index: -1; }
.metric-wall { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; overflow: hidden; border-radius: 28px; background: var(--line); border: 1px solid var(--line); }
.metric-wall .metric { padding: 28px; background: white; }
.metric strong { display: block; font-size: clamp(30px, 4vw, 52px); line-height: 1; color: var(--purple); }
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .65s ease, transform .65s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.candle-wall { display: flex; align-items: end; justify-content: center; gap: 7px; min-height: 220px; padding: 24px; border-radius: 22px; background: linear-gradient(180deg, #111831, #080b18); }
.candle { width: 16px; border-radius: 4px; position: relative; animation: candleGrow 1.5s ease both; }
.candle:before { content: ""; position: absolute; left: 50%; top: -22px; width: 2px; height: calc(100% + 44px); transform: translateX(-50%); background: currentColor; opacity: .75; }
.candle.up { background: #10b968; color: #10b968; }
.candle.down { background: #ef4444; color: #ef4444; }
@keyframes candleGrow { from { transform: scaleY(.2); opacity: .4; } to { transform: scaleY(1); opacity: 1; } }
.app-cta { display: grid; grid-template-columns: 1fr auto; gap: 28px; align-items: center; padding: 34px; border-radius: 28px; background: linear-gradient(135deg, var(--purple), #0b1024); color: white; box-shadow: var(--shadow); }
.app-cta p { color: #dce4ff; }
.store-buttons { display: flex; flex-wrap: wrap; gap: 12px; }
.store-button { display: inline-flex; align-items: center; min-height: 48px; padding: 0 18px; border-radius: 999px; border: 1px solid rgba(255,255,255,.2); background: rgba(255,255,255,.1); color: white; font-weight: 900; }
.testimonial-card { display: grid; gap: 16px; }
.testimonial-card img { width: 82px; height: 82px; border-radius: 50%; object-fit: cover; border: 4px solid white; box-shadow: 0 12px 28px rgba(20,12,72,.12); }
.callback-band { display: grid; grid-template-columns: 1fr 420px; gap: 28px; align-items: center; }
.topic-list { display: grid; gap: 14px; }
.topic-item { display: grid; grid-template-columns: 1fr auto auto; gap: 16px; align-items: center; padding: 18px; border: 1px solid var(--line); border-radius: 18px; background: white; }
.hero-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-top: 16px; }
.stat { padding: 16px; border-radius: 18px; background: #f6f7fb; }
.stat strong { display: block; font-size: 28px; color: var(--purple); line-height: 1; }
section { padding: 78px 6vw; }
.section-title { display: flex; align-items: end; justify-content: space-between; gap: 24px; margin-bottom: 32px; }
h2 { margin: 0; font-size: clamp(30px, 4vw, 48px); line-height: 1.08; letter-spacing: 0; }
h3 { margin: 0 0 9px; font-size: 22px; line-height: 1.2; }
.muted { color: var(--muted); }
.grid { display: grid; gap: 24px; }
.grid.two { grid-template-columns: repeat(2, 1fr); }
.grid.three { grid-template-columns: repeat(3, 1fr); }
.grid.four { grid-template-columns: repeat(4, 1fr); }
.card { position: relative; padding: 26px; background: rgba(255,255,255,.94); border: 1px solid var(--line); border-radius: 22px; box-shadow: var(--soft-shadow); overflow: hidden; }
.card:hover { border-color: rgba(140,82,255,.22); }
.card.dark { background: var(--deep); color: white; border-color: rgba(255,255,255,.08); }
.card.dark .muted { color: #aeb8d4; }
.feature-icon { width: 54px; height: 54px; object-fit: contain; margin-bottom: 16px; }
.course-card { padding: 0; overflow: hidden; }
.course-card img { width: 100%; height: 190px; object-fit: cover; }
.course-card .body { padding: 22px; }
.course-meta { display: flex; flex-wrap: wrap; gap: 8px; margin: 14px 0; }
.course-meta span { padding: 7px 10px; border: 1px solid var(--line); border-radius: 999px; color: #44506a; font-size: 12px; font-weight: 850; background: #fff; }
.split-showcase { display: grid; grid-template-columns: 1.05fr .95fr; gap: 26px; align-items: stretch; }
.split-showcase .image-panel { min-height: 520px; border-radius: 28px; background: center/cover; box-shadow: var(--shadow); }
.trust-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-top: -36px; position: relative; z-index: 2; }
.trust-row .stat { background: white; border: 1px solid var(--line); box-shadow: 0 16px 40px rgba(20,12,72,.08); }
.path-list { display: grid; gap: 14px; counter-reset: steps; }
.path-list li { list-style: none; padding: 18px 18px 18px 58px; border: 1px solid var(--line); border-radius: 18px; background: white; position: relative; }
.path-list li:before { counter-increment: steps; content: counter(steps); position: absolute; left: 18px; top: 18px; width: 28px; height: 28px; border-radius: 50%; display: grid; place-items: center; background: var(--purple); color: white; font-weight: 900; }
.product-card { display: grid; gap: 16px; padding: 16px; }
.product-card img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; border-radius: 16px; background: #eef2ff; }
.product-card .body { padding: 0 8px 10px; }
.store-band { background: linear-gradient(135deg, #f8fbff, #eef3ff); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.blog-card { padding: 0; overflow: hidden; }
.blog-card img { width: 100%; height: 210px; object-fit: cover; }
.blog-card .body { padding: 24px; }
.faq { display: grid; gap: 14px; }
.faq details { background: white; border: 1px solid var(--line); border-radius: 18px; padding: 18px 20px; box-shadow: 0 10px 30px rgba(20,12,72,.04); }
.faq summary { cursor: pointer; font-weight: 900; color: var(--purple); }
.faq p { margin-bottom: 0; }
.table-wrap { overflow-x: auto; border-radius: 18px; }
.price { font-size: 38px; font-weight: 950; color: var(--purple); line-height: 1.05; }
.ribbon { position: absolute; top: 18px; right: -42px; rotate: 35deg; background: var(--gold); padding: 7px 48px; font-weight: 900; font-size: 12px; }
.page-hero { padding: 78px 6vw; color: white; background: radial-gradient(circle at 82% 18%, rgba(16,185,104,.24), transparent 32%), linear-gradient(135deg, var(--purple), #0a1024); }
.media-band { display: grid; grid-template-columns: .9fr 1.1fr; gap: 38px; align-items: center; }
.media-frame { min-height: 420px; border-radius: 28px; background: center/cover; box-shadow: var(--shadow); }
.testimonial img { width: 72px; height: 72px; border-radius: 50%; object-fit: cover; }
.layout { display: grid; grid-template-columns: 290px 1fr; min-height: 100vh; background: #f4f6fb; }
.sidebar { padding: 28px; background: linear-gradient(180deg, var(--purple), #10152d); color: white; }
.sidebar.light { background: white; color: var(--ink); border-right: 1px solid var(--line); }
.side-nav { display: grid; gap: 10px; margin-top: 34px; }
.side-nav a { padding: 13px 15px; border-radius: 14px; color: inherit; font-weight: 850; }
.side-nav a.active { background: linear-gradient(135deg, var(--gold), #ffe18d); color: var(--ink); }
.main { padding: 38px; }
.panel-head { display: flex; align-items: end; justify-content: space-between; gap: 20px; margin-bottom: 24px; }
.panel-head h1 { margin: 8px 0 0; }
.dashboard-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.wide { grid-column: span 2; }
.table { width: 100%; border-collapse: collapse; background: white; border-radius: 18px; overflow: hidden; box-shadow: 0 10px 28px rgba(20,12,72,.05); }
.table th, .table td { padding: 16px 18px; border-bottom: 1px solid var(--line); text-align: left; vertical-align: middle; }
.table th { color: var(--purple); font-size: 13px; text-transform: uppercase; letter-spacing: .06em; background: #f7f9ff; }
.checkout-shell { display: grid; grid-template-columns: 1fr 380px; gap: 26px; align-items: start; }
.summary-card { position: sticky; top: 120px; }
.receipt-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.mini-list { display: grid; gap: 12px; margin-top: 18px; }
.mini-list div { display: flex; justify-content: space-between; gap: 16px; padding-bottom: 12px; border-bottom: 1px solid var(--line); }
.mini-list div:last-child { border-bottom: 0; padding-bottom: 0; }
.success-mark { width: 86px; height: 86px; display: grid; place-items: center; border-radius: 50%; background: linear-gradient(135deg, var(--green), #0d9153); color: white; font-size: 44px; font-weight: 950; box-shadow: 0 22px 50px rgba(16,185,104,.24); }
.contact-layout { display: grid; grid-template-columns: 1fr 420px; gap: 28px; align-items: start; }
.contact-card { display: grid; gap: 16px; }
.contact-card a, .contact-card div { padding: 16px; border: 1px solid var(--line); border-radius: 16px; background: white; }
.status-pill { display: inline-flex; align-items: center; min-height: 28px; padding: 0 10px; border-radius: 999px; background: rgba(16,185,104,.12); color: #087844; font-size: 12px; font-weight: 900; }
.status-pill.warn { background: rgba(245,185,66,.18); color: #8a5b00; }
.status-pill.draft { background: rgba(140,82,255,.12); color: #5e39db; }
.panel-media { width: 76px; height: 54px; object-fit: cover; border-radius: 12px; display: inline-block; margin-right: 12px; vertical-align: middle; }
.card.dark .table {
  background: rgba(255,255,255,.08);
  color: white;
  box-shadow: none;
  border: 1px solid rgba(255,255,255,.12);
}
.card.dark .table th,
.card.dark .table td {
  border-bottom-color: rgba(255,255,255,.12);
  color: white;
}
.card.dark .table th {
  color: var(--gold);
  background: rgba(255,255,255,.06);
}
.card.dark .table tr:last-child td { border-bottom: 0; }
.form { display: grid; gap: 14px; }
input, select, textarea { width: 100%; min-height: 50px; padding: 13px 15px; border: 1px solid var(--line); border-radius: 14px; font: inherit; background: white; }
textarea { min-height: 120px; resize: vertical; }
.footer {
  padding: 0;
  background:
    radial-gradient(circle at 15% 0, rgba(140,82,255,.28), transparent 28%),
    radial-gradient(circle at 90% 10%, rgba(16,185,104,.18), transparent 24%),
    #090d1d;
  color: #c7d1ec;
}
.footer-cta {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
  margin: 0 6vw;
  padding: 34px 0;
  border-bottom: 1px solid rgba(255,255,255,.12);
}
.footer-cta h2 { color: white; font-size: clamp(28px, 3vw, 42px); }
.footer-main {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 38px;
  padding: 48px 6vw 38px;
}
.footer-brand { display: flex; align-items: center; gap: 12px; color: white; font-weight: 950; font-size: 24px; }
.footer-brand img { width: 176px; height: 54px; object-fit: contain; border-radius: 4px; }
.footer h3 { color: white; font-size: 16px; margin-bottom: 14px; }
.footer p { margin: 12px 0 0; max-width: 420px; }
.footer-links { display: grid; gap: 10px; }
.footer-links a { color: #c7d1ec; font-weight: 700; font-size: 14px; }
.footer-links a:hover { color: white; }
.footer-contact { display: grid; gap: 12px; font-size: 14px; }
.footer-contact span { display: block; color: white; font-weight: 850; }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 6vw 26px;
  border-top: 1px solid rgba(255,255,255,.1);
  color: #98a5c3;
  font-size: 13px;
}
.socials { display: flex; gap: 10px; flex-wrap: wrap; }
.socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 38px;
  height: 38px;
  padding: 0 12px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 999px;
  color: white;
  font-weight: 900;
}

@media (max-width: 960px) {
  .nav { display: none; }
  .topbar { padding: 12px 20px; }
  .brand img { width: 138px; height: 44px; }
  .hero, .media-band, .split-showcase, .tracking-visual, .app-cta, .callback-band, .checkout-shell, .contact-layout, .receipt-grid { grid-template-columns: 1fr; }
  .summary-card { position: relative; top: auto; }
  .hero { min-height: auto; padding: 54px 22px 74px; }
  .auth-hero { padding-top: 42px; }
  .auth-panel { justify-self: stretch; width: 100%; padding: 24px; }
  section, .page-hero { padding: 56px 22px; }
  .grid.two, .grid.three, .grid.four, .dashboard-grid, .hero-stats, .trust-row, .logo-cloud, .metric-wall { grid-template-columns: 1fr; }
  .image-stack { grid-template-columns: 1fr; }
  .image-stack img, .image-stack img:first-child { grid-column: auto; height: 220px; }
  .topic-item { grid-template-columns: 1fr; }
  .section-title { align-items: start; flex-direction: column; }
  .panel-head { align-items: start; flex-direction: column; }
  .layout { grid-template-columns: 1fr; }
  .main { padding: 24px; }
  .wide { grid-column: auto; }
  .footer-cta, .footer-main, .footer-bottom { grid-template-columns: 1fr; margin: 0; padding-left: 22px; padding-right: 22px; }
  .footer-bottom { align-items: start; flex-direction: column; }
}
