/* ==========================================================================
   MARF Site Manager — Marketing Site
   Brand: hi-vis + steel — UK construction workforce management SaaS
   ========================================================================== */

:root {
  --navy: #0B1F33;
  --navy-dark: #071624;
  --navy-mid: #122A45;
  --steel: #232A31;
  --steel-light: #3A434B;
  --hivis: #FF6B00;
  --hivis-dark: #D95700;
  --hivis-yellow: #FFC845;
  --white: #FFFFFF;
  --offwhite: #F5F6F7;
  --paper: #FAFAF9;
  --text-dark: #1C2128;
  --text-muted: #5B6572;
  --text-on-dark: #D7E0E8;
  --text-on-dark-muted: #8FA0AF;
  --border: #E4E7EA;
  --success: #2E7D32;
  --radius: 10px;
  --shadow-sm: 0 1px 2px rgba(11,31,51,0.06), 0 1px 3px rgba(11,31,51,0.08);
  --shadow-md: 0 8px 24px rgba(11,31,51,0.10);
  --shadow-lg: 0 24px 60px rgba(11,31,51,0.18);
  --container: 1160px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  color: var(--text-dark);
  background: var(--paper);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; }
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}
section { position: relative; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--hivis-dark);
}
.eyebrow::before {
  content: "";
  width: 18px;
  height: 3px;
  background: var(--hivis);
  border-radius: 2px;
}
h1, h2, h3, h4 {
  font-weight: 800;
  letter-spacing: -0.01em;
  margin: 0 0 12px;
  color: var(--navy);
}
h1 { font-size: 44px; line-height: 1.12; letter-spacing: -0.02em; }
h2 { font-size: 32px; line-height: 1.2; }
h3 { font-size: 19px; line-height: 1.35; }
p { margin: 0 0 16px; color: var(--text-muted); }
.lede { font-size: 19px; color: var(--text-on-dark-muted); }
.section-head { max-width: 640px; margin: 0 auto 48px; text-align: center; }
.section-head p { font-size: 17px; }
.section-head.left { margin-left: 0; text-align: left; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 24px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.12s ease, box-shadow 0.12s ease, background 0.12s ease, border-color .12s ease;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn-hivis { background: var(--hivis); color: var(--white); box-shadow: var(--shadow-sm); }
.btn-hivis:hover { background: var(--hivis-dark); }
.btn-ghost-dark { background: transparent; border-color: rgba(255,255,255,0.28); color: var(--white); }
.btn-ghost-dark:hover { border-color: var(--hivis); background: rgba(255,255,255,0.06); }
.btn-outline { background: transparent; border-color: var(--navy); color: var(--navy); }
.btn-outline:hover { background: var(--navy); color: var(--white); }
.btn-lg { padding: 16px 30px; font-size: 16px; }
.btn-block { width: 100%; }

/* ---------------- Header ---------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(11,31,51,0.94);
  backdrop-filter: saturate(140%) blur(6px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.site-header .container { display: flex; align-items: center; justify-content: space-between; height: 72px; }
.brand { display: flex; align-items: center; gap: 10px; font-weight: 800; font-size: 20px; color: var(--white); text-decoration: none; letter-spacing: -0.01em; }
.brand-mark { width: 34px; height: 34px; flex: none; }
.main-nav { display: flex; align-items: center; gap: 30px; }
.main-nav a {
  color: var(--text-on-dark);
  text-decoration: none;
  font-size: 14.5px;
  font-weight: 600;
}
.main-nav a:hover { color: var(--white); }
.header-cta { display: flex; align-items: center; gap: 10px; }
.nav-toggle {
  display: none; width: 40px; height: 40px; border-radius: 8px; border: 1px solid rgba(255,255,255,0.16);
  background: rgba(255,255,255,0.06); align-items: center; justify-content: center; cursor: pointer;
}
.nav-toggle svg { width: 20px; height: 20px; }
.mobile-nav {
  display: none; flex-direction: column; gap: 4px; padding: 12px 24px 20px; background: var(--navy);
  border-top: 1px solid rgba(255,255,255,0.08);
}
.mobile-nav.open { display: flex; }
.mobile-nav a { color: var(--text-on-dark); text-decoration: none; padding: 12px 4px; font-weight: 600; font-size: 15px; border-bottom: 1px solid rgba(255,255,255,0.06); }
.mobile-nav a:last-child, .mobile-nav a:nth-last-child(2) { border-bottom: none; }
.mobile-nav .btn { margin-top: 10px; }

/* ---------------- Hero ---------------- */
.hero {
  background: linear-gradient(180deg, var(--navy) 0%, var(--navy-mid) 100%);
  color: var(--white);
  overflow: hidden;
  padding: 88px 0 0;
}
.hero-stripes {
  position: absolute;
  inset: 0;
  opacity: 0.10;
  background: repeating-linear-gradient(45deg, var(--hivis-yellow) 0 26px, var(--navy-dark) 26px 52px);
  -webkit-mask-image: linear-gradient(180deg, transparent, black 30%, black 70%, transparent);
  mask-image: linear-gradient(180deg, transparent, black 30%, black 70%, transparent);
}
.hero-inner { position: relative; display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 48px; align-items: center; padding-bottom: 64px; }
.hero-copy h1 { color: var(--white); }
.hero-copy .hi { color: var(--hivis-yellow); }
.hero-badges { display: flex; flex-wrap: wrap; gap: 10px; margin: 24px 0 30px; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 7px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.14);
  color: var(--text-on-dark);
  padding: 7px 12px; border-radius: 100px; font-size: 13px; font-weight: 600;
}
.hero-badge svg { width: 14px; height: 14px; color: var(--hivis-yellow); }
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-note { margin-top: 14px; font-size: 13px; color: var(--text-on-dark-muted); }

