﻿:root {
  --bg: #F9FAFB;
  --white: #FFFFFF;
  --text: #111827;
  --muted: #4B5563;
  --muted-2: #6B7280;
  --muted-3: #9CA3AF;
  --blue: #2563EB;
  --blue-dark: #1D4ED8;
  --border: #E5E7EB;
  --soft: #F3F4F6;
  --footer: #111827;
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.04);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.08);
  --shadow-blue: 0 4px 12px rgba(37,99,235,0.25);
  --radius-10: 10px;
  --radius-12: 12px;
  --radius-16: 16px;
  --container: 1280px;
}

* { box-sizing: border-box; }
body {
  margin: 0;
  font-family: "Manrope", "Inter", "SF Pro Text", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
  font-size: 17px;
  line-height: 1.6;
}
a { color: inherit; text-decoration: none; }
main a {
  font-weight: 700;
  text-decoration: underline;
}
header a,
footer a {
  font-weight: inherit;
  text-decoration: none;
}
img { max-width: 100%; display: block; }

body > a[href*="trackmytarget.com"] {
  display: block;
  background: #F3F4F6;
}
body > a[href*="trackmytarget.com"] img {
  width: 100%;
  height: auto;
  max-height: 180px;
  object-fit: cover;
  object-position: center;
  margin: 0 auto;
}

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

/* Header */
.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #FDFDFE;
  border-bottom: 1px solid var(--border);
  transition: all 0.2s ease;
}
.header.scrolled {
  background: #FFFFFF;
  box-shadow: var(--shadow-sm);
}
.nav {
  height: 80px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  transition: height 0.2s ease;
}
.header.scrolled .nav { height: 64px; }

.header-top {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 16px;
  padding: 16px 24px 20px;
  border-bottom: 1px solid #E5E7EB;
  text-align: left;
}
.header-top .navbar-brand img {
  height: 72px;
  width: auto;
}
.header-top h2 {
  margin: 0;
  font-size: 40px;
  font-weight: 600;
  color: #111827;
}

.logo {
  font-weight: 800;
  font-size: 28px;
  letter-spacing: -0.01em;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
  transition: font-size 0.2s ease;
}
.logo span:last-child { color: var(--muted-2); font-weight: 500; }
.header.scrolled .logo { font-size: 26px; }

.nav-toggle {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: #FFFFFF;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
}
.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--text);
  border-radius: 999px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.nav-toggle.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-toggle.is-open span:nth-child(2) {
  opacity: 0;
}
.nav-toggle.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-nav-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(17, 24, 39, 0.48);
  z-index: 1001;
}

.mobile-nav {
  position: fixed;
  top: 0;
  right: 0;
  width: min(360px, 100%);
  height: 100vh;
  padding: 96px 20px 24px;
  background: #FFFFFF;
  border-left: 1px solid var(--border);
  box-shadow: -12px 0 32px rgba(17,24,39,0.14);
  z-index: 1002;
  overflow-y: auto;
}
.mobile-nav:not(.is-open) {
  display: none;
}
.mobile-nav-inner {
  display: grid;
  gap: 10px;
}
.mobile-nav-heading {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted-2);
  margin-bottom: 4px;
}
.mobile-home-link {
  justify-content: center;
  background: #EEF4FF;
  border-color: #BFDBFE;
  color: var(--blue-dark);
  font-weight: 700;
  margin-bottom: 4px;
}
.mobile-nav-link,
.mobile-submenu-link {
  display: flex;
  align-items: center;
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: #FFFFFF;
  color: var(--text);
  font-weight: 600;
}
.mobile-nav-group {
  display: grid;
  gap: 10px;
}
.mobile-nav-group-top {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
  align-items: center;
}
.mobile-nav-group-top .mobile-nav-link {
  min-width: 0;
}
.mobile-submenu-toggle {
  width: 48px;
  height: 48px;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: #FFFFFF;
  cursor: pointer;
}
.mobile-submenu-toggle span {
  display: inline-block;
  width: 10px;
  height: 10px;
  border-right: 2px solid var(--text);
  border-bottom: 2px solid var(--text);
  transform: rotate(45deg) translateY(-2px);
  transition: transform 0.2s ease;
}
.mobile-nav-group.is-open .mobile-submenu-toggle span {
  transform: rotate(-135deg) translateY(2px);
}
.mobile-submenu {
  display: none;
  gap: 8px;
  padding-left: 12px;
}
.mobile-nav-group.is-open .mobile-submenu {
  display: grid;
}
.mobile-submenu-link {
  font-weight: 500;
  color: #374151;
}
.mobile-nav-cta {
  justify-content: center;
  margin-top: 8px;
  padding: 14px 18px;
}

