:root {
  --bc-ink: #1E1B2E;
  --bc-ink-soft: #4A4560;
  --bc-ink-faint: #837D9C;
  --bc-paper: #FCFBF9;
  --bc-paper-alt: #F3F0FA;
  --bc-paper-deep: #17142280;
  --bc-primary: #4B3F8C;
  --bc-primary-light: #7C6FF0;
  --bc-secondary: #0FA89C;
  --bc-accent: #FF7A50;
  --bc-accent-soft: #FFE3D6;
  --bc-border: rgba(30, 27, 46, 0.09);
  --bc-dark: #17142B;
  --bc-dark-2: #211D38;

  --bc-shadow-sm: 0 1px 2px rgba(30,27,46,0.07), 0 1px 1px rgba(30,27,46,0.05);
  --bc-shadow-md: 0 10px 26px -10px rgba(75,63,140,0.28), 0 3px 8px rgba(30,27,46,0.07);
  --bc-shadow-lg: 0 28px 54px -16px rgba(75,63,140,0.35), 0 10px 20px rgba(30,27,46,0.10);

  --bc-r-sm: 10px;
  --bc-r-md: 16px;
  --bc-r-lg: 24px;
  --bc-r-xl: 32px;
  --bc-r-pill: 999px;

  --bc-space-section: clamp(4rem, 8vw, 7.5rem);
  --bc-ease: cubic-bezier(.22,1,.36,1);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: 'Figtree', sans-serif;
  color: var(--bc-ink);
  background: var(--bc-paper);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }

a { color: inherit; text-decoration: none; }

ul { margin: 0; padding: 0; list-style: none; }

h1, h2, h3, h4 {
  font-family: 'Figtree', sans-serif;
  font-weight: 700;
  line-height: 1.2;
  margin: 0 0 0.6em;
  color: var(--bc-ink);
}

h1 { font-size: clamp(2.4rem, 4vw + 1.2rem, 4.2rem); font-weight: 800; letter-spacing: -0.02em; }
h2 { font-size: clamp(1.9rem, 2.2vw + 1rem, 2.9rem); letter-spacing: -0.01em; }
h3 { font-size: clamp(1.25rem, 1vw + 1rem, 1.55rem); }

p { margin: 0 0 1em; color: var(--bc-ink-soft); }

.bc-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.bc-eyebrow {
  display: inline-block;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--bc-primary);
  margin-bottom: 1rem;
}

.bc-section {
  padding: var(--bc-space-section) 0;
  position: relative;
  & .bc-section__head {
    max-width: 720px;
    margin: 0 auto 3rem;
    text-align: center;
    & p { font-size: 1.08rem; }
  }
}

.bc-section--alt { background: var(--bc-paper-alt); }

.bc-section--split {
  & .bc-split {
    display: grid;
    gap: 2.5rem;
    align-items: center;
    grid-template-columns: 1fr;
  }
}

.bc-section--reverse .bc-split {
  & .bc-split__media { order: -1; }
}

@media (min-width: 900px) {
  .bc-section--split .bc-split { grid-template-columns: 1fr 1fr; }
  .bc-section--reverse .bc-split .bc-split__media { order: 2; }
  .bc-section--reverse .bc-split .bc-split__text { order: 1; }
}

.bc-split__media img {
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
  border-radius: var(--bc-r-lg);
  box-shadow: var(--bc-shadow-lg);
}

.bc-checklist {
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  & li {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    color: var(--bc-ink-soft);
    & i { color: var(--bc-secondary); margin-top: 0.28em; }
  }
}


.bc-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.9rem 1.8rem;
  border-radius: var(--bc-r-pill);
  font-weight: 600;
  font-size: 0.98rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.3s var(--bc-ease), box-shadow 0.3s var(--bc-ease), background 0.3s var(--bc-ease), color 0.3s var(--bc-ease);
  min-height: 48px;
  white-space: nowrap;
}