.hero-panel {
  background: var(--steel);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 14px;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}
.hero-panel-top {
  display: flex; align-items: center; gap: 8px;
  padding: 12px 16px;
  background: var(--navy-dark);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.hero-panel-dot { width: 9px; height: 9px; border-radius: 50%; background: rgba(255,255,255,0.25); }
.hero-panel-title { margin-left: 6px; font-size: 12px; color: var(--text-on-dark-muted); font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase; }
.hero-panel-body { padding: 20px; display: grid; gap: 12px; }
.hp-row { display: flex; align-items: center; justify-content: space-between; background: rgba(255,255,255,0.045); border: 1px solid rgba(255,255,255,0.07); border-radius: 8px; padding: 12px 14px; }
.hp-row .l { display: flex; align-items: center; gap: 10px; font-size: 13.5px; color: var(--text-on-dark); font-weight: 600; }
.hp-row .l svg { width: 17px; height: 17px; color: var(--hivis); }
.hp-pill { font-size: 11.5px; font-weight: 800; padding: 4px 9px; border-radius: 100px; letter-spacing: 0.03em; }
.hp-pill.ok { background: rgba(18,134,111,0.18); color: #4FD9BC; }
.hp-pill.warn { background: rgba(255,200,69,0.18); color: var(--hivis-yellow); }
.hp-pill.info { background: rgba(255,255,255,0.10); color: var(--text-on-dark); }

.stat-strip { border-top: 1px solid rgba(255,255,255,0.08); }
.stat-strip .container { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; padding: 28px 24px; }
.stat { text-align: center; }
.stat b { display: block; font-size: 26px; color: var(--hivis-yellow); font-weight: 800; }
.stat span { font-size: 13px; color: var(--text-on-dark-muted); }

/* ---------------- Pain points ---------------- */
.pain { padding: 88px 0 20px; background: var(--paper); }
.pain-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.pain-card {
  background: var(--white); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 26px; box-shadow: var(--shadow-sm);
}
.pain-card svg { width: 26px; height: 26px; color: var(--hivis-dark); margin-bottom: 14px; }
.pain-card h3 { margin-bottom: 8px; }
.pain-card p { margin: 0; font-size: 14.5px; }

/* ---------------- Features ---------------- */
.features { padding: 96px 0; background: var(--offwhite); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.feature-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease;
}
.feature-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: rgba(255,107,0,0.35); }
.feature-icon {
  width: 44px; height: 44px; border-radius: 9px;
  background: linear-gradient(160deg, var(--navy), var(--navy-mid));
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
}
.feature-icon svg { width: 22px; height: 22px; color: var(--hivis-yellow); }
.feature-card h3 { margin-bottom: 6px; }
.feature-card p { font-size: 14.5px; margin: 0; }
.feature-card.wide { grid-column: span 3; display: grid; grid-template-columns: 44px 1fr; gap: 18px; align-items: start; padding: 26px 28px; }
.feature-card.wide .feature-icon { margin: 0; }

/* ---------------- GDPR / compliance ---------------- */
.compliance { padding: 96px 0; background: var(--navy); color: var(--white); }
.compliance-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.compliance h2 { color: var(--white); }
.compliance .eyebrow { color: var(--hivis-yellow); }
.compliance .eyebrow::before { background: var(--hivis-yellow); }
.compliance-list { list-style: none; margin: 24px 0 0; padding: 0; display: grid; gap: 14px; }
.compliance-list li { display: flex; gap: 12px; align-items: flex-start; font-size: 15px; color: var(--text-on-dark); }
.compliance-list svg { width: 20px; height: 20px; color: var(--hivis-yellow); flex: none; margin-top: 2px; }
.compliance-card {
  background: var(--steel);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 14px;
  padding: 28px;
  box-shadow: var(--shadow-lg);
}
.compliance-card .row { display: flex; justify-content: space-between; padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,0.08); font-size: 14px; }
.compliance-card .row:last-child { border-bottom: none; }
.compliance-card .row span:first-child { color: var(--text-on-dark-muted); }
.compliance-card .row span:last-child { font-weight: 700; color: var(--white); }
.compliance-card .row .days { color: var(--hivis-yellow); }

