/*
 * Direction artistique Glacier du site vitrine SAWL.
 * Cette feuille étend la palette de la page d'accueil à toutes les pages
 * publiques et aux tunnels. Le logo et ses couleurs restent inchangés.
 */

:root {
  --brand-deep: #0f3a28;
  --brand-primary: #1b5c40;
  --brand-mid: #2e8c5c;
  --brand-pale: #d4eee2;
  --accent: #b5451b;
  --accent-mid: #c95a2e;
  --accent-light: #e1845f;

  --glacier: #f2f7f8;
  --glacier-strong: #eaf2f4;
  --mist-blue: #dceaf0;
  --mist-green: #e5f0ec;
  --marine: #0d1e25;
  --marine-soft: #17333d;

  --bg: var(--glacier);
  --bg-warm: var(--glacier-strong);
  --bg-sage: var(--mist-green);
  --surface: #ffffff;
  --ink: var(--marine);
  --ink-soft: #40545c;
  --ink-muted: #71868d;
  --line: #d5e1e4;
  --line-strong: #b9cdd2;

  --shadow-sm: 0 4px 18px rgba(13, 30, 37, .06);
  --shadow-md: 0 12px 34px rgba(13, 30, 37, .09);
  --shadow-lg: 0 22px 56px rgba(13, 30, 37, .12);
  --shadow-xl: 0 32px 80px rgba(13, 30, 37, .15);
}

body,
.page-main,
.tunnel-main {
  background: var(--glacier);
}

.site-header {
  background: rgba(242, 247, 248, .94);
  border-bottom-color: rgba(13, 30, 37, .08);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
}

.site-header.scrolled {
  box-shadow: 0 8px 28px rgba(13, 30, 37, .08);
}

.hero {
  background:
    radial-gradient(circle at 78% 18%, rgba(220, 234, 240, .95), transparent 34%),
    radial-gradient(circle at 18% 82%, rgba(229, 240, 236, .88), transparent 30%),
    var(--glacier);
}

.hero::before {
  background:
    linear-gradient(rgba(13, 30, 37, .035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(13, 30, 37, .035) 1px, transparent 1px);
  background-size: 56px 56px;
  -webkit-mask-image: linear-gradient(to bottom, rgba(0, 0, 0, .75), transparent 88%);
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, .75), transparent 88%);
}

.hero-badge {
  background: rgba(255, 255, 255, .84);
  border: 1px solid rgba(27, 92, 64, .14);
  box-shadow: 0 10px 28px rgba(13, 30, 37, .06);
}

.btn-outline {
  background: rgba(255, 255, 255, .9);
  border-color: var(--line);
}

.btn-outline:hover {
  background: var(--mist-blue);
  border-color: #c5d9df;
}

.chat-wrap {
  filter:
    drop-shadow(0 32px 60px rgba(13, 30, 37, .16))
    drop-shadow(0 8px 22px rgba(13, 30, 37, .07));
}

.chat-mockup {
  border-color: rgba(185, 205, 210, .8);
}

.chat-header {
  background: linear-gradient(180deg, #f5fafb 0, #ffffff 100%);
  border-bottom-color: var(--line);
}

.chat-body {
  background: linear-gradient(180deg, #ffffff 0, #f3f8f9 100%);
}

.msg-bot,
.msg-typing {
  background: var(--glacier-strong);
  border-color: var(--line);
  color: var(--marine);
}

.msg-user {
  background: #fff8f5;
  border-color: #ecd4c9;
}

.chat-input-fake {
  border-color: #c9d9dd;
  background: #ffffff;
}

.home-clients {
  position: relative;
  padding: 84px 0 92px;
  background: var(--surface);
}

.home-clients-header {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, .8fr);
  gap: 48px;
  align-items: end;
  margin-bottom: 38px;
}

.home-clients-eyebrow,
.home-client-foundation-kicker {
  margin: 0 0 10px;
  color: var(--brand-primary);
  font-size: .76rem;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.home-clients-header h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2.75rem, 5vw, 5rem);
  font-weight: 500;
  line-height: .94;
  letter-spacing: -.045em;
}