.bc-btn--primary {
  background: var(--bc-accent);
  color: #fff;
  box-shadow: var(--bc-shadow-md);
  &:hover { transform: translateY(-3px); box-shadow: var(--bc-shadow-lg); background: #ff6a3a; }
}

.bc-btn--ghost {
  background: transparent;
  border-color: var(--bc-border);
  color: var(--bc-ink);
  &:hover { border-color: var(--bc-primary); color: var(--bc-primary); transform: translateY(-3px); }
}

.bc-btn--ghost-dark {
  border-color: rgba(255,255,255,0.4);
  color: #fff;
  &:hover { border-color: #fff; background: rgba(255,255,255,0.1); }
}

.bc-btn--outline {
  background: transparent;
  border-color: var(--bc-primary);
  color: var(--bc-primary);
  &:hover { background: var(--bc-primary); color: #fff; }
}

.bc-btn--block { width: 100%; }


.bc-aurora {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 0;
  pointer-events: none;
  border-radius: inherit;
}

.bc-aurora--subtle .bc-aurora__blob { opacity: 0.28; }

.bc-aurora__blob {
  position: absolute;
  width: 46vw;
  height: 46vw;
  max-width: 620px;
  max-height: 620px;
  border-radius: 50%;
  filter: blur(70px);
  opacity: 0.45;
  animation: bc-aurora-move 22s ease-in-out infinite;
}

.bc-aurora__blob--1 { top: -10%; left: -8%; background: var(--bc-primary-light); animation-duration: 24s; }
.bc-aurora__blob--2 { top: 10%; right: -12%; background: var(--bc-secondary); animation-duration: 28s; animation-delay: -4s; }
.bc-aurora__blob--3 { bottom: -18%; left: 15%; background: var(--bc-accent); animation-duration: 20s; animation-delay: -8s; }
.bc-aurora__blob--4 { bottom: -10%; right: 10%; background: #FF8FB1; animation-duration: 26s; animation-delay: -12s; }

@keyframes bc-aurora-move {
  0% { transform: translate(0,0) scale(1); }
  33% { transform: translate(4%, -6%) scale(1.08); }
  66% { transform: translate(-5%, 4%) scale(0.94); }
  100% { transform: translate(0,0) scale(1); }
}


.bc-header { background: var(--bc-paper); border-bottom: 1px solid var(--bc-border); }

.bc-nav {
  padding: 1.1rem 0;
  & .bc-nav__inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
  }
}

.bc-nav__logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-weight: 800;
  font-size: 1.25rem;
  color: var(--bc-ink);
  & img { border-radius: 8px; }
}

.bc-nav__toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: var(--bc-r-sm);
  border: 1px solid var(--bc-border);
  background: var(--bc-paper);
  font-size: 1.1rem;
  cursor: pointer;
  transition: background 0.3s var(--bc-ease), border-color 0.3s var(--bc-ease);
  &:hover { background: var(--bc-paper-alt); }
}

.bc-nav__menu {
  flex-basis: 100%;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s var(--bc-ease);
  width: 100%;
}

.bc-nav__menu.is-open { max-height: 480px; }

.bc-nav__links {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  padding: 1.2rem 0 0.5rem;
  & li a {
    display: block;
    padding: 0.7rem 0.2rem;
    font-weight: 500;
    color: var(--bc-ink-soft);
    border-radius: var(--bc-r-sm);
    transition: color 0.3s var(--bc-ease), background 0.3s var(--bc-ease);
    &:hover { color: var(--bc-primary); background: var(--bc-paper-alt); padding-left: 0.7rem; }
  }
  & li a[aria-current="page"] { color: var(--bc-primary); font-weight: 700; }
}

.bc-nav__cta { display: inline-flex; margin: 0.5rem 0 1.4rem; }

@media (min-width: 960px) {
  .bc-nav__toggle { display: none; }
  .bc-nav__menu {
    flex-basis: auto;
    max-height: none !important;
    overflow: visible;
    display: flex;
    align-items: center;
    gap: 2rem;
    width: auto;
  }
  .bc-nav__links {
    flex-direction: row;
    padding: 0;
    gap: 0.4rem;
    & li a:hover { padding-left: 0.2rem; }
  }
  .bc-nav__cta { margin: 0; }
}


.bc-hero {
  position: relative;
  padding: clamp(3rem, 8vw, 6rem) 0 clamp(3.5rem, 8vw, 6.5rem);
  overflow: hidden;
  & .bc-hero__inner {
    position: relative;
    z-index: 1;
    display: grid;
    gap: 3rem;
    grid-template-columns: 1fr;
    align-items: center;
  }
}

@media (min-width: 980px) {
  .bc-hero .bc-hero__inner { grid-template-columns: 1.1fr 0.9fr; }
}

.bc-hero__text {
  & .bc-hero__lead { font-size: 1.12rem; max-width: 560px; }
}

.bc-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin: 1.8rem 0 1.2rem;
}