/* ---------------- Pricing ---------------- */
.pricing { padding: 96px 0; background: var(--paper); }
.billing-toggle { display: flex; align-items: center; justify-content: center; gap: 12px; margin: 0 0 40px; font-size: 14px; font-weight: 700; color: var(--text-muted); }
.switch { position: relative; width: 52px; height: 28px; background: var(--navy); border-radius: 100px; cursor: pointer; flex: none; }
.switch::after {
  content: ""; position: absolute; top: 3px; left: 3px; width: 22px; height: 22px;
  background: var(--white); border-radius: 50%; transition: transform .18s ease; box-shadow: var(--shadow-sm);
}
.switch.on::after { transform: translateX(24px); }
.switch.on { background: var(--hivis-dark); }
.save-badge { background: var(--hivis-yellow); color: var(--navy-dark); font-size: 11.5px; font-weight: 800; padding: 3px 8px; border-radius: 100px; }

.price-wrap { display: flex; justify-content: center; }
.price-card {
  width: 100%; max-width: 460px;
  background: var(--white); border: 2px solid var(--navy); border-radius: 16px;
  padding: 40px; box-shadow: var(--shadow-lg); text-align: center; position: relative;
}
.price-card .tag {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--hivis); color: var(--white); font-size: 12px; font-weight: 800;
  padding: 5px 14px; border-radius: 100px; letter-spacing: 0.04em; text-transform: uppercase;
}
.price-figure { display: flex; align-items: baseline; justify-content: center; gap: 6px; margin: 20px 0 4px; }
.price-figure .amount { font-size: 56px; font-weight: 800; color: var(--navy); letter-spacing: -0.02em; }
.price-figure .unit { font-size: 15px; color: var(--text-muted); font-weight: 600; }
.price-sub { font-size: 13.5px; color: var(--text-muted); margin-bottom: 26px; }
.price-list { list-style: none; margin: 0 0 30px; padding: 0; text-align: left; display: grid; gap: 12px; }
.price-list li { display: flex; gap: 10px; align-items: flex-start; font-size: 14.5px; color: var(--text-dark); }
.price-list svg { width: 18px; height: 18px; color: var(--success); flex: none; margin-top: 2px; }
.price-fine { margin-top: 18px; font-size: 12.5px; color: var(--text-muted); }

/* ---------------- FAQ ---------------- */
.faq { padding: 96px 0; background: var(--offwhite); border-top: 1px solid var(--border); }
.faq-list { max-width: 760px; margin: 0 auto; display: grid; gap: 12px; }
.faq-item { background: var(--white); border: 1px solid var(--border); border-radius: 10px; overflow: hidden; }
.faq-q {
  width: 100%; text-align: left; padding: 18px 22px; font-weight: 700; font-size: 15.5px;
  background: none; border: none; cursor: pointer; display: flex; align-items: center; justify-content: space-between;
  color: var(--navy); gap: 16px;
}
.faq-q svg { width: 18px; height: 18px; flex: none; transition: transform 0.18s ease; color: var(--hivis-dark); }
.faq-item.open .faq-q svg { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.22s ease; padding: 0 22px; }
.faq-item.open .faq-a { max-height: 300px; padding-bottom: 18px; }
.faq-a p { margin: 0; font-size: 14.5px; }