.home-clients-header h2 em {
  color: var(--brand-primary);
  font-weight: 500;
}

.home-clients-header > p {
  max-width: 500px;
  margin: 0;
  color: var(--ink-soft);
  font-size: 1.02rem;
  line-height: 1.65;
}

.home-client-card {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 34px;
  background:
    radial-gradient(circle at 88% 12%, rgba(46, 140, 92, .2), transparent 34%),
    radial-gradient(circle at 12% 88%, rgba(181, 69, 27, .16), transparent 30%),
    var(--marine);
  color: #ffffff;
  box-shadow: 0 28px 58px rgba(13, 30, 37, .18);
}

.home-client-card-top {
  display: flex;
  justify-content: space-between;
  padding: 20px 30px;
  border-bottom: 1px solid rgba(255, 255, 255, .1);
  color: rgba(255, 255, 255, .56);
  font-size: .7rem;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.home-client-main {
  display: grid;
  grid-template-columns: minmax(230px, .78fr) minmax(0, 1.22fr);
  gap: 60px;
  align-items: center;
  padding: 54px 56px 48px;
}

.home-client-brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.home-client-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: min(100%, 310px);
  min-height: 150px;
  padding: 24px 28px;
  border: 1px solid rgba(255, 255, 255, .72);
  border-radius: 22px;
  background: rgba(255, 255, 255, .96);
  box-shadow: 0 12px 28px rgba(0, 0, 0, .12);
}

.home-client-logo img {
  width: 240px;
  max-width: 100%;
  height: auto;
}

.home-client-status {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin: 20px 0 0;
  color: rgba(255, 255, 255, .7);
  font-size: .78rem;
  font-weight: 800;
}

.home-client-status span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #71c999;
  box-shadow: 0 0 0 5px rgba(113, 201, 153, .13);
}

.home-client-kicker {
  margin: 0 0 12px;
  color: #f0a183;
  font-size: .76rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.home-client-story h3 {
  max-width: 18ch;
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 3.8vw, 3.75rem);
  font-weight: 500;
  line-height: .98;
  letter-spacing: -.035em;
}

.home-client-story > p:last-of-type {
  max-width: 650px;
  margin: 22px 0 20px;
  color: rgba(255, 255, 255, .72);
  font-size: .98rem;
  line-height: 1.65;
}

.home-client-story ul {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.home-client-story li {
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, .055);
  color: rgba(255, 255, 255, .82);
  font-size: .74rem;
  font-weight: 700;
}

.home-client-metrics {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid rgba(255, 255, 255, .1);
}

.home-client-metric {
  min-height: 176px;
  padding: 28px 30px;
  border-right: 1px solid rgba(255, 255, 255, .1);
}

.home-client-metric:last-child {
  border-right: 0;
}

.home-client-metric strong {
  display: block;
  margin-bottom: 10px;
  color: #ffffff;
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 3.2vw, 3.35rem);
  font-weight: 500;
  line-height: 1;
  letter-spacing: -.04em;
}

.home-client-metric span {
  display: block;
  max-width: 22ch;
  color: rgba(255, 255, 255, .68);
  font-size: .78rem;
  font-weight: 700;
  line-height: 1.45;
}

.home-client-metric.is-highlight strong {
  color: #f0a183;
}

.home-client-metric.is-worded strong {
  font-size: clamp(1.8rem, 2.6vw, 2.7rem);
  line-height: 1.05;
}

.home-client-foundation {
  display: grid;
  grid-template-columns: minmax(220px, .72fr) minmax(0, 1.1fr) auto;
  gap: 42px;
  align-items: center;
  margin-top: 40px;
  padding: 36px 4px 0;
  border-top: 1px solid var(--line);
}

