/* ============================================================
   RIVISIO — Pilot Site Stylesheet
   Brand: Predict | Prevent | Protect
   Colours, type and tone per Rivisio Brand Kit.
   ============================================================ */

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

:root {
  /* Brand palette */
  --clear: #FFFFFF;
  --soft-view: #F9F9FA;
  --perspective: #4670B6;
  --focus: #263D92;
  --insight: #1A2038;
  --foundation: #000000;
  --signal: #F6871F;
  --signal-hover: #e57a10;
  --signal-light: rgba(246,135,31,0.10);
  --muted: #5a6072;
  --line: rgba(26,32,56,0.10);

  /* Type */
  --display: 'Quicksand', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  --anxler-font: 'Anxler', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  --body: 'Helvetica Neue', Helvetica, Arial, sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--body);
  color: var(--insight);
  background: var(--clear);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

h2, h3, h4 { font-family: var(--display); font-weight: 300; line-height: 1.15; }
h1, .display { font-family: var(--display); font-weight: 300; line-height: 1.15; }

h1, h2, h3 {font-family: var(--anxler-font); font-weight: 400; line-height: 1.15; color: var(--insight); }

a { color: var(--focus); }

/* ── LAYOUT ── */
.container { max-width: 1180px; margin: 0 auto; padding: 0 24px; }
.section { padding: 92px 0; }
.section--soft { background: var(--soft-view); }
.section--dark { background: linear-gradient(135deg, var(--insight) 0%, var(--focus) 100%); color: #fff; }
.narrow { max-width: 760px; margin: 0 auto; }
.center { text-align: center; }

.section-label {
  display: inline-block;
  font-family: var(--body);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--signal);
  margin-bottom: 14px;
}
.section-heading {
  font-size: clamp(2rem, 4vw, 2.7rem);
  color: var(--focus);
  margin-bottom: 18px;
}
.section--dark .section-heading { color: #fff; }
.section-sub {
  font-size: 1.08rem;
  color: var(--muted);
  max-width: 660px;
  line-height: 1.75;
  margin-bottom: 8px;
}
.center .section-sub { margin-left: auto; margin-right: auto; }
.section--dark .section-sub { color: rgba(255,255,255,0.72); }

/* ── BUTTONS ── */
.btn {
  display: inline-block;
  padding: 15px 34px;
  border-radius: 9px;
  font-family: var(--display);
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  transition: all 0.25s ease;
  cursor: pointer;
  border: none;
  text-align: center;
  font-family: var(--anxler-font);
  font-weight: 400;
}
.btn-primary { background: var(--signal); color: #fff; }
.btn-primary:hover { background: var(--signal-hover); transform: translateY(-2px); box-shadow: 0 10px 26px rgba(246,135,31,0.34); }
.btn-outline { background: transparent; color: #fff; border: 2px solid rgba(255,255,255,0.55); }
.btn-outline:hover { background: #fff; color: var(--insight); border-color: #fff; }
.btn-ghost { background: transparent; color: var(--focus); border: 2px solid var(--perspective); }
.btn-ghost:hover { background: var(--focus); color: #fff; border-color: var(--focus); }
.btn-block { display: block; width: 100%; }

/* ── NAV ── */
nav.site {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(26,32,56,0.96);
  backdrop-filter: blur(12px);
  padding: 14px 0;
}
nav.site .container { display: flex; align-items: center; justify-content: space-between; }
.brand img { height: 45px; width: auto; display: block; }
nav.site ul { list-style: none; display: flex; gap: 30px; align-items: center; }
nav.site ul li a {
  color: rgba(255,255,255,0.82); text-decoration: none;
  font-size: 0.92rem; font-weight: 600; transition: color 0.2s;
}
nav.site ul li a:hover, nav.site ul li a.active { color: var(--signal); }
nav.site .btn { padding: 9px 22px; font-size: 0.9rem; }
.mobile-toggle { display: none; background: none; border: none; cursor: pointer; }
.mobile-toggle span { display: block; width: 24px; height: 2px; background: #fff; margin: 5px 0; transition: 0.3s; border-radius: 2px; }

/* spacer so fixed nav doesn't overlap page content */
.page-top { padding-top: 78px; }

/* ── HERO ── */
.hero {
  background: linear-gradient(135deg, var(--insight) 0%, var(--focus) 55%, var(--perspective) 100%);
  position: relative; overflow: hidden;
  padding: 120px 0 96px;
  text-align: center;
}
.hero::before {
  content:''; position:absolute; top:-45%; right:-15%;
  width: 760px; height: 760px; border-radius: 50%;
  background: radial-gradient(circle, rgba(246,135,31,0.10) 0%, transparent 70%);
}
.hero::after {
  content:''; position:absolute; bottom:-35%; left:-12%;
  width: 620px; height: 620px; border-radius: 50%;
  background: radial-gradient(circle, rgba(70,112,182,0.16) 0%, transparent 70%);
}
.hero .container { position: relative; z-index: 2; }
.hero-logo { width: min(440px, 78%); margin: 0 auto 30px; display: block; }
.hero h1 {
  font-size: clamp(2.1rem, 5vw, 3.4rem);
  color: #fff; margin-bottom: 20px; max-width: 880px; margin-left:auto; margin-right:auto;
}
.hero h1 .hl { color: var(--signal); }
.hero p.lead {
  font-size: 1.2rem; color: rgba(255,255,255,0.84);
  max-width: 660px; margin: 0 auto 36px; line-height: 1.7;
}
.hero-cta { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.hero-trust { display: flex; gap: 30px; justify-content: center; flex-wrap: wrap; margin-top: 34px; }
.hero-trust span {
  color: rgba(255,255,255,0.62); font-size: 0.84rem; font-weight: 600;
  letter-spacing: 0.5px; display: flex; align-items: center; gap: 8px;
}
.hero-trust .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--signal); }

/* page header (interior pages) */
.page-header {
  background: linear-gradient(135deg, var(--insight) 0%, var(--focus) 100%);
  color: #fff; text-align: center; padding: 120px 0 64px;
}
.page-header h1 { font-size: clamp(2rem, 4.6vw, 3rem); color: #fff; margin-bottom: 14px; }
.page-header p { color: rgba(255,255,255,0.8); max-width: 620px; margin: 0 auto; font-size: 1.1rem; }

/* ── COMPLIANCE STRIP ── */
.strip { background: var(--soft-view); padding: 40px 0; text-align: center; }
.strip p.kicker { font-size: 0.8rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: #9aa0ad; margin-bottom: 22px; }
.badges { display: flex; justify-content: center; gap: 40px; flex-wrap: wrap; align-items: center; }
.badge { display: flex; align-items: center; gap: 10px; color: var(--focus); font-weight: 700; font-size: 0.92rem; }
.badge .ic {
  width: 42px; height: 42px; border-radius: 10px; background: #fff;
  border: 2px solid var(--perspective); display: flex; align-items: center; justify-content: center; font-size: 1.05rem;
  padding: 7px; object-fit: contain;
}

/* ── SPLIT (text + visual) ── */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.split .section-heading { text-align: left; }
.split p { color: var(--muted); line-height: 1.8; margin-bottom: 16px; font-size: 1.04rem; }

/* GPS / explainer panel */
.panel {
  background: linear-gradient(135deg, var(--insight), var(--focus));
  border-radius: 20px; padding: 40px; color: #fff;
}
.flow-node {
  background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.18);
  border-radius: 12px; padding: 18px 22px;
}
.flow-node h4 { font-size: 1rem; margin-bottom: 4px; display: flex; align-items: center; gap: 10px; }
.flow-node p { font-size: 0.86rem; opacity: 0.78; margin: 0; color: #fff; }
.flow-node .ic { width: 30px; height: 30px; border-radius: 8px; display:flex; align-items:center; justify-content:center; font-size: 0.95rem; flex-shrink:0; background: rgba(246,135,31,0.28); }
.flow-node .ic img { max-width: 65%; max-height: 65%; display: block; }
.flow-arrow { text-align: center; padding: 7px 0; color: var(--signal); font-size: 1.3rem; line-height: 1; }
.tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 22px; }
.tag { padding: 6px 15px; border-radius: 20px; font-size: 0.78rem; font-weight: 700; background: var(--signal-light); color: var(--signal); font-family: var(--display); }

/* ── FEATURE CARDS ── */
.grid-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(258px, 1fr)); gap: 28px; margin-top: 14px; }
.card {
  background: #fff; border-radius: 16px; padding: 34px 30px; text-align: left;
  border: 1px solid var(--line); transition: all 0.28s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: 0 16px 44px rgba(26,32,56,0.10); }
.card .ic {
  width: 54px; height: 54px; border-radius: 13px; display: flex; align-items: center;
  justify-content: center; font-size: 2.2rem; margin-bottom: 18px; background: var(--signal-light);
}
.card .ic img { max-width: 65%; max-height: 65%; display: block; }
.card:nth-child(2) .ic { background: rgba(70,112,182,0.13); }
.card:nth-child(3) .ic { background: rgba(38,61,146,0.12); }
.card:nth-child(4) .ic { background: rgba(26,32,56,0.10); }
.card h3 { font-size: 1.18rem; margin-bottom: 9px; color: var(--insight); }
.card p { font-size: 0.95rem; color: var(--muted); line-height: 1.7; }

/* ── STEPS ── */
.steps { display: grid; grid-template-columns: repeat(5, 1fr); gap: 20px; margin-top: 18px; counter-reset: step; }
.step { text-align: center; position: relative; }
.step .num {
  width: 56px; height: 56px; border-radius: 50%;
  background: linear-gradient(135deg, var(--focus), var(--perspective));
  color: #fff; font-family: var(--display); font-size: 1.3rem; font-weight: 700;
  display: flex; align-items: center; justify-content: center; margin: 0 auto 16px;
}
.step h3 { font-size: 1.04rem; margin-bottom: 8px; color: var(--insight); }
.step p { font-size: 0.9rem; color: var(--muted); line-height: 1.6; }

/* ── STATS ── */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; margin: 8px 0 56px; }
.stat h2 { font-size: clamp(2.2rem, 5vw, 3.2rem); color: var(--signal); line-height: 1; margin-bottom: 8px; }
.stat p { font-size: 0.92rem; color: rgba(255,255,255,0.72); }

/* ── QUOTE CAROUSEL ── */
.quote-carousel { max-width: 900px; margin: 0 auto; display: flex; align-items: center; gap: 16px; }
.quote-inner { flex: 1; min-width: 0; }
.quote-slides {
  background: #fff; border-left: 4px solid var(--signal); border-radius: 12px;
  padding: 30px 34px; box-shadow: 0 12px 40px rgba(26,32,56,0.07);
  display: grid;
}
.quote-slide { grid-area: 1 / 1; visibility: hidden; opacity: 0; transition: opacity 0.4s ease; display: flex; flex-direction: column; justify-content: space-between; }
.quote-slide.active { visibility: visible; opacity: 1; }
.quote-slide p { font-size: 1.15rem; color: var(--insight); font-style: italic; line-height: 1.7; margin-bottom: 0; }
.quote-slide cite { font-style: normal; font-weight: 700; color: var(--focus); font-size: 0.92rem; }
.quote-dots { display: flex; justify-content: center; gap: 8px; margin-top: 16px; }
.quote-dot {
  width: 10px; height: 10px; border-radius: 50%; border: none; cursor: pointer;
  background: rgba(26,32,56,0.2); padding: 0; transition: background 0.2s;
}
.quote-dot.active { background: var(--signal); }
.quote-arrow {
  flex-shrink: 0; width: 38px; height: 38px; border-radius: 50%; border: 2px solid rgba(26,32,56,0.2);
  background: #fff; color: var(--insight); font-size: 1rem; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: border-color 0.2s, color 0.2s;
}
.quote-arrow:hover { border-color: var(--signal); color: var(--signal); }

/* ── PRICING ── */
.annual-banner { display: flex; align-items: center; gap: 14px; justify-content: center; background: var(--signal-light); border: 1px solid rgba(246,135,31,0.35); border-radius: 12px; padding: 14px 22px; max-width: 580px; margin: 0 auto 44px; }
.annual-banner .ab-tag { background: var(--signal); color: #fff; font-family: var(--display); font-weight: 700; font-size: 0.72rem; letter-spacing: 1px; text-transform: uppercase; padding: 5px 13px; border-radius: 20px; flex-shrink: 0; }
.annual-banner p { margin: 0; color: var(--insight); font-size: 0.98rem; }
.pricing-group-head { text-align: center; margin-bottom: 26px; }
.pricing-group-head h2 { font-size: clamp(1.6rem, 3vw, 2rem); color: var(--focus); margin-bottom: 6px; }
.pricing-group-head p { color: var(--muted); font-size: 1rem; max-width: 600px; margin: 0 auto; }
.pricing-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 22px; margin-top: 22px; align-items: stretch; }
.tier {
  background: #fff; border: 1px solid var(--line); border-radius: 16px; padding: 30px 26px;
  display: flex; flex-direction: column; transition: all 0.25s ease;
}
.tier:hover { transform: translateY(-4px); box-shadow: 0 16px 44px rgba(26,32,56,0.10); }
.tier.featured { border: 2px solid var(--signal); box-shadow: 0 16px 44px rgba(246,135,31,0.16); position: relative; }
.tier.featured .ribbon {
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  background: var(--signal); color: #fff;
  font-size: 0.72rem; letter-spacing: 1px; text-transform: uppercase; padding: 5px 14px; border-radius: 20px; white-space: nowrap;
}
.tier h3 { font-family: var(--anxler-font); font-size: 1.2rem; color: var(--insight); margin-bottom: 6px; }
.tier .price { font-family: var(--anxler-font); font-weight: 700; color: var(--focus); font-size: 2rem; line-height: 1.1; margin: 6px 0 2px; }
.tier .price small { font-size: 0.82rem; color: var(--muted); font-weight: 600; display: block; margin-top: 4px; font-family: var(--anxler-font); }
.tier .blurb { font-size: 0.9rem; color: var(--muted); margin: 12px 0 18px; min-height: 42px; }
.tier ul { list-style: none; margin-bottom: 24px; flex: 1; }
.tier ul li { font-size: 0.9rem; color: var(--insight); padding: 7px 0 7px 24px; position: relative; line-height: 1.5; }
.tier ul li::before { content: '✓'; position: absolute; left: 0; color: var(--signal); font-weight: 700; }
.tier .btn { margin-top: auto; }
.pricing-note { text-align: center; color: var(--muted); font-size: 0.95rem; margin-top: 30px; max-width: 720px; margin-left: auto; margin-right: auto; }
.pricing-note strong { color: var(--focus); }

/* ── ABOUT ── */
.founder-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 26px; margin-top: 16px; }
.founder { background: var(--soft-view); border-radius: 16px; padding: 30px; border: 1px solid var(--line); }
.founder .avatar {
  width: 64px; height: 64px; border-radius: 14px; background: linear-gradient(135deg, var(--focus), var(--perspective));
  color: #fff; font-family: var(--display); font-weight: 700; font-size: 1.5rem;
  display: flex; align-items: center; justify-content: center; margin-bottom: 16px;
  overflow: hidden;
}
.founder .avatar img {
  width: 100%; height: 100%; object-fit: cover; display: block; filter: grayscale(100%); transition: filter 0.28s ease;
}
.founder h3 { font-size: 1.15rem; color: var(--insight); margin-bottom: 2px; }
.founder .role { font-size: 0.82rem; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: var(--signal); margin-bottom: 12px; }
.founder p { font-size: 0.93rem; color: var(--muted); line-height: 1.7; }
.founder .avatar:has(img) {
  background: transparent;
}
.founder-head { display: flex; align-items: center; gap: 14px; margin-bottom: 12px; }
.founder-head .avatar { margin-bottom: 0; flex-shrink: 0; }
.founder-head h3, .founder-head .role { text-align: left; margin-bottom: 0; }

/* ── FORMS ── */
.form-wrap { background: #fff; border-radius: 20px; padding: 0; max-width: 620px; margin: 0 auto; box-shadow: 0 20px 56px rgba(26,32,56,0.09); border: 1px solid var(--line); }
.form-wrap .hs-form-frame { display: block; width: 100%; }
.form-row { margin-bottom: 18px; }
.form-row.two { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
label { display: block; font-size: 0.85rem; font-weight: 700; color: var(--focus); margin-bottom: 7px; }
input, select, textarea {
  width: 100%; padding: 13px 15px; border-radius: 9px; border: 2px solid #e2e4ea;
  font-family: var(--body); font-size: 0.98rem; color: var(--insight); outline: none; transition: border-color 0.2s; background: #fff;
}
input:focus, select:focus, textarea:focus { border-color: var(--signal); }
textarea { resize: vertical; min-height: 110px; }
.form-note { font-size: 0.85rem; color: var(--muted); margin-top: 8px; }
.form-success {
  display: none; background: var(--signal-light); border: 1px solid rgba(246,135,31,0.4);
  border-radius: 12px; padding: 20px 22px; color: var(--insight); font-size: 0.96rem;
}
.form-success.show { display: block; }
.form-success strong { color: var(--focus); }

/* contact details list */
.contact-list { list-style: none; margin-top: 8px; }
.contact-list li { display: flex; gap: 14px; align-items: flex-start; padding: 14px 0; border-bottom: 1px solid var(--line); }
.contact-list li:last-child { border-bottom: none; }
.contact-list .ic { width: 40px; height: 40px; border-radius: 10px; background: var(--signal-light); display:flex; align-items:center; justify-content:center; font-size:1.1rem; flex-shrink:0; }
.contact-list .k { font-size: 0.78rem; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: var(--signal); display: block; margin-bottom: 2px; }
.contact-list .v { color: var(--insight); font-size: 1rem; }
.contact-list .v a { color: var(--focus); text-decoration: none; }
.contact-list .v a:hover { color: var(--signal); }

/* timeline (launch) */
.timeline { border-left: 3px solid var(--perspective); padding-left: 26px; margin-top: 10px; }
.timeline .ev { position: relative; padding-bottom: 26px; }
.timeline .ev::before { content:''; position:absolute; left:-33px; top:3px; width:13px; height:13px; border-radius:50%; background: var(--signal); border: 3px solid #fff; box-shadow: 0 0 0 2px var(--signal); }
.timeline .ev:last-child { padding-bottom: 0; }
.timeline .ev h4 { font-size: 1.02rem; color: var(--insight); margin-bottom: 4px; }
.timeline .ev p { font-size: 0.93rem; color: var(--muted); line-height: 1.65; }
.timeline .ev .when { font-size: 0.78rem; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: var(--signal); }

/* mini cta band */
.cta-band { background: var(--soft-view); text-align: center; }
.cta-box { background: #fff; border-radius: 22px; padding: 56px 44px; max-width: 720px; margin: 0 auto; box-shadow: 0 22px 60px rgba(26,32,56,0.08); }
.cta-box .section-heading { margin-bottom: 14px; }
.cta-box p { color: var(--muted); margin-bottom: 28px; font-size: 1.05rem; }

/* ── FOOTER ── */
footer.site { background: var(--insight); color: rgba(255,255,255,0.6); padding: 60px 0 28px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 44px; margin-bottom: 40px; }
.footer-brand img { height: 30px; margin-bottom: 16px; }
.footer-brand p { font-size: 0.9rem; line-height: 1.7; max-width: 290px; }
.footer-brand .footer-social { display: inline-flex; align-items: center; margin-top: 18px; color: #fff; transition: opacity 0.2s; }
.footer-brand .footer-social:hover { opacity: 0.7; }
.footer-col h4 { color: #fff; font-size: 0.8rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 14px; font-family: var(--body); }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 9px; }
.footer-col ul li a, .footer-col ul li button { color: rgba(255,255,255,0.6); text-decoration: none; font-size: 0.9rem; transition: color 0.2s; background: none; border: none; padding: 0; cursor: pointer; font-family: inherit; }
.footer-col ul li a:hover, .footer-col ul li button:hover { color: var(--signal); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 22px; display: flex; justify-content: space-between; align-items: center; gap: 12px; flex-wrap: wrap; font-size: 0.82rem; }
.footer-bottom a { color: rgba(255,255,255,0.45); text-decoration: none; }
.footer-bottom a:hover { color: var(--signal); }

/* ── RESPONSIVE ── */
@media (max-width: 920px) {
  nav.site ul { display: none; }
  nav.site ul.show {
    display: flex; flex-direction: column; position: absolute; top: 62px; left: 0; right: 0;
    background: rgba(26,32,56,0.99); padding: 18px 24px; gap: 16px; align-items: flex-start;
  }
  .mobile-toggle { display: block; }
  .split { grid-template-columns: 1fr; gap: 36px; }
  .steps { grid-template-columns: 1fr 1fr; gap: 28px; }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .section { padding: 64px 0; }
  .steps { grid-template-columns: 1fr; }
  .stats { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .form-row.two { grid-template-columns: 1fr; }
  .form-wrap { padding: 0; }
  .hero-cta { flex-direction: column; }
  .hero-cta .btn { width: 100%; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

.anxler-light { font-family: var(--anxler-font); font-weight: 300; }
.anxler { font-family: var(--anxler-font); font-weight: 400; }

/* ab tags which require more specificity since another rule overtakes */
.ab-tag.anxler { font-family: var(--anxler-font); font-weight: 400; }

.brand-dark-blue {
  color: var(--focus);
}

.symbol { font-family: 'Noto Sans Symbols 2', 'Noto Emoji', sans-serif; padding-top: 8px; }

.founder { transition: all 0.28s ease; }
.founder:hover { transform: translateY(-4px); box-shadow: 0 16px 44px rgba(26,32,56,0.10);}

.founder:hover .avatar img { filter: grayscale(0%); }

address {
  font-style: normal;
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 0;
}

.perspective { color: var(--perspective); }
/* Cookie banner */
/* Cookie consent - centered modal popup with backdrop */
body:has(#cookie-banner.show) { overflow: hidden; }  /* lock background scroll only while the modal is shown */
#cookie-banner { position: fixed; inset: 0; z-index: 9999; display: none; align-items: center; justify-content: center; padding: 20px; overflow-y: auto; background: rgba(10,13,24,0.55); }
#cookie-banner.show { display: flex; }
.cookie-banner__changed { margin: 0; padding: 10px 14px; border-radius: 8px; background: rgba(246,135,31,0.14); border: 1px solid rgba(246,135,31,0.4); color: #fff; font-size: 0.85rem; line-height: 1.5; }
.cookie-banner__inner { max-width: 420px; width: 100%; background: var(--insight); color: rgba(255,255,255,0.85); padding: 32px; border-radius: 16px; border: 1px solid rgba(255,255,255,0.12); box-shadow: 0 24px 70px rgba(0,0,0,0.45); display: flex; flex-direction: column; gap: 22px; }
.cookie-banner__text { font-size: 0.92rem; line-height: 1.65; }
.cookie-banner__text strong { display: block; font-family: var(--anxler-font); font-size: 1.2rem; color: #fff; margin-bottom: 10px; }
.cookie-banner__text a { color: var(--signal); text-decoration: none; }
.cookie-banner__text a:hover { text-decoration: underline; }
.cookie-banner__actions { display: flex; flex-direction: column; gap: 10px; }
.cookie-banner__accept { background: var(--signal); color: #fff; border: none; padding: 12px 18px; border-radius: 8px; font-size: 0.9rem; font-weight: 600; cursor: pointer; font-family: inherit; transition: opacity 0.2s; }
.cookie-banner__accept:hover { opacity: 0.88; }
.cookie-banner__reject { background: none; color: rgba(255,255,255,0.7); border: 1px solid rgba(255,255,255,0.25); padding: 12px 18px; border-radius: 8px; font-size: 0.9rem; cursor: pointer; font-family: inherit; transition: border-color 0.2s, color 0.2s; }
.cookie-banner__reject:hover { border-color: rgba(255,255,255,0.6); color: #fff; }

video {
  max-width: 100%;
  height: auto;
  margin-bottom: 1rem;
}

.demo-videos-container {
  margin-top: 4rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.demo-videos-container h2 {
  grid-column: 1 / -1;
  margin-bottom: 0;
}

.demo-video-container {
  display: flex;
  flex-direction: column;
}

.demo-video-container video {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
  margin-top: auto;
}