/* ---------------- Final CTA ---------------- */
.cta-band {
  background: linear-gradient(120deg, var(--navy) 0%, var(--navy-dark) 100%);
  color: var(--white); padding: 72px 0; text-align: center;
}
.cta-band h2 { color: var(--white); margin-bottom: 10px; }
.cta-band p { color: var(--text-on-dark-muted); font-size: 16px; max-width: 520px; margin: 0 auto 30px; }
.cta-band .hero-ctas { justify-content: center; }

/* ---------------- Footer ---------------- */
.site-footer { background: var(--navy-dark); color: var(--text-on-dark-muted); padding: 56px 0 28px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr repeat(3, 1fr); gap: 32px; padding-bottom: 40px; border-bottom: 1px solid rgba(255,255,255,0.08); }
.footer-brand .brand { margin-bottom: 12px; }
.footer-grid p { font-size: 13.5px; max-width: 260px; }
.footer-col h4 { color: var(--white); font-size: 13px; text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 14px; }
.footer-col ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; }
.footer-col a { text-decoration: none; font-size: 14px; color: var(--text-on-dark-muted); }
.footer-col a:hover { color: var(--white); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 24px; font-size: 12.5px; flex-wrap: wrap; gap: 10px; }

/* ---------------- Legal / Support pages ---------------- */
.page-hero {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 50%, var(--navy-mid) 100%);
  color: var(--white);
  padding: 64px 24px 52px;
  text-align: center;
}
.page-hero h1 { color: var(--white); font-size: clamp(30px, 5vw, 46px); margin-bottom: 10px; }
.page-hero p { color: var(--text-on-dark-muted); margin: 0; font-size: 15px; }
.back-link {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--text-on-dark-muted); text-decoration: none; font-size: 14px; font-weight: 600;
  margin-bottom: 22px; transition: color 0.15s ease;
}
.back-link:hover { color: var(--white); }
.back-link svg { width: 16px; height: 16px; }

.legal-body { max-width: 780px; margin: 0 auto; padding: 64px 24px 80px; }
.legal-body h2 {
  font-size: clamp(21px, 3vw, 27px);
  margin: 46px 0 12px; padding-bottom: 10px; border-bottom: 2px solid var(--border);
}
.legal-body h2:first-child { margin-top: 0; }
.legal-body h3 { font-size: 16.5px; font-weight: 700; color: var(--hivis-dark); margin: 26px 0 8px; }
.legal-body h4 {
  font-size: 12px; font-weight: 700; color: var(--text-muted);
  text-transform: uppercase; letter-spacing: 0.06em; margin: 18px 0 6px;
}
.legal-body p { font-size: 15px; color: var(--text-muted); line-height: 1.75; }
.legal-body ul { list-style: none; margin: 8px 0 16px; padding: 0; }
.legal-body ul li {
  font-size: 15px; color: var(--text-muted); line-height: 1.7;
  padding: 7px 0 7px 22px; position: relative; border-bottom: 1px solid var(--border);
}
.legal-body ul li:last-child { border-bottom: none; }
.legal-body ul li::before {
  content: ""; position: absolute; left: 0; top: 15px;
  width: 7px; height: 7px; border-radius: 50%; background: var(--hivis);
}
.legal-body ul ul li::before { background: var(--border); }
.legal-body strong { color: var(--text-dark); font-weight: 700; }
.legal-body a { color: var(--hivis-dark); text-decoration: underline; }
.legal-body a:hover { color: var(--hivis); }