.home-client-foundation h3 {
  max-width: 20ch;
  margin: 0;
  color: var(--marine);
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 600;
  line-height: 1.05;
}

.home-client-foundation ul {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.home-client-foundation li {
  position: relative;
  padding: 4px 18px 4px 20px;
  border-left: 1px solid var(--line);
  color: var(--ink-soft);
  font-size: .75rem;
  font-weight: 750;
  line-height: 1.4;
}

.home-client-foundation li::before {
  content: "";
  position: absolute;
  top: .82em;
  left: -4px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--brand-mid);
  box-shadow: 0 0 0 5px var(--surface);
}

.home-client-foundation a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 9px 0;
  border-bottom: 1px solid rgba(181, 69, 27, .35);
  color: var(--accent);
  font-size: .9rem;
  font-weight: 800;
  text-align: center;
  transition: color .2s ease, border-color .2s ease;
}

.home-client-foundation a span {
  transition: transform .2s ease;
}

.home-client-foundation a:hover {
  border-color: var(--accent-mid);
  color: var(--accent-mid);
}

.home-client-foundation a:hover span {
  transform: translateX(4px);
}

.section-why,
.section-excellence,
.section-cta-wrapper,
.pillar-answer-box-section {
  background: var(--glacier);
}

.section-why {
  padding-top: 92px;
  padding-bottom: 96px;
}

.feature-icon-bg.green {
  background: #dcece6;
}

.feature-icon-bg.rose {
  background: #f6e2da;
}

.feature-icon-bg.teal {
  background: var(--mist-blue);
}

.diagram-core,
.diagram-client {
  border-color: var(--line);
  box-shadow: 0 22px 48px rgba(13, 30, 37, .11);
}

.section-how {
  background:
    radial-gradient(circle at 18% 10%, rgba(46, 140, 92, .14), transparent 34%),
    radial-gradient(circle at 84% 92%, rgba(181, 69, 27, .12), transparent 30%),
    var(--marine);
}

.how-step-num.outline {
  border-color: rgba(220, 234, 240, .22);
  background: rgba(220, 234, 240, .07);
}

.section-how {
  padding-top: 94px;
  padding-bottom: 92px;
}

.section-excellence {
  padding-top: 90px;
  padding-bottom: 92px;
}

.excellence-title {
  margin-bottom: 38px;
}

.exc-card {
  background: #ffffff;
  border: 1px solid rgba(185, 205, 210, .62);
  box-shadow: 0 14px 34px rgba(13, 30, 37, .065);
}

.exc-card.multi {
  border-color: transparent;
  background:
    radial-gradient(circle at 88% 12%, rgba(46, 140, 92, .18), transparent 36%),
    var(--marine);
}

.exc-card.control {
  border-color: transparent;
}

.exc-card.analytics {
  background: var(--mist-blue);
}

.section-cta-wrapper {
  padding-top: 74px;
}

.seo-related-resources {
  padding-top: 58px;
  padding-bottom: 66px;
  background: var(--mist-blue);
  border-color: var(--line);
}

