/* =========================================================
   DIRE MONEY — Main Stylesheet
   Colors: Ocean Navy #0D2137, Cloud Gray #D4DBE3, Lime #A8C400, White #F5F7FA
   ========================================================= */

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

:root {
  --navy:      #0D2137;
  --navy-mid:  #14304F;
  --navy-light:#1C3F66;
  --gray:      #D4DBE3;
  --gray-mid:  #8A9BAD;
  --gray-light:#F0F3F6;
  --lime:      #A8C400;
  --lime-dark: #8AAF00;
  --white:     #F5F7FA;
  --pure:      #FFFFFF;
  --text-dark: #0D2137;
  --text-mid:  #3A5068;
  --text-light:#8A9BAD;
  --border:    #D4DBE3;

  --font-head: 'Inter', 'Segoe UI', system-ui, sans-serif;
  --font-body: 'Inter', 'Segoe UI', system-ui, sans-serif;
  --radius:    6px;
  --radius-lg: 12px;
  --max-w:     1200px;
  --section-pad: 96px 0;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--white);
  color: var(--text-dark);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { display: block; max-width: 100%; }

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

/* ── HEADER ─────────────────────────────────────────────── */
.site-header {
  background: var(--navy);
  padding: 0 24px;
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid var(--navy-light);
}

.header-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.brand-name {
  font-size: 17px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.3px;
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.header-nav a {
  color: var(--gray);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.01em;
}

.header-nav a:hover { color: var(--lime); }

.header-cta {
  background: var(--lime);
  color: var(--navy);
  font-size: 14px;
  font-weight: 700;
  padding: 10px 22px;
  border-radius: var(--radius);
  letter-spacing: 0.02em;
  flex-shrink: 0;
}

.header-cta:hover { background: var(--lime-dark); color: var(--navy); }

/* Hamburger */
.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  flex-direction: column;
  gap: 5px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--gray);
  border-radius: 2px;
}
.mobile-nav {
  display: none;
  background: var(--navy-mid);
  padding: 16px 24px 24px;
  border-top: 1px solid var(--navy-light);
}
.mobile-nav.open { display: block; }
.mobile-nav a {
  display: block;
  color: var(--gray);
  font-size: 15px;
  font-weight: 500;
  padding: 10px 0;
  border-bottom: 1px solid var(--navy-light);
}
.mobile-nav a:last-child { border-bottom: none; }
.mobile-nav a:hover { color: var(--lime); }

/* ── HERO ────────────────────────────────────────────────── */
.hero {
  background: var(--navy);
  padding: 80px 24px 120px;
}

.hero-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.hero-content {
  display: flex;
  flex-direction: column;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(168,196,0,0.12);
  border: 1px solid rgba(168,196,0,0.3);
  color: var(--lime);
  font-size: 12px;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: 100px;
  margin-bottom: 24px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  width: fit-content;
}

.hero-badge-dot {
  width: 6px;
  height: 6px;
  background: var(--lime);
  border-radius: 50%;
}

.hero h1 {
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 800;
  color: var(--pure);
  line-height: 1.1;
  letter-spacing: -1.2px;
  margin-bottom: 24px;
}

.hero h1 span {
  color: var(--lime);
}

