@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@500;600;700;800&family=Inter:wght@400;500;600&display=swap');

/* ═══ TOKENS ═══ */
:root {
  --primary:   #1B6EF3;
  --primary-d: #1558c9;
  --accent:    #E8F4FF;
  --bg:        #FFFFFF;
  --surface:   #F7FBFF;
  --surface-2: #EEF6FF;
  --text:      #111827;
  --muted:     #6B7280;
  --border:    #DBEAFE;

  --pill: 50px;
  --card: 16px;
  --shadow-sm: 0 1px 3px rgba(17,24,39,0.04), 0 1px 2px rgba(17,24,39,0.03);
  --shadow:    0 4px 16px rgba(27,110,243,0.07);
  --shadow-lg: 0 12px 32px rgba(27,110,243,0.1);

  --page: 1120px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, sans-serif;
  background: var(--bg);
  color: var(--text);
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

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

h1, h2, h3, h4 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--text);
}

:focus-visible { outline: 2px solid var(--primary); outline-offset: 3px; border-radius: 4px; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}

/* ═══ LAYOUT — FLEXBOX FIRST ═══ */
.bw-page { max-width: var(--page); margin-left: auto; margin-right: auto; padding-left: 24px; padding-right: 24px; }

.bw-row { display: flex; flex-wrap: wrap; gap: 24px; }
.bw-row > * { flex: 1 1 260px; min-width: 0; }
.bw-row--tight { gap: 16px; }
.bw-row--wide { gap: 32px; }
.bw-row--2 > * { flex-basis: 400px; }
.bw-row--3 > * { flex-basis: 300px; }
.bw-row--4 > * { flex-basis: 220px; }

.bw-stack { display: flex; flex-direction: column; }
.bw-stack--sm { gap: 12px; }
.bw-stack--md { gap: 20px; }
.bw-stack--lg { gap: 32px; }

.bw-between { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 16px; }

/* ═══ BUTTONS ═══ */
.bw-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.8rem 1.9rem;
  border-radius: var(--pill);
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: background-color 0.2s, box-shadow 0.2s, transform 0.15s, color 0.2s, border-color 0.2s;
  white-space: nowrap;
  line-height: 1.4;
}
.bw-btn:hover { transform: translateY(-1px); }
.bw-btn:active { transform: translateY(0); }

.bw-btn--primary { background: var(--primary); color: #fff; box-shadow: var(--shadow); }
.bw-btn--primary:hover { background: var(--primary-d); box-shadow: var(--shadow-lg); }

.bw-btn--white { background: #fff; color: var(--primary); }
.bw-btn--white:hover { background: var(--surface-2); }

.bw-btn--outline { background: transparent; color: var(--primary); border-color: var(--border); }
.bw-btn--outline:hover { border-color: var(--primary); background: var(--surface-2); }

.bw-btn--sm { padding: 0.55rem 1.35rem; font-size: 0.88rem; }
.bw-btn--full { width: 100%; }

.bw-textlink {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--primary);
  padding: 0.8rem 0;
  transition: gap 0.2s;
}
.bw-textlink:hover { gap: 10px; }

/* ═══ HEADER ═══ */
.bw-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(255,255,255,0.9);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--border);
}
.bw-header__bar {
  max-width: var(--page);
  margin: 0 auto;
  padding: 0 24px;
  height: 72px;
  display: flex;
  align-items: center;
  gap: 32px;
}
.bw-logo {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  font-size: 1.15rem;
  letter-spacing: -0.02em;
  color: var(--primary);
  flex-shrink: 0;
}
.bw-logo__mark {
  width: 28px;
  height: 28px;
  border-radius: 9px;
  background: var(--primary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.bw-logo__mark svg { width: 16px; height: 16px; }

.bw-header__nav { display: flex; gap: 30px; margin-left: auto; align-items: center; }
.bw-header__nav a {
  font-size: 0.93rem;
  font-weight: 500;
  color: var(--muted);
  transition: color 0.2s;
}
.bw-header__nav a:hover, .bw-header__nav a[aria-current="page"] { color: var(--primary); }

.bw-burger {
  display: none;
  margin-left: auto;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  flex-direction: column;
  gap: 5px;
}
.bw-burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--primary);
  border-radius: 2px;
  transition: transform 0.28s, opacity 0.22s;
}
.bw-burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.bw-burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.bw-burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Slide-down panel */
.bw-drawer {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.35s ease;
  background: #fff;
  border-bottom: 1px solid transparent;
}
.bw-drawer[data-open="true"] { max-height: 420px; border-bottom-color: var(--border); }
.bw-drawer__inner {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 16px 24px 24px;
  max-width: var(--page);
  margin: 0 auto;
}
.bw-drawer__inner a {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--text);
  padding: 12px 0;
  border-bottom: 1px solid var(--surface-2);
}
.bw-drawer__inner a:last-child { border-bottom: none; }
.bw-drawer__inner .bw-btn { margin-top: 12px; }