body.menu-open {
  overflow: hidden;
}

.nav-links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 36px;
  width: 100%;
  font-size: 16.5px;
  font-weight: 600;
  line-height: 1.2;
  color: #374151;
}
.nav-links a {
  position: relative;
  padding: 6px 0;
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 2px;
  background: var(--blue);
  transition: width 0.2s ease;
}
.nav-links a:hover { color: var(--text); }
.nav-links a:hover::after { width: 100%; }

.dropdown {
  position: relative;
}
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  margin-top: 10px;
  background: #FFFFFF;
  border: 1px solid var(--border);
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  padding: 12px;
  min-width: 260px;
  display: none;
}
.dropdown:hover .dropdown-menu { display: block; }
.dropdown-menu a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 10px;
  border-radius: 8px;
}
.dropdown-menu a:hover { background: var(--soft); }

.cta-btn {
  background: var(--blue);
  color: #FFFFFF;
  border: none;
  border-radius: var(--radius-10);
  padding: 10px 20px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  box-shadow: var(--shadow-blue);
}
.cta-btn:hover { background: var(--blue-dark); }

/* Hero */
.hero {
  background: linear-gradient(180deg, #F9FAFB 0%, #FFFFFF 100%);
  padding: 120px 0 80px;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  align-items: center;
}
.hero h1 {
  font-size: clamp(48px, 4vw, 56px);
  line-height: 1.1;
  margin: 0 0 18px;
  font-weight: 800;
}
.hero p {
  font-size: 20px;
  color: var(--muted);
  max-width: 520px;
  margin: 0 0 28px;
}
.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.btn-primary {
  background: var(--blue);
  color: #FFFFFF;
  padding: 16px 28px;
  border-radius: var(--radius-10);
  box-shadow: var(--shadow-md);
  font-weight: 600;
}
.btn-secondary {
  background: #FFFFFF;
  color: var(--text);
  border: 1px solid #D1D5DB;
  padding: 16px 28px;
  border-radius: var(--radius-10);
  font-weight: 600;
}

.hero-illustration {
  background: radial-gradient(circle at 30% 20%, rgba(37,99,235,0.12), transparent 60%),
              radial-gradient(circle at 70% 80%, rgba(37,99,235,0.08), transparent 55%),
              #FFFFFF;
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 24px;
  min-height: 360px;
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
}
.hero-illustration svg { width: 100%; height: 100%; }

/* Inner page hero */
.page-hero {
  padding: 110px 0 70px;
  background: linear-gradient(180deg, #F9FAFB 0%, #FFFFFF 100%);
}
.page-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
  align-items: center;
}
.page-hero h1 {
  font-size: clamp(36px, 3.2vw, 48px);
  margin: 0 0 14px;
  font-weight: 800;
}
.page-hero p {
  font-size: 20px;
  color: #374151;
  line-height: 1.6;
}
.page-hero img {
  border-radius: 18px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}

.share-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin: 22px 0 8px;
  padding: 14px 16px;
  background: linear-gradient(135deg, #EFF6FF 0%, #FFFFFF 100%);
  border: 1px solid #DBEAFE;
  border-radius: 14px;
  box-shadow: 0 10px 24px rgba(37, 99, 235, 0.08);
}

.share-section {
  padding: 32px 0;
  background: linear-gradient(180deg, #FFFFFF 0%, #F8FBFF 100%);
  border-top: 1px solid #E5E7EB;
}

.share-section .share-bar {
  margin: 0;
  width: 100%;
}

.share-bar-label {
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: #1D4ED8;
  margin-right: 4px;
}

.share-bar-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.share-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 42px;
  padding: 10px 16px;
  border: 1px solid #D1D5DB;
  border-radius: 999px;
  background: #FFFFFF;
  color: #111827;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.share-icon {
  width: 16px;
  height: 16px;
  flex: 0 0 16px;
  fill: currentColor;
}

.share-btn:hover {
  transform: translateY(-1px);
  border-color: #93C5FD;
  box-shadow: 0 8px 18px rgba(37, 99, 235, 0.12);
}

.share-btn:focus-visible {
  outline: 3px solid rgba(37, 99, 235, 0.24);
  outline-offset: 2px;
}

.share-btn-facebook {
  color: #1D4ED8;
}

.share-btn-linkedin {
  color: #0A66C2;
}

.share-btn-x {
  color: #111827;
}

.share-btn-whatsapp {
  color: #128C7E;
}

.share-btn-viber {
  color: #7360F2;
}

.share-btn-copy,
.share-btn-native {
  border-style: dashed;
}

.share-btn-copied {
  background: #DCFCE7;
  border-color: #86EFAC;
  color: #166534;
}

.page-hero .section-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 24px;
  flex-wrap: wrap;
}
.page-hero .section-subtitle {
  margin: 0;
  max-width: 820px;
}
.section-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.chip {
  display: inline-flex;
  align-items: center;
  border: 1px solid #D1D5DB;
  border-radius: 999px;
  background: #fff;
  padding: 10px 14px;
  font-size: 14px;
  font-weight: 700;
  color: #374151;
}
.chip.is-active {
  background: var(--blue);
  color: #fff;
  border-color: var(--blue);
}