.bc-hero__note {
  font-size: 0.92rem;
  color: var(--bc-ink-faint);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  & i { color: var(--bc-secondary); }
}

.bc-hero__visual { position: relative; }

.bc-stack {
  position: relative;
  & .bc-stack__img {
    width: 100%;
    border-radius: var(--bc-r-lg);
    box-shadow: var(--bc-shadow-lg);
    aspect-ratio: 4/3.2;
    object-fit: cover;
  }
}

.bc-stack__card {
  position: absolute;
  background: var(--bc-paper);
  border-radius: var(--bc-r-md);
  padding: 1rem 1.2rem;
  box-shadow: var(--bc-shadow-lg);
  max-width: 260px;
  border: 1px solid var(--bc-border);
  transition: transform 0.4s var(--bc-ease);
  &:hover { transform: translateY(-6px) rotate(0deg) !important; }
}

.bc-stack__card--top {
  top: -1.4rem;
  left: -1.2rem;
  transform: rotate(-4deg);
}

.bc-stack__card--bottom {
  bottom: -1.6rem;
  right: -1rem;
  transform: rotate(3deg);
  border-left: 3px solid var(--bc-secondary);
}

.bc-stack__label {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--bc-accent);
  margin: 0 0 0.3em;
}

.bc-stack__text { font-size: 0.88rem; margin: 0; color: var(--bc-ink); }


.bc-page-hero {
  position: relative;
  padding: clamp(3rem, 7vw, 5.5rem) 0 clamp(2.5rem, 5vw, 4rem);
  overflow: hidden;
  text-align: left;
  & .bc-container { position: relative; z-index: 1; max-width: 800px; }
  & .bc-page-hero__lead { font-size: 1.1rem; }
}


.bc-info-grid {
  display: grid;
  gap: 1.6rem;
  grid-template-columns: 1fr;
}

@media (min-width: 640px) { .bc-info-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1000px) { .bc-info-grid { grid-template-columns: repeat(4, 1fr); } }

.bc-info-card {
  background: var(--bc-paper);
  border: 1px solid var(--bc-border);
  border-radius: var(--bc-r-lg);
  padding: 2rem 1.7rem;
  box-shadow: var(--bc-shadow-sm);
  transition: transform 0.35s var(--bc-ease), box-shadow 0.35s var(--bc-ease), border-color 0.35s var(--bc-ease);
  &:hover {
    transform: translateY(-8px);
    box-shadow: var(--bc-shadow-md);
    border-color: rgba(75,63,140,0.25);
  }
  & h3 { margin-bottom: 0.5em; }
  & p { font-size: 0.96rem; margin: 0; }
}

.bc-info-card__icon {
  width: 54px;
  height: 54px;
  border-radius: var(--bc-r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--bc-primary-light), var(--bc-secondary));
  color: #fff;
  font-size: 1.3rem;
  margin-bottom: 1.2rem;
}


.bc-modules__list {
  counter-reset: bc-module;
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
}