/* ═══ SECTIONS ═══ */
.bw-sec { padding: 88px 0; }
.bw-sec--sm { padding: 60px 0; }
.bw-sec--white { background: var(--bg); }
.bw-sec--soft { background: var(--surface); }
.bw-sec--tint { background: var(--surface-2); }

.bw-sechead { margin-bottom: 52px; max-width: 620px; }
.bw-sechead--center { margin-left: auto; margin-right: auto; text-align: center; }
.bw-eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 12px;
}
.bw-sectitle { font-size: clamp(1.85rem, 4vw, 2.6rem); margin-bottom: 12px; }
.bw-secsub { font-size: 1.05rem; color: var(--muted); }

/* ═══ HERO ═══ */
.bw-hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #FFFFFF 0%, #F7FBFF 45%, #EEF6FF 100%);
  padding: 100px 24px 96px;
}
/* Decorative bubbles */
.bw-bubble {
  position: absolute;
  border-radius: 50%;
  background: var(--accent);
  pointer-events: none;
  opacity: 0.75;
}
.bw-bubble--a { width: 320px; height: 320px; top: -90px; right: -60px; }
.bw-bubble--b { width: 180px; height: 180px; bottom: -50px; left: 6%; opacity: 0.5; }
.bw-bubble--c { width: 90px;  height: 90px;  top: 22%; left: 4%; opacity: 0.45; }
.bw-bubble--d { width: 130px; height: 130px; bottom: 14%; right: 12%; opacity: 0.35; }

.bw-hero__inner {
  position: relative;
  z-index: 2;
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
}
.bw-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.83rem;
  font-weight: 600;
  color: var(--primary);
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--pill);
  padding: 6px 16px;
  margin-bottom: 26px;
  box-shadow: var(--shadow-sm);
}
.bw-hero__title {
  font-size: clamp(2.4rem, 6vw, 4rem);
  line-height: 1.05;
  margin-bottom: 20px;
}
.bw-hero__title em { font-style: normal; color: var(--primary); }
.bw-hero__sub {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: var(--muted);
  max-width: 540px;
  margin: 0 auto 34px;
}
.bw-hero__ctas { display: flex; gap: 16px; justify-content: center; align-items: center; flex-wrap: wrap; }

/* ═══ TRUST STRIP ═══ */
.bw-trust {
  background: var(--primary);
  color: #fff;
  padding: 18px 24px;
}
.bw-trust__inner {
  max-width: var(--page);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px 40px;
}
.bw-trust__item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  font-weight: 600;
}
.bw-trust__item svg { width: 17px; height: 17px; flex-shrink: 0; opacity: 0.85; }

/* ═══ CARDS ═══ */
.bw-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--card);
  padding: 30px 26px;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.25s, transform 0.25s, border-color 0.25s;
  display: flex;
  flex-direction: column;
}
.bw-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); border-color: #BFDBFE; }
.bw-card__icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: var(--surface-2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 18px;
  flex-shrink: 0;
}
.bw-card__title { font-size: 1.12rem; margin-bottom: 8px; }
.bw-card__text { font-size: 0.93rem; color: var(--muted); flex: 1; }
.bw-card__foot { margin-top: 20px; }

/* ═══ PROCESS STEPS ═══ */
.bw-steps { display: flex; flex-wrap: wrap; gap: 32px; }
.bw-step { flex: 1 1 250px; display: flex; flex-direction: column; align-items: flex-start; }
.bw-step__num {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  font-size: 1.25rem;
  margin-bottom: 20px;
  box-shadow: 0 4px 14px rgba(27,110,243,0.28);
  flex-shrink: 0;
}
.bw-step__icon { font-size: 1.6rem; margin-bottom: 10px; }
.bw-step__title { font-size: 1.1rem; margin-bottom: 8px; }
.bw-step__text { font-size: 0.93rem; color: var(--muted); }