.hero p {
  font-size: 16px;
  color: var(--gray);
  line-height: 1.7;
  margin-bottom: 40px;
  max-width: 500px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.btn-primary {
  background: var(--lime);
  color: var(--navy);
  font-size: 15px;
  font-weight: 700;
  padding: 14px 32px;
  border-radius: var(--radius);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: none;
  cursor: pointer;
  text-decoration: none;
}

.btn-primary:hover {
  background: var(--lime-dark);
}

.btn-outline {
  background: transparent;
  color: var(--gray);
  font-size: 15px;
  font-weight: 600;
  padding: 14px 32px;
  border-radius: var(--radius);
  border: 1px solid var(--navy-light);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  text-decoration: none;
}

.btn-outline:hover {
  border-color: var(--gray-mid);
  color: var(--white);
}

/* Hero Dashboard Mockup */
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.dashboard-card {
  background: var(--navy-mid);
  border: 1px solid var(--navy-light);
  border-radius: var(--radius-lg);
  padding: 24px;
  width: 100%;
  max-width: 440px;
}

.dash-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.dash-title {
  font-size: 11px;
  font-weight: 700;
  color: var(--gray-mid);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.dash-status {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 600;
  color: var(--lime);
}
.dash-status-dot {
  width: 7px; height: 7px;
  background: var(--lime);
  border-radius: 50%;
}

.dash-metrics {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 20px;
}

.dash-metric {
  background: var(--navy-light);
  border-radius: var(--radius);
  padding: 14px;
}

.dash-metric-label {
  font-size: 11px;
  color: var(--gray-mid);
  font-weight: 500;
  margin-bottom: 6px;
}

.dash-metric-value {
  font-size: 22px;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.5px;
}

.dash-metric-value.lime { color: var(--lime); }

.dash-bar-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}

.dash-bar-label { font-size: 11px; color: var(--gray-mid); width: 70px; flex-shrink: 0; }

.dash-bar-track {
  flex: 1;
  height: 6px;
  background: var(--navy-light);
  border-radius: 3px;
  overflow: hidden;
}

.dash-bar-fill {
  height: 100%;
  background: var(--lime);
  border-radius: 3px;
}

.dash-bar-fill.gray { background: var(--gray-mid); }

.dash-bar-pct { font-size: 11px; color: var(--white); font-weight: 600; width: 30px; text-align: right; }

/* ── STATS BAR ───────────────────────────────────────────── */
.stats-bar {
  background: var(--navy-mid);
  border-top: 1px solid var(--navy-light);
  border-bottom: 1px solid var(--navy-light);
  padding: 0;
}

.stats-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.stat-item {
  padding: 32px 24px;
  text-align: center;
  border-right: 1px solid var(--navy-light);
}
.stat-item:last-child { border-right: none; }

.stat-number {
  font-size: 32px;
  font-weight: 800;
  color: var(--lime);
  letter-spacing: -1px;
  line-height: 1;
  margin-bottom: 6px;
}

.stat-label {
  font-size: 13px;
  color: var(--gray-mid);
  font-weight: 500;
}

/* ── SECTION LABELS ──────────────────────────────────────── */
.section-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  color: var(--lime);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 12px;
}

.section-heading {
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 800;
  color: var(--text-dark);
  letter-spacing: -0.7px;
  line-height: 1.15;
  margin-bottom: 14px;
}

.section-heading.light { color: var(--pure); }

.section-sub {
  font-size: 16px;
  color: var(--text-mid);
  line-height: 1.65;
  max-width: 560px;
}
.section-sub.light { color: var(--gray); }

.section-header-center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.section-header-center .section-sub {
  margin-left: auto;
  margin-right: auto;
}

/* ── HOW IT WORKS ────────────────────────────────────────── */
.how-it-works {
  padding: var(--section-pad);
  background: var(--white);
}

.how-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: 56px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.how-item {
  background: var(--pure);
  padding: 36px 28px;
  border-right: 1px solid var(--border);
}
.how-item:last-child { border-right: none; }

.how-num {
  font-size: 11px;
  font-weight: 700;
  color: var(--lime);
  letter-spacing: 0.1em;
  margin-bottom: 20px;
}

.how-icon {
  width: 44px;
  height: 44px;
  background: var(--gray-light);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

.how-item h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 10px;
  letter-spacing: -0.2px;
}

.how-item p {
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.6;
}

/* ── SERVICES ────────────────────────────────────────────── */
.services {
  padding: var(--section-pad);
  background: var(--navy);
}

.services-header {
  margin-bottom: 56px;
}

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

.service-card {
  background: var(--navy-mid);
  border: 1px solid var(--navy-light);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
}