.bc-module-card {
  counter-increment: bc-module;
  position: relative;
  background: var(--bc-paper);
  border: 1px solid var(--bc-border);
  border-radius: var(--bc-r-lg);
  padding: 2.2rem 2rem 2rem;
  box-shadow: var(--bc-shadow-md);
  transition: transform 0.4s var(--bc-ease), box-shadow 0.4s var(--bc-ease);
  &::before {
    content: counter(bc-module, decimal-leading-zero);
    position: absolute;
    top: 1.4rem;
    right: 1.8rem;
    font-size: 2.4rem;
    font-weight: 800;
    color: var(--bc-paper-alt);
    -webkit-text-stroke: 1.5px rgba(75,63,140,0.28);
    color: transparent;
    line-height: 1;
  }
  & .bc-module-card__eyebrow {
    display: inline-block;
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--bc-accent);
    margin-bottom: 0.6rem;
  }
  & h3 { max-width: 80%; }
}

.bc-module-card__list {
  margin-top: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  & li {
    position: relative;
    padding-left: 1.2rem;
    font-size: 0.94rem;
    color: var(--bc-ink-soft);
    &::before {
      content: '';
      position: absolute;
      left: 0;
      top: 0.6em;
      width: 6px;
      height: 6px;
      border-radius: 50%;
      background: var(--bc-secondary);
    }
  }
}

@media (min-width: 900px) {
  .bc-modules__list { display: block; }
  .bc-module-card {
    margin-top: -2.4rem;
    max-width: 88%;
  }
  .bc-module-card:first-child { margin-top: 0; }
  .bc-module-card:nth-child(even) { margin-left: auto; }
  .bc-module-card:hover {
    transform: translateY(-14px);
    box-shadow: var(--bc-shadow-lg);
    z-index: 5;
  }
}


.bc-contact-cards {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr;
}

@media (min-width: 780px) { .bc-contact-cards { grid-template-columns: repeat(3, 1fr); } }

.bc-contact-card {
  display: block;
  background: var(--bc-paper);
  border: 1px solid var(--bc-border);
  border-radius: var(--bc-r-lg);
  padding: 2.2rem 1.8rem;
  text-align: center;
  box-shadow: var(--bc-shadow-sm);
  transition: transform 0.35s var(--bc-ease), box-shadow 0.35s var(--bc-ease);
  &:hover { transform: translateY(-8px); box-shadow: var(--bc-shadow-md); }
  & h3 { margin: 0.9rem 0 0.4rem; }
  & p { color: var(--bc-ink); font-weight: 600; margin: 0 0 0.4rem; word-break: break-word; }
}

.bc-contact-card__icon {
  width: 58px;
  height: 58px;
  margin: 0 auto;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bc-paper-alt);
  color: var(--bc-primary);
  font-size: 1.4rem;
}

.bc-contact-card__meta { font-size: 0.85rem; color: var(--bc-ink-faint); font-weight: 400; }


.bc-cta {
  position: relative;
  overflow: hidden;
  background: var(--bc-dark);
  padding: clamp(3.5rem, 7vw, 6rem) 0;
  color: #fff;
  & .bc-cta__inner {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 680px;
    margin: 0 auto;
    & h2 { color: #fff; }
    & p { color: rgba(255,255,255,0.78); }
  }
}


.bc-timeline-simple {
  position: relative;
  max-width: 760px;
  margin: 0 auto;
  padding-left: 2.2rem;
  &::before {
    content: '';
    position: absolute;
    left: 0.42rem;
    top: 0.4rem;
    bottom: 0.4rem;
    width: 2px;
    background: linear-gradient(var(--bc-primary-light), var(--bc-secondary));
  }
}

.bc-timeline-simple__item {
  position: relative;
  padding-bottom: 2.2rem;
  &:last-child { padding-bottom: 0; }
}

.bc-timeline-simple__dot {
  position: absolute;
  left: -2.2rem;
  top: 0.3rem;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--bc-accent);
  box-shadow: 0 0 0 4px var(--bc-paper);
}