/* News layout */
.news-finance {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 24px;
  align-items: start;
}
.news-left,
.news-right {
  display: grid;
  gap: 20px;
}
.news-card.feature .news-body,
.news-row .news-body {
  padding: 18px 20px 22px;
}
.news-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 16px;
  align-items: center;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-16);
  overflow: hidden;
}
.news-meta {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 10px;
}
.news-tag {
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--blue);
  background: #DBEAFE;
  padding: 5px 10px;
  border-radius: 999px;
}
.news-date {
  font-size: 13px;
  color: var(--muted-3);
}
.news-row h4,
.news-card.feature h3 {
  margin: 0 0 8px;
  font-size: 22px;
}
.news-row p,
.news-card.feature p {
  margin: 0;
  color: var(--muted);
}
.row-link {
  margin-right: 16px;
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: #EFF6FF;
  color: var(--blue);
  text-decoration: none;
  font-weight: 800;
}
.read-more {
  color: var(--blue);
  text-decoration: none;
}
.footer-col {
  display: grid;
  gap: 10px;
}

/* Sections */
section { padding: 72px 0; background: #FFFFFF; }
section.alt { background: var(--bg); }
.section-title {
  font-size: 28px;
  font-weight: 800;
  margin: 0 0 24px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.muted { color: #374151; }

.content {
  display: grid;
  gap: 16px;
  font-size: 18px;
  color: #1F2937;
  line-height: 1.7;
}
.content h2 {
  font-size: 22px;
  margin: 12px 0 0;
  color: var(--text);
}
.content ul {
  margin: 0;
  padding-left: 18px;
  display: grid;
  gap: 8px;
}

/* Monthly update */
.update-box {
  background: var(--soft);
  border-radius: var(--radius-16);
  padding: 32px;
  box-shadow: var(--shadow-sm);
}
.update-list {
  list-style: none;
  padding: 0;
  margin: 16px 0 18px;
  display: grid;
  gap: 10px;
  font-size: 17px;
}
.update-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  line-height: 1.5;
}
.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--blue);
  margin-top: 8px;
  flex: 0 0 8px;
}
.link-btn { color: var(--blue); font-weight: 600; }