.callout {
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 16px 20px; margin: 24px 0; font-size: 14.5px; line-height: 1.65;
}
.callout.info { background: #FFF3E8; border-left: 4px solid var(--hivis); color: var(--hivis-dark); }
.callout.warn { background: #FFF8E1; border-left: 4px solid #C77700; color: #6B4A00; }

.table-scroll { overflow-x: auto; margin: 16px 0 24px; -webkit-overflow-scrolling: touch; }
.legal-table { width: 100%; min-width: 420px; border-collapse: collapse; margin: 0; font-size: 14px; table-layout: fixed; }
.legal-table th, .legal-table td {
  text-align: left; padding: 10px 14px; border-bottom: 1px solid var(--border);
  word-wrap: break-word; overflow-wrap: break-word;
}
.legal-table th { color: var(--navy); font-size: 12px; text-transform: uppercase; letter-spacing: 0.05em; }
.legal-table td:last-child, .legal-table th:last-child { color: var(--hivis-dark); font-weight: 700; }

.contact-card {
  background: var(--white); border: 2px solid var(--border); border-radius: 14px;
  padding: 28px 32px; margin-top: 44px;
}
.contact-card h3 { margin-top: 0; color: var(--navy); font-size: 20px; }
.contact-card p { margin-bottom: 0; }
.contact-card a { font-weight: 700; }

/* Support page */
.faq-grid-support {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 18px; margin-bottom: 56px;
}
.faq-card-support {
  background: var(--white); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 24px; transition: border-color 0.15s ease;
}
.faq-card-support:hover { border-color: var(--hivis); }
.faq-card-support h3 { font-size: 15.5px; font-weight: 700; color: var(--navy); margin: 0 0 8px; }
.faq-card-support p { font-size: 14px; color: var(--text-muted); line-height: 1.65; margin: 0; }

.contact-section {
  background: var(--offwhite); border: 1px solid var(--border); border-radius: 14px;
  padding: 48px 40px; text-align: center;
}
.contact-section h2 { margin-bottom: 10px; }
.contact-section p { max-width: 460px; margin: 0 auto 28px; }
.contact-note { font-size: 13px; color: var(--text-muted); margin-top: 14px; }

/* Roadmap page */
.roadmap-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 36px; }
.roadmap-col {
  background: var(--white); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 22px 24px 8px;
}
.roadmap-tag {
  display: inline-flex; font-size: 12px; font-weight: 800; letter-spacing: 0.06em;
  text-transform: uppercase; padding: 5px 12px; border-radius: 100px; margin-bottom: 8px;
}
.roadmap-tag.now { background: var(--hivis); color: var(--white); }
.roadmap-tag.next { background: var(--navy); color: var(--white); }
.roadmap-tag.later { background: var(--offwhite); color: var(--text-muted); border: 1px solid var(--border); }
.roadmap-list { list-style: none; margin: 8px 0 0; padding: 0; }
.roadmap-list li {
  font-size: 14.5px; color: var(--text-dark); line-height: 1.6;
  padding: 11px 0 11px 20px; position: relative; border-bottom: 1px solid var(--border);
}
.roadmap-list li:last-child { border-bottom: none; }
.roadmap-list li::before {
  content: ""; position: absolute; left: 0; top: 18px;
  width: 6px; height: 6px; border-radius: 50%; background: var(--hivis);
}
@media (max-width: 900px) {
  .roadmap-grid { grid-template-columns: 1fr; }
}

/* ---------------- Responsive ---------------- */
@media (max-width: 900px) {
  .main-nav, .header-cta { display: none; }
  .nav-toggle { display: flex; }
  .hero-inner { grid-template-columns: 1fr; padding-bottom: 40px; }
  .hero-panel { order: -1; }
  h1 { font-size: 34px; }
  .stat-strip .container { grid-template-columns: repeat(2,1fr); }
  .pain-grid, .feature-grid { grid-template-columns: 1fr 1fr; }
  .feature-card.wide { grid-column: span 2; grid-template-columns: 1fr; }
  .compliance-inner { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 620px) {
  .pain-grid, .feature-grid { grid-template-columns: 1fr; }
  .feature-card.wide { grid-column: span 1; }
  h1 { font-size: 28px; }
  h2 { font-size: 25px; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-ctas .btn, .cta-band .btn { width: 100%; }
}

/* ==========================================================================
   Cookie consent banner
   ========================================================================== */
.consent-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 999;
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px 20px;
  padding: 16px 18px;
  background: var(--navy);
  color: var(--text-on-dark);
  border: 1px solid var(--navy-mid);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
}
.consent-banner[hidden] { display: none; }
.consent-banner-text {
  margin: 0;
  flex: 1 1 280px;
  font-size: 13.5px;
  line-height: 1.5;
}
.consent-banner-text a { color: var(--hivis-yellow); }
.consent-banner-actions {
  display: flex;
  gap: 10px;
  flex: 0 0 auto;
}
@media (max-width: 520px) {
  .consent-banner { left: 10px; right: 10px; bottom: 10px; }
  .consent-banner-actions { width: 100%; }
  .consent-banner-actions .btn { flex: 1; }
}