.bc-agenda {
  margin-top: 1.8rem;
  background: var(--bc-paper-alt);
  border-radius: var(--bc-r-lg);
  padding: 1.6rem 1.8rem;
  & h3 { margin-bottom: 0.8rem; }
  & ul { display: flex; flex-direction: column; gap: 0.55rem; }
  & li { display: flex; gap: 0.6rem; font-size: 0.95rem; color: var(--bc-ink-soft); }
  & i { color: var(--bc-secondary); margin-top: 0.25em; }
}

.bc-faq {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.bc-faq__item {
  background: var(--bc-paper);
  border: 1px solid var(--bc-border);
  border-radius: var(--bc-r-md);
  padding: 1.2rem 1.5rem;
  box-shadow: var(--bc-shadow-sm);
  & summary {
    cursor: pointer;
    font-weight: 600;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    &::-webkit-details-marker { display: none; }
    &::after {
      content: '+';
      font-size: 1.3rem;
      color: var(--bc-accent);
      transition: transform 0.3s var(--bc-ease);
    }
  }
  &[open] summary::after { transform: rotate(45deg); }
  & p { margin-top: 0.9rem; margin-bottom: 0; }
}


.bc-newsletter-hero { position: relative; overflow: hidden; padding-top: clamp(3rem, 7vw, 5.5rem); }
.bc-newsletter-form-section { padding-top: 0; }


.bc-form-card {
  max-width: 640px;
  margin: 0 auto;
  background: var(--bc-paper);
  border: 1px solid var(--bc-border);
  border-radius: var(--bc-r-xl);
  padding: clamp(2rem, 5vw, 3.2rem);
  box-shadow: var(--bc-shadow-lg);
  position: relative;
  z-index: 1;
  text-align: left;
}

.bc-form-card--wide { max-width: 720px; }

.bc-form {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
  margin-top: 1.6rem;
}

.bc-form__field {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  & label { font-weight: 600; font-size: 0.95rem; }
  & input, & textarea {
    font-family: inherit;
    font-size: 1rem;
    padding: 0.85rem 1rem;
    border-radius: var(--bc-r-sm);
    border: 1.5px solid var(--bc-border);
    background: var(--bc-paper-alt);
    color: var(--bc-ink);
    transition: border-color 0.3s var(--bc-ease), box-shadow 0.3s var(--bc-ease);
    min-height: 48px;
    &:focus {
      outline: none;
      border-color: var(--bc-primary-light);
      box-shadow: 0 0 0 4px rgba(124,111,240,0.18);
    }
  }
  & textarea { min-height: 140px; resize: vertical; }
}

.bc-form__hint { font-size: 0.82rem; color: var(--bc-ink-faint); }

.bc-form__field--checkbox { flex-direction: row; }

.bc-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  font-size: 0.92rem;
  color: var(--bc-ink-soft);
  cursor: pointer;
  & input { width: 20px; height: 20px; margin-top: 0.1rem; accent-color: var(--bc-accent); flex-shrink: 0; }
  & a { color: var(--bc-primary); text-decoration: underline; }
}

.bc-contact-section { position: relative; overflow: hidden; }

.bc-contact-extra {
  display: grid;
  gap: 2.5rem;
  grid-template-columns: 1fr;
}

@media (min-width: 900px) { .bc-contact-extra { grid-template-columns: 1.1fr 0.9fr; } }

.bc-map-frame {
  border-radius: var(--bc-r-lg);
  overflow: hidden;
  box-shadow: var(--bc-shadow-md);
  margin-bottom: 1.2rem;
}

.bc-contact-extra__img {
  border-radius: var(--bc-r-lg);
  box-shadow: var(--bc-shadow-sm);
  object-fit: cover;
  width: 100%;
  aspect-ratio: 16/9;
}

.bc-contact-extra__list { margin-top: 1rem; }
.bc-contact-extra__list li { color: var(--bc-ink-soft); display: flex; align-items: center; gap: 0.6rem; margin-bottom: 0.5rem; }
.bc-contact-extra__list i { color: var(--bc-primary); width: 18px; }