/* Steps with connecting line (home 3-step) */
.bw-steps--linked { position: relative; }
@media (min-width: 860px) {
  .bw-steps--linked::before {
    content: '';
    position: absolute;
    top: 28px;
    left: 12%;
    right: 12%;
    height: 2px;
    background: repeating-linear-gradient(90deg, var(--border) 0 8px, transparent 8px 16px);
    z-index: 0;
  }
  .bw-steps--linked .bw-step { position: relative; z-index: 1; }
  .bw-steps--linked .bw-step__num { box-shadow: 0 0 0 8px var(--surface), 0 4px 14px rgba(27,110,243,0.28); }
}

/* ═══ CHECK LIST ═══ */
.bw-checks { list-style: none; display: flex; flex-direction: column; gap: 11px; }
.bw-checks li {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  font-size: 0.94rem;
  color: var(--text);
}
.bw-checks li::before {
  content: '';
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  margin-top: 3px;
  border-radius: 50%;
  background: var(--surface-2);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%231B6EF3' stroke-width='3.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-size: 12px;
  background-repeat: no-repeat;
  background-position: center;
}

/* ═══ PRICING BLOCK ═══ */
.bw-price {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--card);
  padding: 34px 30px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
}
.bw-price--featured { border-color: var(--primary); border-width: 2px; box-shadow: var(--shadow-lg); }
.bw-price__tag {
  align-self: flex-start;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: var(--primary);
  color: #fff;
  border-radius: var(--pill);
  padding: 4px 12px;
  margin-bottom: 14px;
}
.bw-price__name { font-size: 1.3rem; margin-bottom: 6px; }
.bw-price__lede { font-size: 0.92rem; color: var(--muted); margin-bottom: 22px; }
.bw-price__figure {
  display: flex;
  align-items: baseline;
  gap: 6px;
  padding-bottom: 20px;
  margin-bottom: 20px;
  border-bottom: 1px solid var(--border);
}
.bw-price__amount {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  font-size: 2.3rem;
  color: var(--primary);
  letter-spacing: -0.03em;
  line-height: 1;
}
.bw-price__unit { font-size: 0.9rem; color: var(--muted); font-weight: 500; }
.bw-price__list { flex: 1; margin-bottom: 24px; }

/* Itemised price rows (dry cleaning) */
.bw-pricerows { list-style: none; display: flex; flex-direction: column; }
.bw-pricerows li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
  padding: 9px 0;
  border-bottom: 1px dashed var(--border);
  font-size: 0.93rem;
}
.bw-pricerows li:last-child { border-bottom: none; }
.bw-pricerows span:last-child { font-weight: 700; color: var(--primary); white-space: nowrap; }

/* ═══ CALLOUT ═══ */
.bw-callout {
  background: var(--surface-2);
  border-radius: var(--card);
  padding: 28px 32px;
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: center;
}
.bw-callout__label {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  font-size: 1rem;
  flex-shrink: 0;
}
.bw-callout__items { display: flex; flex-wrap: wrap; gap: 10px; }
.bw-turnaround {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--pill);
  padding: 7px 17px;
  font-size: 0.88rem;
  font-weight: 500;
}
.bw-turnaround strong { color: var(--primary); font-weight: 700; }

/* ═══ TESTIMONIALS ═══ */
.bw-quote {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--card);
  padding: 30px 28px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
}
.bw-quote__stars { color: #F5A623; font-size: 0.95rem; letter-spacing: 2px; margin-bottom: 14px; }
.bw-quote__text {
  font-size: 1rem;
  color: var(--text);
  line-height: 1.65;
  flex: 1;
  margin-bottom: 20px;
}
.bw-quote__who { display: flex; align-items: center; gap: 12px; }
.bw-quote__avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--surface-2);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  font-size: 0.92rem;
  flex-shrink: 0;
}
.bw-quote__name { font-weight: 600; font-size: 0.92rem; }
.bw-quote__meta { font-size: 0.84rem; color: var(--muted); }

/* ═══ COVERAGE ═══ */
.bw-zones { display: flex; flex-wrap: wrap; gap: 16px; }
.bw-zone {
  flex: 1 1 200px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--card);
  padding: 20px 22px;
}
.bw-zone__name { font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 700; font-size: 1rem; margin-bottom: 6px; }
.bw-zone__codes { font-size: 0.85rem; color: var(--muted); }