/* Cards */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.card {
  background: #FFFFFF;
  border: 1px solid var(--border);
  border-radius: var(--radius-16);
  padding: 24px;
  transition: all 0.2s ease;
}
.card:hover {
  border-color: var(--blue);
  box-shadow: 0 4px 16px rgba(0,0,0,0.06);
  transform: scale(1.01);
}
.card h3 { margin: 12px 0 8px; font-size: 20px; }
.card p { margin: 0 0 14px; color: #4B5563; font-size: 16px; }
.ghost-btn {
  border: 1px solid var(--blue);
  color: var(--blue);
  padding: 10px 16px;
  border-radius: 10px;
  font-weight: 600;
  display: inline-block;
}

.logo-badge {
  height: 32px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 10px;
  border-radius: 10px;
  background: #F3F4F6;
  font-weight: 700;
  color: #1F2937;
  font-size: 13px;
  letter-spacing: 0.02em;
}
.logo-mark {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, #93C5FD 0%, #2563EB 60%, #1D4ED8 100%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
  font-size: 11px;
  font-weight: 800;
  line-height: 1;
}

.logo-img {
  height: 28px;
  width: auto;
  object-fit: contain;
}

.stars {
  display: inline-flex;
  gap: 4px;
}
.stars svg { width: 18px; height: 18px; fill: #F59E0B; }

/* News cards */
.news-card {
  background: #FFFFFF;
  border-radius: var(--radius-16);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}
.thumb {
  aspect-ratio: 16 / 9;
  background: linear-gradient(135deg, #E5E7EB 0%, #F3F4F6 100%);
}
.news-body { padding: 18px 20px 22px; }
.news-date { font-size: 14px; color: var(--muted-3); margin: 6px 0 10px; }
.news-desc { color: #4B5563; font-size: 15.5px; }

/* Comparisons */
.comparison-list {
  display: grid;
  gap: 14px;
  font-size: 18px;
  font-weight: 600;
  color: var(--blue);
}
.comparison-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px dashed #E5E7EB;
  padding-bottom: 10px;
}

/* How it works */
.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.icon-box {
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 20px;
  background: #FFFFFF;
}
.icon {
  width: 48px;
  height: 48px;
  color: var(--blue);
  margin-bottom: 10px;
}
.icon-title { font-weight: 700; font-size: 18px; margin-bottom: 6px; }
.icon-desc { font-size: 15px; color: var(--muted-2); }

/* Risks */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: start;
}
.risk-box {
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 24px;
  background: #FFFFFF;
}
.risk-box h3 { margin: 0 0 10px; }
.risk-list { color: #374151; }
.risk-list li { margin: 8px 0; }

/* Trust */
.trust {
  background: var(--blue);
  color: #FFFFFF;
  border-radius: 18px;
  padding: 36px;
}
.trust ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; font-size: 18px; }
.trust li { display: flex; gap: 10px; align-items: center; }

/* Newsletter */
.newsletter {
  background: var(--soft);
  border-radius: 16px;
  padding: 32px;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 16px;
  align-items: center;
}
.newsletter input {
  width: 100%;
  padding: 14px 16px;
  border-radius: 12px;
  border: 1px solid #D1D5DB;
  font-size: 16px;
}
.newsletter textarea {
  width: 100%;
  padding: 14px 16px;
  border-radius: 12px;
  border: 1px solid #D1D5DB;
  font-size: 16px;
  min-height: 160px;
  resize: vertical;
  font-family: inherit;
}
.newsletter button {
  background: var(--blue);
  color: #FFFFFF;
  border: none;
  border-radius: 12px;
  padding: 14px 18px;
  font-weight: 600;
  cursor: pointer;
}

/* Footer */
footer {
  background: var(--footer);
  color: #D1D5DB;
  padding: 48px 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.footer-logo { color: #FFFFFF; font-weight: 800; }
.footer-grid a:hover { color: #FFFFFF; }

.footer-meta {
  margin: 24px 0 0;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: #D1D5DB;
  font-size: 14px;
  line-height: 1.7;
}

.footer-meta a {
  color: #FFFFFF;
}

.footer-meta a:hover {
  color: #93C5FD;
}

.footer-badges {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
  margin: 12px 0;
}

/* Compare table */
.compare-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 18px;
  background: #FFFFFF;
  border: 1px solid #D1D5DB;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.compare-table th,
.compare-table td {
  padding: 12px 14px;
  border-bottom: 1px solid #E5E7EB;
  text-align: left;
  vertical-align: middle;
}
.compare-table th {
  background: #F3F4F6;
  font-weight: 700;
  color: #111827;
}
.compare-table tr:last-child td { border-bottom: none; }

/* CMP */
.cmp-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  display: none;
  padding: 4px 0;
  background: rgba(17, 24, 39, 0.25);
  backdrop-filter: blur(3px);
}
.cmp-card {
  max-width: 1200px;
  margin: 0 auto;
  background: #FFFFFF;
  border-radius: 12px;
  border: 1px solid #E5E7EB;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
  padding: 6px 10px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 4px 10px;
  align-items: center;
}
.cmp-title {
  font-size: 16px;
  font-weight: 700;
  color: #111827;
  margin-bottom: 6px;
}
.cmp-text {
  font-size: 12px;
  color: #374151;
  margin-bottom: 0;
}
.cmp-link {
  margin-left: 8px;
  color: #2563EB;
  text-decoration: none;
  font-weight: 600;
}
.cmp-link:hover {
  text-decoration: underline;
}
.cmp-actions {
  display: flex;
  gap: 10px;
  justify-content: flex-end;
  flex-wrap: wrap;
  align-items: center;
}
.cmp-title,
.cmp-text {
  grid-column: 1 / 2;
}
.cmp-actions {
  grid-column: 2 / 3;
}
.cmp-btn {
  border-radius: 10px;
  padding: 5px 9px;
  font-weight: 600;
  border: 1px solid transparent;
  cursor: pointer;
  font-size: 11.5px;
}
.cmp-btn-primary {
  background: #2563EB;
  color: #FFFFFF;
  border-color: #2563EB;
}
.cmp-btn-secondary {
  background: #F3F4F6;
  color: #111827;
  border-color: #E5E7EB;
}
.cmp-btn-outline {
  background: #FFFFFF;
  color: #111827;
  border-color: #D1D5DB;
}
.cmp-modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(17,24,39,0.6);
  z-index: 10000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 16px;
}
.cmp-modal {
  width: 100%;
  max-width: 520px;
  background: #FFFFFF;
  border-radius: 12px;
  border: 1px solid #E5E7EB;
  box-shadow: 0 20px 40px rgba(0,0,0,0.2);
  padding: 18px 20px;
}
.cmp-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}
.cmp-x {
  border: none;
  background: transparent;
  font-size: 22px;
  cursor: pointer;
  color: #6B7280;
}
.cmp-modal-body {
  display: grid;
  gap: 10px;
  margin-bottom: 14px;
}
.cmp-option {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: #111827;
}

@media (max-width: 640px) {
  body > a[href*="trackmytarget.com"] {
    padding: 0;
  }
  body > a[href*="trackmytarget.com"] img {
    max-height: 96px;
  }
  .cmp-banner {
    padding: 6px 8px calc(6px + env(safe-area-inset-bottom, 0px));
    background: rgba(17, 24, 39, 0.16);
    backdrop-filter: blur(2px);
  }
  .cmp-card {
    min-height: 0;
    padding: 10px 12px;
    grid-template-columns: 1fr;
    gap: 8px;
    border-radius: 14px;
  }
  .cmp-title,
  .cmp-text,
  .cmp-actions {
    grid-column: 1 / -1;
  }
  .cmp-title {
    font-size: 14px;
    margin-bottom: 0;
  }
  .cmp-text {
    font-size: 11.5px;
    line-height: 1.35;
  }
  .cmp-link {
    display: inline-block;
    margin-left: 0;
    margin-top: 4px;
  }
  .cmp-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: center;
  }
  .cmp-btn {
    min-height: auto;
    padding: 5px 9px;
    font-size: 11.5px;
    white-space: nowrap;
    text-align: left;
    display: inline-block;
  }
  .cmp-btn-primary {
    grid-column: 1 / -1;
  }
}
/* Responsive */
@media (max-width: 1024px) {
  .nav {
    grid-template-columns: auto auto;
    justify-content: space-between;
  }
  .hero-grid { grid-template-columns: 1fr; }
  .page-grid { grid-template-columns: 1fr; }
  .grid-3 { grid-template-columns: 1fr 1fr; }
  .grid-4 { grid-template-columns: 1fr 1fr; }
  .two-col { grid-template-columns: 1fr; }
  .newsletter { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .nav-links { display: none; }
  .nav .cta-btn { display: none; }
  .nav-toggle { display: inline-flex; }
  .news-finance { grid-template-columns: 1fr; }
  .page-hero .section-head { align-items: flex-start; }
}
@media (max-width: 640px) {
  body {
    font-size: 15px;
    line-height: 1.55;
  }
  .container {
    padding: 0 16px;
  }
  .nav {
    height: 64px;
    gap: 12px;
  }
  .logo {
    font-size: 19px;
  }
  .header.scrolled .logo {
    font-size: 18px;
  }
  .nav-toggle {
    width: 42px;
    height: 42px;
    border-radius: 12px;
  }
  .header-top {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    padding: 12px 16px 14px;
  }
  .header-top .navbar-brand img {
    height: 44px;
  }
  .header-top h2 {
    font-size: 22px;
    line-height: 1.1;
  }
  .mobile-nav {
    padding: 78px 16px 20px;
  }
  .mobile-nav-link,
  .mobile-submenu-link {
    padding: 12px 14px;
    border-radius: 12px;
    font-size: 15px;
  }
  .mobile-submenu-toggle {
    width: 42px;
    height: 42px;
  }
  .grid-3 { grid-template-columns: 1fr; }
  .hero {
    padding: 44px 0 36px;
  }
  .hero-grid {
    gap: 20px;
  }
  .hero-grid > div:first-child {
    display: grid;
    gap: 12px;
  }
  .hero h1 {
    font-size: clamp(30px, 9vw, 38px);
    line-height: 1.08;
    margin-bottom: 0;
  }
  .hero p,
  .hero-sub {
    font-size: 15px;
    line-height: 1.45;
    margin-bottom: 0;
  }
  .hero-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 12px;
    font-size: 13px;
    line-height: 1.35;
  }
  .hero-actions {
    gap: 10px;
    margin-top: 2px;
  }
  .hero-actions .btn-primary,
  .hero-actions .btn-secondary {
    width: 100%;
    text-align: center;
    padding: 13px 16px;
    font-size: 15px;
  }
  .hero-grid > img,
  .hero-grid > .hero-illustration {
    width: 100%;
    max-width: 320px;
    margin: 0 auto;
    border-radius: 18px;
  }
  .hero-grid > img {
    aspect-ratio: 4 / 3;
    object-fit: cover;
  }
  .hero-illustration {
    min-height: 240px;
    padding: 18px;
  }
  .page-hero {
    padding: 42px 0 34px;
  }
  .page-grid {
    gap: 18px;
  }
  .page-grid > div:first-child {
    display: grid;
    gap: 10px;
  }
  .page-hero h1 {
    font-size: clamp(28px, 8vw, 34px);
    line-height: 1.1;
    margin-bottom: 10px;
  }
  .page-hero p {
    font-size: 15px;
    line-height: 1.5;
    margin: 0;
  }
  .page-hero img {
    width: 100%;
    max-width: 320px;
    margin: 0 auto;
    border-radius: 16px;
  }
  .page-hero .section-head {
    gap: 12px;
  }
  .page-hero .section-subtitle {
    max-width: none;
  }
  .page-hero .section-tags {
    gap: 8px;
  }
  .chip {
    padding: 8px 12px;
    font-size: 13px;
  }
  .section-title {
    font-size: 24px;
    line-height: 1.15;
    margin-bottom: 18px;
  }
  .muted,
  .icon-desc,
  .news-desc,
  .card p,
  .risk-list,
  .comparison-list,
  .update-list,
  .newsletter input,
  .newsletter textarea {
    font-size: 14px;
    line-height: 1.5;
  }
  .card,
  .news-body,
  .risk-box,
  .update-box,
  .newsletter {
    padding: 18px;
  }
  .card h3,
  .news-row h3,
  .news-card.feature h3,
  .icon-title,
  .risk-box h3 {
    font-size: 18px;
    line-height: 1.25;
  }
  .ghost-btn,
  .link-btn,
  .cta-btn,
  .newsletter button {
    font-size: 14px;
    padding: 12px 14px;
  }
  .comparison-item {
    gap: 12px;
    align-items: flex-start;
  }
  .comparison-item .cta-btn {
    flex: 0 0 auto;
  }
  section { padding: 56px 0; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-meta {
    font-size: 13px;
    line-height: 1.6;
  }
  .news-row { grid-template-columns: 1fr; }
  .row-link { margin-left: 20px; margin-bottom: 16px; }
  .share-bar {
    align-items: flex-start;
  }
  .share-bar-label,
  .share-bar-actions {
    width: 100%;
  }
  .share-btn {
    flex: 1 1 140px;
  }
}
.cookie-banner{
position:fixed;
bottom:0;
left:0;
width:100%;
background:#111;
color:#fff;
padding:18px;
display:flex;
justify-content:space-between;
align-items:center;
z-index:9999;
font-size:14px;
flex-wrap:wrap;
}

.cookie-text{
max-width:60%;
}

.cookie-text a{
color:#4da3ff;
text-decoration:none;
}

.cookie-buttons button{
margin:5px;
padding:10px 14px;
border:none;
cursor:pointer;
font-weight:bold;
border-radius:4px;
}

.btn-accept{
background:#2ecc71;
color:white;
}

.btn-reject{
background:#e74c3c;
color:white;
}

.btn-manage{
background:#3498db;
color:white;
}