.bc-thanks {
  position: relative;
  overflow: hidden;
  text-align: center;
  padding: clamp(4rem, 10vw, 7rem) 0;
  & .bc-thanks__inner { position: relative; z-index: 1; max-width: 560px; margin: 0 auto; }
}

.bc-thanks__icon {
  width: 74px;
  height: 74px;
  border-radius: 50%;
  background: var(--bc-paper-alt);
  color: var(--bc-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin: 0 auto 1.5rem;
  box-shadow: var(--bc-shadow-sm);
}

.bc-thanks__countdown {
  font-weight: 600;
  color: var(--bc-ink);
  margin: 1.2rem 0 1.6rem;
  & span { color: var(--bc-accent); font-size: 1.2rem; }
}


.bc-legal-hero {
  padding: clamp(3rem, 7vw, 5rem) 0 2rem;
  background: var(--bc-paper-alt);
  & .bc-container { max-width: 780px; }
}

.bc-legal-hero--terms { background: #EFEAFB; }
.bc-legal-hero--cookies { background: #E9F7F5; }

.bc-legal-timeline {
  position: relative;
  max-width: 820px;
  margin: 0 auto;
  padding-left: 2.4rem;
  &::before {
    content: '';
    position: absolute;
    left: 0.3rem;
    top: 0.3rem;
    bottom: 0.3rem;
    width: 2px;
    background: linear-gradient(var(--bc-primary-light), var(--bc-accent));
  }
}

.bc-legal-timeline__item {
  position: relative;
  padding-bottom: 2.6rem;
  &:last-child { padding-bottom: 0; }
  &::before {
    content: '';
    position: absolute;
    left: -2.4rem;
    top: 0.35rem;
    width: 13px;
    height: 13px;
    border-radius: 50%;
    background: var(--bc-accent);
    box-shadow: 0 0 0 4px var(--bc-paper-alt);
  }
}

.bc-legal-timeline__date {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--bc-primary);
  margin-bottom: 0.5rem;
}

.bc-legal-timeline__content {
  background: var(--bc-paper);
  border: 1px solid var(--bc-border);
  border-radius: var(--bc-r-md);
  padding: 1.5rem 1.7rem;
  box-shadow: var(--bc-shadow-sm);
  & h2 { font-size: 1.25rem; margin-bottom: 0.5em; }
  & p { font-size: 0.96rem; margin-bottom: 0.8em; }
  & p:last-child { margin-bottom: 0; }
}

.bc-legal-timeline--long .bc-legal-timeline__item { padding-bottom: 2.8rem; }
.bc-legal-timeline--medium .bc-legal-timeline__content { padding: 1.3rem 1.5rem; }
.bc-legal-timeline--compact .bc-legal-timeline__item { padding-bottom: 1.8rem; }
.bc-legal-timeline--compact .bc-legal-timeline__content { padding: 1.1rem 1.4rem; }
.bc-legal-timeline--compact .bc-legal-timeline__content h2 { font-size: 1.1rem; }


.bc-footer {
  background: var(--bc-dark);
  color: rgba(255,255,255,0.82);
  position: relative;
}

.bc-footer__top { padding: 4rem 0 2.5rem; }

.bc-footer__grid {
  display: grid;
  gap: 2.5rem;
  grid-template-columns: 1fr;
}

@media (min-width: 720px) { .bc-footer__grid { grid-template-columns: 1.3fr 1fr 1fr 1.2fr; } }

.bc-footer__col {
  & h4 { color: #fff; font-size: 1rem; margin-bottom: 1.1rem; }
  & ul { display: flex; flex-direction: column; gap: 0.65rem; }
  & a { color: rgba(255,255,255,0.7); transition: color 0.3s var(--bc-ease); }
  & a:hover { color: #fff; }
  & p { color: rgba(255,255,255,0.65); font-size: 0.92rem; }
}

.bc-footer__brand { max-width: 320px; }

.bc-footer__logo {
  color: #fff;
  margin-bottom: 1rem;
}

.bc-footer__contact {
  & li { display: flex; align-items: center; gap: 0.6rem; color: rgba(255,255,255,0.75); font-size: 0.92rem; }
  & i { color: var(--bc-primary-light); width: 16px; }
}

.bc-footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 1.5rem 0;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.55);
}

.bc-backtotop {
  position: fixed;
  right: 1.5rem;
  bottom: 1.5rem;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: none;
  background: var(--bc-accent);
  color: #fff;
  font-size: 1.15rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--bc-shadow-lg);
  opacity: 0;
  transform: translateY(16px);
  pointer-events: none;
  transition: opacity 0.35s var(--bc-ease), transform 0.35s var(--bc-ease), background 0.3s var(--bc-ease);
  z-index: 60;
  &.is-visible { opacity: 1; transform: translateY(0); pointer-events: auto; }
  &:hover { background: #ff6a3a; transform: translateY(-4px); }
}


.bc-cookie-link {
  position: fixed;
  left: 1rem;
  bottom: 1rem;
  z-index: 70;
  font-size: 0.8rem;
  color: var(--bc-ink-soft);
  background: var(--bc-paper);
  border: 1px solid var(--bc-border);
  padding: 0.55rem 0.9rem;
  border-radius: var(--bc-r-pill);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  box-shadow: var(--bc-shadow-sm);
  transition: box-shadow 0.3s var(--bc-ease), transform 0.3s var(--bc-ease);
  &:hover { box-shadow: var(--bc-shadow-md); transform: translateY(-2px); }
  & i { color: var(--bc-accent); }
}

.bc-cookie-link.bc-pulse {
  animation: bc-cookie-pulse 1.8s ease-in-out 2;
}

@keyframes bc-cookie-pulse {
  0%, 100% { box-shadow: var(--bc-shadow-sm); }
  50% { box-shadow: 0 0 0 8px rgba(255,122,80,0.18), var(--bc-shadow-md); }
}

.bc-cookie-modal {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  &.is-open { display: flex; }
}

.bc-cookie-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(23,20,43,0.55);
  backdrop-filter: blur(3px);
}

.bc-cookie-modal__panel {
  position: relative;
  z-index: 1;
  background: var(--bc-paper);
  border-radius: var(--bc-r-lg);
  max-width: 540px;
  width: 100%;
  max-height: 86vh;
  overflow-y: auto;
  padding: 2rem 2rem 1.8rem;
  box-shadow: var(--bc-shadow-lg);
  & h2 { margin-bottom: 0.6rem; }
  & p { font-size: 0.92rem; }
}

.bc-cookie-modal__option {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.9rem 0;
  border-top: 1px solid var(--bc-border);
  & strong { display: block; margin-bottom: 0.2rem; }
  & p { font-size: 0.85rem; margin: 0; }
}

.bc-switch {
  position: relative;
  display: inline-block;
  width: 44px;
  height: 26px;
  flex-shrink: 0;
  & input { opacity: 0; width: 0; height: 0; }
  & span {
    position: absolute;
    inset: 0;
    background: #d8d3ea;
    border-radius: var(--bc-r-pill);
    transition: background 0.3s var(--bc-ease);
    cursor: pointer;
    &::before {
      content: '';
      position: absolute;
      width: 20px;
      height: 20px;
      left: 3px;
      top: 3px;
      background: #fff;
      border-radius: 50%;
      transition: transform 0.3s var(--bc-ease);
      box-shadow: var(--bc-shadow-sm);
    }
  }
  & input:checked + span { background: var(--bc-secondary); }
  & input:checked + span::before { transform: translateX(18px); }
}

.bc-switch--disabled span { opacity: 0.6; cursor: not-allowed; }

.bc-cookie-modal__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.6rem;
  & .bc-btn { flex: 1 1 auto; padding: 0.75rem 1.2rem; font-size: 0.88rem; }
}

@media (max-width: 480px) {
  .bc-cookie-modal__actions { flex-direction: column; }
}