/* ═══ FAQ — native details, zero JS ═══ */
.bw-faq { display: flex; flex-direction: column; }
.bw-faq details {
  border-bottom: 1px solid var(--border);
}
.bw-faq summary {
  list-style: none;
  cursor: pointer;
  padding: 20px 40px 20px 0;
  position: relative;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: 1.03rem;
  color: var(--text);
  transition: color 0.2s;
}
.bw-faq summary::-webkit-details-marker { display: none; }
.bw-faq summary:hover { color: var(--primary); }
.bw-faq summary::after {
  content: '';
  position: absolute;
  right: 6px;
  top: 50%;
  width: 11px;
  height: 11px;
  margin-top: -7px;
  border-right: 2px solid var(--primary);
  border-bottom: 2px solid var(--primary);
  transform: rotate(45deg);
  transition: transform 0.28s;
}
.bw-faq details[open] summary::after { transform: rotate(-135deg); margin-top: -3px; }
.bw-faq__body {
  padding: 0 20px 22px 0;
  font-size: 0.95rem;
  color: var(--muted);
}

/* ═══ PILLARS (about) ═══ */
.bw-pillar {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--card);
  padding: 24px;
}
.bw-pillar__icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: var(--surface-2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}
.bw-pillar__title { font-size: 1rem; margin-bottom: 4px; }
.bw-pillar__text { font-size: 0.9rem; color: var(--muted); }

/* ═══ FORM ═══ */
.bw-form { display: flex; flex-direction: column; gap: 16px; }
.bw-field { display: flex; flex-direction: column; gap: 6px; }
.bw-field label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text);
}
.bw-field input,
.bw-field select,
.bw-field textarea {
  width: 100%;
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  color: var(--text);
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: 12px;
  padding: 0.75rem 1rem;
  transition: border-color 0.2s, box-shadow 0.2s;
  appearance: none;
}
.bw-field input::placeholder, .bw-field textarea::placeholder { color: #9CA3AF; }
.bw-field input:focus,
.bw-field select:focus,
.bw-field textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(27,110,243,0.12);
}
.bw-field textarea { resize: vertical; min-height: 118px; }
.bw-field select { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%236B7280' stroke-width='2.4' stroke-linecap='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; background-size: 15px; padding-right: 40px; }
.bw-fieldpair { display: flex; gap: 16px; flex-wrap: wrap; }
.bw-fieldpair > * { flex: 1 1 200px; }