.service-icon {
  width: 42px;
  height: 42px;
  background: rgba(168,196,0,0.12);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.service-card h3 {
  font-size: 15px;
  font-weight: 700;
  color: var(--pure);
  margin-bottom: 8px;
  letter-spacing: -0.2px;
}

.service-card p {
  font-size: 13px;
  color: var(--gray-mid);
  line-height: 1.6;
}

/* ── PHOTO PLACEHOLDER ───────────────────────────────────── */
.photo-placeholder {
  background: var(--gray-light);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: var(--gray-mid);
  font-size: 13px;
  font-weight: 500;
}

.photo-placeholder svg { opacity: 0.4; }

/* ── FEATURE SPLIT ───────────────────────────────────────── */
.feature-split {
  padding: var(--section-pad);
  background: var(--gray-light);
}

.feature-split-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.feature-list {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.feature-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.feature-item-icon {
  width: 36px;
  height: 36px;
  background: var(--pure);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.feature-item-text h4 {
  font-size: 15px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 4px;
}

.feature-item-text p {
  font-size: 13px;
  color: var(--text-mid);
  line-height: 1.6;
}

.feature-content-center {
  text-align: center;
}

.feature-content-center .feature-list {
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* ── HEATMAP / VISUAL BLOCK ──────────────────────────────── */
.heatmap-block {
  padding: var(--section-pad);
  background: var(--white);
}

.heatmap-inner {
  max-width: var(--max-w);
  margin: 0 auto;
}

.heatmap-header {
  text-align: center;
  margin-bottom: 56px;
}

.heatmap-grid-wrap {
  background: var(--pure);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
}

.heatmap-row-labels {
  display: grid;
  grid-template-columns: 100px repeat(7, 1fr);
  gap: 6px;
  margin-bottom: 8px;
}

.heatmap-col-label {
  text-align: center;
  font-size: 11px;
  font-weight: 600;
  color: var(--gray-mid);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.heatmap-row {
  display: grid;
  grid-template-columns: 100px repeat(7, 1fr);
  gap: 6px;
  margin-bottom: 6px;
}

.heatmap-row-label {
  font-size: 12px;
  color: var(--text-mid);
  font-weight: 500;
  display: flex;
  align-items: center;
}

.heatmap-cell {
  aspect-ratio: 1.4;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  color: var(--pure);
}

.heat-0 { background: var(--gray-light); color: var(--gray-mid); }
.heat-1 { background: rgba(168,196,0,0.2); color: var(--lime-dark); }
.heat-2 { background: rgba(168,196,0,0.45); color: var(--navy); }
.heat-3 { background: rgba(168,196,0,0.7); color: var(--navy); }
.heat-4 { background: var(--lime); color: var(--navy); }
.heat-5 { background: #e05e00; color: var(--pure); }

.heatmap-legend {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 20px;
  font-size: 12px;
  color: var(--text-mid);
}

.legend-cell {
  width: 20px;
  height: 14px;
  border-radius: 3px;
}

/* ── PRODUCTS ────────────────────────────────────────────── */
.products {
  padding: var(--section-pad);
  background: var(--gray-light);
}

.products-header {
  margin-bottom: 56px;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.product-card {
  background: var(--pure);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.product-img {
  height: 200px;
}

.product-body {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.product-tag {
  font-size: 11px;
  font-weight: 700;
  color: var(--lime-dark);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 10px;
}

.product-body h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 10px;
  letter-spacing: -0.2px;
}

.product-body p {
  font-size: 13px;
  color: var(--text-mid);
  line-height: 1.6;
  flex: 1;
  margin-bottom: 16px;
}

.product-price {
  font-size: 15px;
  font-weight: 700;
  color: var(--lime-dark);
  margin-bottom: 14px;
}

.btn-product {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--lime);
  color: var(--navy);
  font-size: 13px;
  font-weight: 700;
  padding: 11px 18px;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  text-decoration: none;
  letter-spacing: 0.01em;
  transition: background 0.2s;
}

.btn-product:hover {
  background: var(--lime-dark);
}

.btn-product.btn-secondary {
  background: transparent;
  color: var(--lime);
  border: 1.5px solid var(--lime);
}

.btn-product.btn-secondary:hover {
  background: var(--lime);
  color: var(--navy);
  border-color: var(--lime-dark);
}

/* ── COMPLIANCE ──────────────────────────────────────────── */
.compliance {
  padding: var(--section-pad);
  background: var(--navy);
}

.compliance-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.compliance-badges {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 36px;
}

.compliance-badge {
  background: var(--navy-mid);
  border: 1px solid var(--navy-light);
  border-radius: var(--radius);
  padding: 18px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.compliance-badge-icon {
  width: 36px;
  height: 36px;
  background: rgba(168,196,0,0.12);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.compliance-badge-text {
  font-size: 13px;
  font-weight: 600;
  color: var(--gray);
  line-height: 1.4;
}

.compliance-visual {
  display: flex;
  justify-content: center;
}

.compliance-center {
  text-align: center;
  grid-template-columns: 1fr !important;
}

.compliance-content-center {
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.audit-log {
  background: var(--navy-mid);
  border: 1px solid var(--navy-light);
  border-radius: var(--radius-lg);
  padding: 24px;
  width: 100%;
  max-width: 400px;
}

.audit-log-title {
  font-size: 11px;
  font-weight: 700;
  color: var(--gray-mid);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 18px;
}

.audit-entry {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid var(--navy-light);
}
.audit-entry:last-child { border-bottom: none; }

.audit-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  margin-top: 4px;
  flex-shrink: 0;
}
.audit-dot.green { background: var(--lime); }
.audit-dot.yellow { background: #f5c400; }
.audit-dot.red { background: #e05e00; }

.audit-text {
  font-size: 12px;
  color: var(--gray);
  line-height: 1.5;
}
.audit-time {
  font-size: 11px;
  color: var(--gray-mid);
  margin-top: 2px;
}

/* ── CONTACTS ────────────────────────────────────────────── */
.contacts {
  padding: var(--section-pad);
  background: var(--white);
}

.contacts-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: start;
}

.contacts-info {
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin-top: 36px;
}

.contact-row {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.contact-icon-box {
  width: 44px;
  height: 44px;
  background: var(--gray-light);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-details {
  padding-top: 2px;
}

.contact-label {
  font-size: 11px;
  font-weight: 700;
  color: var(--gray-mid);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 4px;
}

.contact-value {
  font-size: 15px;
  font-weight: 600;
  color: var(--text-dark);
}

.contact-value a {
  color: var(--navy);
}
.contact-value a:hover { color: var(--lime-dark); }

/* Contact map placeholder */
.contact-map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 320px;
  border: 1px solid var(--border);
}

/* ── FOOTER ──────────────────────────────────────────────── */
.site-footer {
  background: var(--navy);
  border-top: 1px solid var(--navy-light);
  padding: 48px 24px 0;
}

.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--navy-light);
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-brand-row {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-desc {
  font-size: 13px;
  color: var(--gray-mid);
  line-height: 1.7;
  max-width: 280px;
}

.footer-col h4 {
  font-size: 12px;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 16px;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col a {
  font-size: 13px;
  color: var(--gray-mid);
  font-weight: 500;
}
.footer-col a:hover { color: var(--lime); }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-copy {
  font-size: 12px;
  color: var(--gray-mid);
}

.footer-legal-links {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-legal-links a {
  font-size: 12px;
  color: var(--gray-mid);
}
.footer-legal-links a:hover { color: var(--lime); }

.footer-nfa {
  font-size: 11px;
  color: var(--gray-mid);
  padding-top: 12px;
  padding-bottom: 20px;
  line-height: 1.6;
  border-top: 1px solid var(--navy-light);
  margin-top: 0;
}

/* ── MISSION BLOCK ────────────────────────────────────────── */
.mission {
  padding: 96px 0;
  background: var(--gray-light);
}

/* ── COOKIE BANNER ───────────────────────────────────────── */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--navy);
  border-top: 1px solid var(--navy-light);
  z-index: 1000;
  display: none;
}

.cookie-banner.show {
  display: flex;
}

.cookie-banner-inner {
  max-width: var(--max-w);
  width: 100%;
  margin: 0 auto;
  padding: 20px 24px;
}

.cookie-content {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.cookie-text {
  font-size: 13px;
  color: var(--gray);
  line-height: 1.6;
  flex: 1;
  min-width: 200px;
}

.cookie-text strong {
  color: var(--white);
  display: block;
  margin-bottom: 6px;
}

.cookie-text a {
  color: var(--lime);
  font-weight: 600;
  text-decoration: none;
}

.cookie-text a:hover {
  text-decoration: underline;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items: center;
}

.cookie-btn {
  background: var(--lime);
  color: var(--navy);
  font-size: 13px;
  font-weight: 700;
  padding: 10px 18px;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  letter-spacing: 0.01em;
  white-space: nowrap;
}

.cookie-btn:hover {
  background: var(--lime-dark);
}

.cookie-btn-secondary {
  background: transparent;
  color: var(--gray);
  border: 1px solid var(--navy-light);
}

.cookie-btn-secondary:hover {
  border-color: var(--gray-mid);
  color: var(--white);
}

.cookie-option {
  margin-bottom: 16px;
  padding: 12px;
  background: var(--navy-light);
  border-radius: var(--radius);
}

.cookie-option input[type="checkbox"] {
  accent-color: var(--lime);
}

.cookie-option p {
  margin: 0;
}

/* ── RESPONSIVE ──────────────────────────────────────────── */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }

  .cookie-banner-inner { flex-direction: column; align-items: flex-start; }
  .cookie-text { flex: none; width: 100%; }
  .cookie-actions { width: 100%; }
  .cookie-btn { flex: 1; }
}

@media (max-width: 768px) {
  :root { --section-pad: 64px 0; }

  .header-nav, .header-cta { display: none; }
  .hamburger { display: flex; }

  .hero-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .hero-visual { justify-content: flex-start; }

  .stats-inner { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2) { border-right: none; }
  .stat-item:nth-child(3) { border-top: 1px solid var(--navy-light); }
  .stat-item:nth-child(4) { border-right: none; border-top: 1px solid var(--navy-light); }

  .how-grid { grid-template-columns: 1fr; }
  .how-item { border-right: none; border-bottom: 1px solid var(--border); }
  .how-item:last-child { border-bottom: none; }

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

  .feature-split-inner { grid-template-columns: 1fr; gap: 40px; }

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

  .compliance-inner { grid-template-columns: 1fr; gap: 40px; }

  .contacts-inner { grid-template-columns: 1fr; gap: 40px; }

  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }

  .heatmap-row-labels,
  .heatmap-row { grid-template-columns: 70px repeat(7, 1fr); }
}

@media (max-width: 480px) {
  .stats-inner { grid-template-columns: 1fr 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .heatmap-grid-wrap { padding: 16px; overflow-x: auto; }
  .heatmap-row-labels,
  .heatmap-row { min-width: 420px; }
  .compliance-badges { grid-template-columns: 1fr; }
}