.seo-related-list {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.seo-related-card {
  border: 1px solid rgba(185, 205, 210, .7);
  box-shadow: 0 20px 48px rgba(13, 30, 37, .075);
}

.section-cta {
  background:
    radial-gradient(circle at 12% 14%, rgba(46, 140, 92, .18), transparent 30%),
    radial-gradient(circle at 88% 86%, rgba(181, 69, 27, .16), transparent 28%),
    var(--marine);
  box-shadow: 0 28px 64px rgba(13, 30, 37, .2);
}

.site-footer {
  background: #07171d;
}

.pillar-answer-box-body a {
  color: var(--brand-primary);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.footer-tagline a,
.footer-bottom a {
  color: rgba(255, 255, 255, .78);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.pillar-answer-box-body a:hover {
  color: var(--brand-deep);
}

.footer-tagline a:hover,
.footer-bottom a:hover {
  color: #ffffff;
}

.consent-banner {
  background: rgba(242, 247, 248, .94);
}

@media (max-width: 860px) {
  .main-nav.open {
    background: rgba(242, 247, 248, .98);
    border-bottom-color: var(--line);
    box-shadow: 0 18px 38px rgba(13, 30, 37, .1);
  }

  .home-clients {
    padding-top: 68px;
    padding-bottom: 76px;
  }

  .home-clients-header,
  .home-client-main,
  .home-client-foundation {
    grid-template-columns: 1fr;
  }

  .home-clients-header {
    gap: 22px;
    margin-bottom: 30px;
  }

  .home-client-main {
    gap: 34px;
    padding: 42px 36px;
  }

  .home-client-metrics {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .home-client-metric:nth-child(2) {
    border-right: 0;
  }

  .home-client-metric:nth-child(-n + 2) {
    border-bottom: 1px solid rgba(255, 255, 255, .1);
  }

  .home-client-foundation {
    gap: 24px;
  }

  .home-client-foundation ul {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .home-client-foundation a {
    width: fit-content;
  }

  .seo-related-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 600px) {
  .hero {
    padding-top: 58px;
    padding-bottom: 76px;
  }

  .hero h1 {
    font-size: clamp(3rem, 13vw, 4rem);
  }

  .hero-trust {
    margin-bottom: 28px;
  }

  .home-clients {
    padding-top: 58px;
    padding-bottom: 64px;
  }

  .home-client-card {
    border-radius: 28px;
  }

  .home-clients-header h2 {
    font-size: 3rem;
  }

  .home-client-card-top {
    padding: 17px 22px;
  }

  .home-client-main {
    gap: 30px;
    padding: 32px 22px 36px;
  }

  .home-client-logo {
    min-height: 124px;
    padding: 20px 24px;
  }

  .home-client-logo img {
    width: 210px;
  }

  .home-client-story h3 {
    font-size: 2.35rem;
  }

  .home-client-story ul {
    align-items: flex-start;
    flex-direction: column;
  }

  .home-client-metrics {
    grid-template-columns: 1fr;
  }

  .home-client-metric {
    min-height: 0;
    padding: 25px 22px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, .1);
  }

  .home-client-metric:last-child {
    border-bottom: 0;
  }

  .home-client-metric span {
    max-width: 28ch;
  }

  .home-client-foundation {
    margin-top: 32px;
    padding: 30px 0 0;
  }

  .home-client-foundation ul {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .home-client-foundation a {
    width: fit-content;
    justify-content: flex-start;
  }

  .section-why,
  .section-how,
  .section-excellence {
    padding-top: 72px;
    padding-bottom: 74px;
  }

  .why-grid {
    gap: 34px;
  }

  .how-subtitle {
    margin-bottom: 48px;
  }

  .section-cta-wrapper {
    padding-top: 54px;
    padding-bottom: 66px;
  }

  .seo-related-list {
    grid-template-columns: 1fr;
  }
}

/* Pages internes */

.page-hero-shell,
.demo-page-shell,
.tunnel-shell,
.signup-section,
main > section:first-child:not(.hero):not(.section-how):not(.section-shell) {
  background:
    radial-gradient(circle at 82% 10%, rgba(220, 234, 240, .9), transparent 34%),
    radial-gradient(circle at 12% 88%, rgba(229, 240, 236, .72), transparent 30%),
    var(--glacier);
}

.section-shell.cream,
.section-shell.bg-cream {
  background: var(--glacier-strong);
}

.section-shell.sage,
.bg-sage {
  background: var(--mist-green);
}

.section-shell.surface,
.bg-white {
  background: var(--surface);
}

.section-shell.deep {
  background:
    radial-gradient(circle at 14% 18%, rgba(46, 140, 92, .18), transparent 30%),
    radial-gradient(circle at 88% 80%, rgba(181, 69, 27, .16), transparent 28%),
    var(--marine);
}

.page-title,
.section-heading h1,
.section-heading h2,
.demo-title,
.legal-content h1,
.auth-card h1 {
  color: var(--marine);
}

.page-title em,
.section-heading em,
.sawl-carousel-header em,
.sawl-still-text em {
  color: var(--brand-primary);
}

.tech-card,
.feature-card,
.surface-panel,
.process-card,
.pricing-card-v5,
.faq-item-v5,
.security-card,
.legal-box,
.legal-toc,
.auth-card,
.auth-aside,
.tunnel-panel,
.signup-sidebar,
.tunnel-side-card,
.confirm-primary,
.confirm-side-panel,
.form-card-v5,
.sidebar-card-v5,
.hero-paths-card,
.sawl-browser-frame,
.sync-stage-card,
.industry-card {
  border-color: rgba(185, 205, 210, .72);
  background: rgba(255, 255, 255, .94);
  box-shadow: var(--shadow-sm);
}

.tech-card:hover,
.feature-card:hover,
.pricing-card-v5:hover,
.hero-path-option:hover,
.seo-related-card:hover {
  border-color: var(--line-strong);
  box-shadow: var(--shadow-md);
}

.pricing-card-v5.featured {
  border-color: rgba(27, 92, 64, .5);
  box-shadow: 0 22px 52px rgba(13, 30, 37, .14);
}

.pricing-badge-v5,
.tag,
.stat-pill,
.proof-chip {
  border-color: rgba(27, 92, 64, .16);
  background: var(--mist-green);
  color: var(--brand-deep);
}

.pricing-table-wrap,
.faq-tabs,
.security-infra-grid {
  border-color: var(--line);
  background: rgba(255, 255, 255, .82);
  box-shadow: var(--shadow-sm);
}

.faq-tab.active {
  background: var(--marine);
  color: #ffffff;
}

.form-input,
.form-textarea,
.field input,
.field textarea,
.field select {
  border-color: var(--line-strong);
  background: #ffffff;
  color: var(--marine);
}

.form-input:focus,
.form-textarea:focus,
.field input:focus,
.field textarea:focus,
.field select:focus {
  border-color: var(--brand-mid);
  box-shadow: 0 0 0 4px rgba(46, 140, 92, .12);
}

.btn-demo,
.btn-primary,
.header-cta,
.cta-primary {
  background: var(--brand-primary);
  box-shadow: 0 9px 24px rgba(27, 92, 64, .18);
}

.btn-demo:hover,
.btn-primary:hover,
.header-cta:hover,
.cta-primary:hover {
  background: var(--brand-deep);
  box-shadow: 0 12px 30px rgba(13, 58, 40, .24);
}

.cta-banner,
.dark-panel,
.product-hero-console,
.satellite-cta-block {
  background:
    radial-gradient(circle at 88% 12%, rgba(46, 140, 92, .18), transparent 34%),
    radial-gradient(circle at 12% 88%, rgba(181, 69, 27, .14), transparent 30%),
    var(--marine);
  box-shadow: var(--shadow-lg);
}

.pillar-answer-box,
.satellite-answer-box {
  border-color: rgba(27, 92, 64, .22);
  background: var(--mist-green);
}

.legal-content,
.satellite-article {
  color: var(--marine);
}

.satellite-wrap {
  padding-top: 46px;
}

.satellite-article {
  max-width: 820px;
}

.satellite-h1 {
  font-size: clamp(2.4rem, 5vw, 4.25rem);
  letter-spacing: -.035em;
}

.satellite-chapo {
  font-size: clamp(1.08rem, 2vw, 1.28rem);
}

.satellite-answer-box,
.satellite-key-points,
.satellite-internal-links {
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, .86);
  box-shadow: var(--shadow-sm);
}

.satellite-answer-box {
  border-left: 4px solid var(--brand-primary);
}

.satellite-faq details {
  border-color: var(--line);
}

.satellite-cta-block {
  border-radius: 24px;
}

.satellite-cta-block .cta-btn {
  border-radius: 999px;
  color: var(--brand-deep);
}

.satellite-cta-block .cta-btn-secondary {
  border-radius: 999px;
}

.demo-intro-centered {
  margin-bottom: 28px;
}

.demo-lede + .demo-lede {
  margin-top: 12px;
}

.demo-split-grid-v2 {
  align-items: start;
}

.demo-layout,
.demo-layout > *,
.demo-layout form,
.demo-layout .form-grid,
.demo-layout .form-row,
.demo-layout .form-group {
  min-width: 0;
  max-width: 100%;
}

.form-card-v5 {
  scroll-margin-top: 100px;
}

.consent-banner {
  border-color: var(--line);
  box-shadow: 0 -16px 42px rgba(13, 30, 37, .1);
}

@media (max-width: 860px) {
  body {
    overflow-x: hidden;
  }

  .page-hero-grid,
  .demo-split-grid-v2,
  .demo-layout,
  .auth-grid,
  .tunnel-grid,
  .confirm-layout,
  .security-grid,
  .sync-section-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .pricing-grid-v5 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .pricing-table-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .pricing-table-v5 {
    min-width: 760px;
  }

  .auth-aside,
  .sidebar-card-v5 {
    position: static;
  }
}

@media (max-width: 600px) {
  .header-inner {
    padding-inline: 18px;
  }

  .page-hero-shell,
  .demo-page-shell,
  .tunnel-shell,
  .signup-section,
  main > section:first-child:not(.hero):not(.section-how):not(.section-shell) {
    padding-top: 36px !important;
    padding-bottom: 58px !important;
  }

  .page-title,
  .demo-title,
  .demo-layout h1,
  .satellite-h1,
  .legal-content h1,
  .auth-card h1 {
    overflow-wrap: anywhere;
  }

  .demo-layout h1 {
    max-width: 100%;
    font-size: clamp(2.55rem, 12vw, 3.2rem);
    line-height: .98;
  }

  .demo-layout .form-input,
  .demo-layout .form-textarea,
  .demo-layout .form-select {
    width: 100%;
    min-width: 0;
  }

  .pricing-grid-v5,
  .form-row,
  .field-grid,
  .security-infra-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .cta-banner,
  .dark-panel,
  .form-card-v5,
  .sidebar-card-v5,
  .auth-card,
  .auth-aside,
  .tunnel-panel,
  .signup-sidebar,
  .tunnel-side-card,
  .confirm-primary,
  .confirm-side-panel,
  .security-card {
    padding: 28px 22px;
    border-radius: 24px;
  }

  .page-actions,
  .cta-actions,
  .confirm-actions,
  .auth-action-row {
    align-items: stretch;
    flex-direction: column;
  }

  .page-actions a,
  .cta-actions a,
  .confirm-actions a,
  .auth-action-row a {
    width: 100%;
    justify-content: center;
    text-align: center;
  }

  .faq-tabs {
    justify-content: flex-start;
    overflow-x: auto;
    flex-wrap: nowrap;
  }

  .faq-tab {
    flex: 0 0 auto;
  }

  .footer-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 22px;
  }

  .consent-banner__inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    align-items: stretch;
    gap: 10px;
  }

  .consent-banner__actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: 100%;
  }

  .consent-btn {
    width: 100%;
  }

  .satellite-article {
    padding: 24px 18px 64px;
  }

  .satellite-answer-box,
  .satellite-key-points,
  .satellite-internal-links,
  .satellite-cta-block {
    padding: 24px 20px;
  }

  .satellite-cta-block .cta-btn,
  .satellite-cta-block .cta-btn-secondary {
    display: block;
    margin: 10px 0 0;
  }
}