.bw-note { padding: 14px 18px; border-radius: 12px; font-size: 0.9rem; }
.bw-note--ok { background: #ECFDF5; border: 1px solid #A7F3D0; color: #047857; }
.bw-note--err { background: #FEF2F2; border: 1px solid #FECACA; color: #B91C1C; }

/* ═══ CONTACT INFO ═══ */
.bw-contactlist { display: flex; flex-direction: column; gap: 20px; }
.bw-contactitem { display: flex; gap: 14px; align-items: flex-start; }
.bw-contactitem__icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: var(--surface-2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}
.bw-contactitem__label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 2px;
}
.bw-contactitem__value { font-size: 0.96rem; color: var(--text); }
.bw-contactitem__value a { color: var(--primary); font-weight: 500; }

.bw-map { border-radius: var(--card); overflow: hidden; border: 1px solid var(--border); }
.bw-map iframe { display: block; }

/* ═══ CTA BAND ═══ */
.bw-band {
  background: var(--primary);
  color: #fff;
  padding: 76px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.bw-band .bw-bubble { background: rgba(255,255,255,0.08); }
.bw-band__inner { position: relative; z-index: 2; max-width: 620px; margin: 0 auto; }
.bw-band h2 { color: #fff; font-size: clamp(1.8rem, 4vw, 2.5rem); margin-bottom: 12px; }
.bw-band p { color: rgba(255,255,255,0.85); font-size: 1.05rem; margin-bottom: 30px; }

/* ═══ FOOTER ═══ */
.bw-footer { background: var(--primary); color: #fff; padding: 68px 24px 30px; }
.bw-footer__inner { max-width: var(--page); margin: 0 auto; }
.bw-footer__top { display: flex; flex-wrap: wrap; gap: 44px; padding-bottom: 40px; }
.bw-footer__brand { flex: 1 1 280px; }
.bw-footer__brand .bw-logo { color: #fff; }
.bw-footer__brand .bw-logo__mark { background: rgba(255,255,255,0.18); }
.bw-footer__tag { font-size: 0.92rem; color: rgba(255,255,255,0.78); margin-top: 14px; max-width: 260px; }
.bw-footer__col { flex: 0 1 170px; }
.bw-footer__col h4 {
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  margin-bottom: 14px;
}
.bw-footer__col ul { list-style: none; display: flex; flex-direction: column; gap: 9px; }
.bw-footer__col a, .bw-footer__col li { font-size: 0.91rem; color: rgba(255,255,255,0.85); transition: color 0.2s; }
.bw-footer__col a:hover { color: #fff; }
.bw-footer__disclaimer {
  border-top: 1px solid rgba(255,255,255,0.18);
  padding-top: 26px;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.65;
}
.bw-footer__base {
  border-top: 1px solid rgba(255,255,255,0.18);
  margin-top: 26px;
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.83rem;
  color: rgba(255,255,255,0.7);
}

/* ═══ COOKIE BAR ═══ */
.bw-cookie {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 90;
  background: #fff;
  border-top: 1px solid var(--border);
  box-shadow: 0 -4px 24px rgba(17,24,39,0.07);
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}
.bw-cookie p { font-size: 0.88rem; color: var(--muted); max-width: 560px; }
.bw-cookie a { color: var(--primary); font-weight: 500; text-decoration: underline; }
.bw-cookie[hidden] { display: none; }

/* ═══ PROSE (legal pages) ═══ */
.bw-prose { max-width: 740px; margin: 0 auto; padding: 76px 24px; }
.bw-prose h1 { font-size: clamp(1.9rem, 4vw, 2.4rem); margin-bottom: 6px; }
.bw-prose__stamp { font-size: 0.86rem; color: var(--muted); margin-bottom: 36px; }
.bw-prose h2 { font-size: 1.18rem; margin: 34px 0 12px; }
.bw-prose p, .bw-prose li { font-size: 0.96rem; color: #374151; margin-bottom: 14px; line-height: 1.8; }
.bw-prose ul { padding-left: 22px; }
.bw-prose a { color: var(--primary); text-decoration: underline; }
.bw-prose strong { color: var(--text); font-weight: 600; }

/* ═══ 404 ═══ */
.bw-404 {
  min-height: 66vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 24px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #FFFFFF, #F7FBFF 60%, #EEF6FF);
}
.bw-404__inner { position: relative; z-index: 2; max-width: 480px; }
.bw-404__code {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  font-size: clamp(5rem, 16vw, 9rem);
  color: var(--primary);
  opacity: 0.12;
  line-height: 1;
  letter-spacing: -0.04em;
}
.bw-404__title { font-size: clamp(1.4rem, 3.5vw, 2rem); margin: -1.2rem 0 14px; }
.bw-404__text { color: var(--muted); margin-bottom: 30px; }
.bw-404__acts { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ═══ ABOUT SPLIT ═══ */
.bw-split { display: flex; flex-wrap: wrap; gap: 56px; align-items: flex-start; }
.bw-split__main { flex: 2 1 420px; }
.bw-split__side { flex: 1 1 280px; }
.bw-split__main p { font-size: 1.02rem; color: #374151; margin-bottom: 18px; }
.bw-sidecard {
  background: var(--surface-2);
  border-radius: var(--card);
  padding: 28px;
}
.bw-sidecard h3 { font-size: 1.05rem; margin-bottom: 14px; }

/* ═══ RESPONSIVE ═══ */
@media (max-width: 880px) {
  .bw-header__nav { display: none; }
  .bw-header__bar > .bw-btn { display: none; }
  .bw-burger { display: flex; }
  .bw-sec { padding: 62px 0; }
  .bw-hero { padding: 72px 24px 68px; }
  .bw-footer__top { gap: 32px; }
  .bw-footer__col { flex: 1 1 140px; }
}
@media (max-width: 560px) {
  .bw-hero__ctas { flex-direction: column; align-items: stretch; }
  .bw-hero__ctas .bw-btn { width: 100%; }
  .bw-callout { flex-direction: column; align-items: flex-start; gap: 14px; }
  .bw-footer__base { flex-direction: column; }
}
