/* BMGR.fi landing site. Self-contained, no framework. */
:root {
  --ink: #101828;
  --body: #344054;
  --muted: #667085;
  --line: #d9e2ec;
  --line-strong: #b8c7d9;
  --bg: #ffffff;
  --soft: #f4f7fb;
  --blue: #1d4ed8;
  --blue-dark: #173ea3;
  --green: #0f766e;
  --green-soft: #e6f4ef;
  --amber: #b45309;
  --amber-soft: #fff7e6;
  --max: 1180px;
  --radius: 8px;
  --shadow: 0 8px 24px rgba(16, 24, 40, 0.08);
  font-synthesis: none;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--body);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

a { color: var(--blue); text-decoration: none; }
a:hover { text-decoration: underline; }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { color: var(--ink); letter-spacing: 0; line-height: 1.12; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 14px 28px;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(10px);
}

.brand {
  display: inline-flex;
  align-items: center;
  flex: 1 1 224px;
  max-width: 224px;
  color: var(--ink);
  min-width: 0;
  overflow: hidden;
}
.brand:hover { text-decoration: none; }
.brand-logo {
  display: block;
  width: 100%;
  max-width: 224px;
  height: auto;
  max-height: 46px;
}

.header-right {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
  gap: 14px;
}
.site-nav {
  display: flex;
  align-items: center;
  gap: 18px;
}
.site-nav a {
  color: var(--body);
  font-size: 14px;
  font-weight: 700;
}
.site-nav a:hover {
  color: var(--ink);
  text-decoration: none;
}
.nav-login {
  padding: 8px 14px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  color: var(--ink) !important;
  background: #fff;
}
.nav-login:hover { border-color: var(--blue); }

.lang-toggle {
  display: inline-flex;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  overflow: hidden;
}
.lang-toggle button {
  min-width: 38px;
  border: 0;
  background: #fff;
  color: var(--muted);
  padding: 7px 9px;
  font-size: 12px;
  font-weight: 800;
  cursor: pointer;
}
.lang-toggle button.active {
  background: var(--ink);
  color: #fff;
}

.nav-burger {
  display: none;
  flex-direction: column;
  gap: 4px;
  cursor: pointer;
  background: #fff;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  padding: 9px;
}
.nav-burger span {
  display: block;
  width: 19px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.site-header.menu-open .nav-burger span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.site-header.menu-open .nav-burger span:nth-child(2) { opacity: 0; }
.site-header.menu-open .nav-burger span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

.hero {
  border-bottom: 1px solid var(--line);
  background: linear-gradient(180deg, #ffffff 0%, #f7fbff 100%);
}
.hero-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 86px 28px 64px;
}
.eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  margin-bottom: 14px;
  color: var(--green);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}
.hero h1 {
  max-width: 760px;
  margin-bottom: 18px;
  font-size: 56px;
}
.hero-copy {
  max-width: 730px;
  margin-bottom: 28px;
  color: var(--body);
  font-size: 20px;
}
.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 14px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 10px 18px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-size: 15px;
  font-weight: 800;
  cursor: pointer;
}
.btn:hover { text-decoration: none; }
.btn-primary {
  background: var(--blue);
  color: #fff;
  box-shadow: 0 8px 20px rgba(29, 78, 216, 0.22);
}
.btn-primary:hover { background: var(--blue-dark); }
.btn-secondary {
  background: #fff;
  color: var(--ink);
  border-color: var(--line-strong);
}
.btn-secondary:hover { border-color: var(--blue); color: var(--blue); }
.btn-text {
  background: transparent;
  color: var(--body);
  border-color: transparent;
  box-shadow: none;
}
.btn-wide { width: 100%; }

.hero-note {
  margin: 0;
  color: var(--green);
  font-size: 15px;
  font-weight: 800;
}

.section {
  max-width: var(--max);
  margin: 0 auto;
  padding: 70px 28px;
  scroll-margin-top: 82px;
}
.section-soft {
  max-width: none;
  background: var(--soft);
}
.section-soft > * {
  max-width: var(--max);
  margin-left: auto;
  margin-right: auto;
}
.intro-band { padding-top: 48px; padding-bottom: 48px; }
.summary-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 44px;
  align-items: start;
}
.summary-grid h2,
.section-head h2 {
  margin-bottom: 12px;
  font-size: 34px;
}
.summary-grid p,
.section-head p {
  color: var(--body);
  font-size: 17px;
}
.section-head {
  margin-bottom: 28px;
}
.section-head p { max-width: 820px; }

.trust-band {
  border-top: 1px solid #c8e1d9;
  border-bottom: 1px solid #c8e1d9;
  background: #f1f8f6;
}
.trust-band-inner {
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr) 250px;
  gap: 28px;
  align-items: center;
  max-width: var(--max);
  margin: 0 auto;
  padding: 38px 28px;
}
.trust-mark {
  display: grid;
  place-items: center;
  width: 76px;
  height: 76px;
  border: 2px solid var(--green);
  border-radius: 50%;
  color: var(--green);
  font-size: 17px;
  font-weight: 900;
}
.trust-copy .section-kicker { margin-bottom: 8px; }
.trust-copy h2 {
  max-width: 780px;
  margin-bottom: 10px;
  font-size: 28px;
}
.trust-copy p:last-child {
  max-width: 800px;
  margin-bottom: 0;
  color: var(--body);
  font-size: 15px;
}
.trust-facts {
  display: grid;
  gap: 8px;
}
.trust-facts span {
  position: relative;
  padding-left: 20px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 800;
}
.trust-facts span::before {
  position: absolute;
  left: 0;
  top: 0.45em;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--green);
  content: "";
}

.table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow);
}
.module-table {
  width: 100%;
  min-width: 860px;
  border-collapse: collapse;
  font-size: 14px;
}
.module-table th,
.module-table td {
  padding: 13px 14px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}
.module-table thead th {
  background: #f8fafc;
  color: var(--ink);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}
.module-table tbody tr:last-child td { border-bottom: 0; }
.module-name {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--ink);
  font-weight: 900;
}
.module-includes {
  max-width: 310px;
  color: var(--body);
  font-size: 13px;
}
.status-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  max-width: 100%;
  min-height: 24px;
  padding: 2px 9px;
  border-radius: 999px;
  background: var(--green-soft);
  color: var(--green);
  font-size: 12px;
  font-weight: 900;
  line-height: 1.2;
  text-align: center;
  white-space: nowrap;
}
.scope-pill {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  margin-left: 6px;
  padding: 1px 5px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  line-height: 1.3;
  white-space: nowrap;
}
.scope-pill-label {
  color: #b42318;
  font-size: 8px;
  font-weight: 900;
  line-height: 1;
}
.scope-pill-flag {
  font-size: 14px;
  line-height: 1;
}
.status-note {
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.3;
}
tr.row-unavailable .module-name,
tr.row-unavailable .module-includes {
  opacity: 0.55;
}
.price-cell {
  color: var(--ink);
  font-weight: 800;
  white-space: nowrap;
}
.contact-cell { color: var(--amber); }
.info-dot {
  appearance: none;
  display: inline-grid;
  place-items: center;
  flex: 0 0 auto;
  width: 19px;
  height: 19px;
  padding: 0;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  background: #fff;
  color: var(--muted);
  font-family: inherit;
  font-size: 12px;
  font-weight: 900;
  line-height: 1;
  cursor: help;
}
.info-dot:hover,
.info-dot:focus-visible,
.info-dot[aria-expanded="true"] {
  border-color: var(--blue);
  color: var(--blue);
  outline: none;
}
.module-info-tooltip {
  position: fixed;
  z-index: 1000;
  width: max-content;
  max-width: min(320px, calc(100vw - 20px));
  padding: 9px 11px;
  border: 1px solid var(--line-strong);
  border-radius: 6px;
  background: var(--ink);
  box-shadow: var(--shadow);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.4;
  pointer-events: none;
}
.module-info-tooltip[hidden] { display: none; }
.table-note {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 13px;
}
.table-detail-link {
  display: inline-flex;
  margin-top: 6px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 900;
}

.showcase-section {
  padding-top: 64px;
}
.compact-value-section {
  padding-top: 52px;
  padding-bottom: 52px;
}
.feature-showcase-intro {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
  gap: 34px;
  align-items: center;
  margin-bottom: 22px;
}
.feature-showcase-intro .section-head {
  margin-bottom: 0;
}
.feature-overview-art,
.value-art {
  margin: 0;
}
.feature-overview-art img {
  display: block;
  width: 100%;
  max-height: 270px;
  object-fit: contain;
}
.value-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}
.value-item {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 4px 14px rgba(16, 24, 40, 0.04);
}
.value-art img {
  display: block;
  width: 72px;
  height: 54px;
  object-fit: contain;
}
.value-item div {
  display: grid;
  gap: 6px;
}
.value-item strong {
  color: var(--ink);
  font-size: 14px;
}
.value-item span {
  color: var(--body);
  font-size: 13px;
  line-height: 1.4;
}
.section-cta {
  display: inline-flex;
  margin-top: 16px;
  color: var(--blue);
  font-size: 14px;
  font-weight: 900;
}
.showcase-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}
.showcase-card {
  display: flex;
  min-height: 286px;
  flex-direction: column;
  gap: 14px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 4px 14px rgba(16, 24, 40, 0.05);
}
.showcase-card.active {
  border-color: rgba(29, 78, 216, 0.45);
  box-shadow: 0 8px 24px rgba(29, 78, 216, 0.12);
}
.showcase-card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.showcase-card-top .status-pill {
  max-width: 100%;
  flex: 0 1 auto;
  white-space: normal;
}
.showcase-card h3 {
  flex: 1 1 12rem;
  min-width: 0;
  margin: 0;
  font-size: 18px;
  overflow-wrap: anywhere;
}
.showcase-card p {
  margin: 0;
  color: var(--body);
  font-size: 14px;
}
.showcase-feature-list {
  display: grid;
  gap: 7px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.showcase-feature-list li {
  position: relative;
  padding-left: 18px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.4;
}
.showcase-feature-list li::before {
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  content: "";
}
.showcase-link {
  margin-top: auto;
  color: var(--blue);
  font-size: 13px;
  font-weight: 900;
}

.module-page-hero {
  border-bottom: 1px solid var(--line);
  background: linear-gradient(180deg, #ffffff 0%, #f7fbff 100%);
}
.module-page-hero-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 52px 28px 46px;
}
.back-link {
  display: inline-flex;
  margin-bottom: 22px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 900;
}
.module-page-heading h1 {
  max-width: 760px;
  margin-bottom: 16px;
  font-size: 44px;
}
.module-page-heading {
  position: relative;
  isolation: isolate;
  min-height: 260px;
  overflow: hidden;
  padding: 12px 350px 12px 0;
}
.module-page-heading > :not(.module-hero-illustration) {
  position: relative;
  z-index: 1;
}
.module-hero-illustration {
  position: absolute;
  z-index: 0;
  right: -14px;
  top: 50%;
  display: block;
  width: 348px;
  max-height: 250px;
  transform: translateY(-50%);
  object-fit: contain;
  pointer-events: none;
}
.module-page-heading p {
  max-width: 820px;
  color: var(--body);
  font-size: 18px;
}
.module-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}
.module-page-layout {
  display: grid;
  grid-template-columns: 250px minmax(0, 1fr);
  gap: 28px;
  align-items: start;
}
.module-page-nav {
  display: grid;
  gap: 10px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow);
}
.module-page-nav p {
  margin: 0;
  color: var(--ink);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}
.module-page-nav div {
  display: grid;
  gap: 4px;
}
.module-page-nav a {
  padding: 8px 9px;
  border-radius: var(--radius);
  color: var(--body);
  font-size: 13px;
  font-weight: 800;
}
.module-page-nav a:hover,
.module-page-nav a.active {
  background: #f0f5ff;
  color: var(--blue);
  text-decoration: none;
}
.module-page-main {
  min-width: 0;
}
.module-sell-panel {
  margin-bottom: 16px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 4px 14px rgba(16, 24, 40, 0.05);
}
.module-sell-panel h2 {
  margin-bottom: 10px;
  font-size: 24px;
}
.module-sell-panel p {
  margin: 0;
  color: var(--body);
  font-size: 16px;
}
.module-feature-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.module-feature-list li {
  position: relative;
  padding-left: 24px;
  color: var(--body);
  font-size: 15px;
}
.module-feature-list li::before {
  position: absolute;
  left: 0;
  top: 0.5em;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--green);
  content: "";
}
.why-panel {
  background: #f8fafc;
}
.platform-points {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}
.platform-points span {
  display: inline-flex;
  padding: 5px 9px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  color: var(--ink);
  font-size: 12px;
  font-weight: 900;
}
.all-showcases {
  margin-top: 34px;
}
.section-head.compact {
  margin-bottom: 18px;
}
.section-head.compact h2 {
  font-size: 28px;
}
.compact-grid .showcase-card {
  min-height: 230px;
}

.builder-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) 360px;
  gap: 22px;
  align-items: start;
}
.builder-panel,
.cart-panel {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow);
}
.builder-panel { padding: 20px; }
.cart-panel {
  position: sticky;
  top: 86px;
  padding: 20px;
}
.field-label,
.module-picker-head span,
.cart-title,
.selected-list > span,
.launch-estimate > span {
  display: block;
  color: var(--ink);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}
.field-hint {
  margin: -12px 0 20px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.4;
}
.size-select {
  width: 100%;
  min-height: 44px;
  margin: 8px 0 20px;
  padding: 8px 12px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  background: #fff;
  color: var(--ink);
  font-size: 15px;
  font-weight: 700;
}
.module-picker-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 12px;
}
.module-picker-head small {
  color: var(--muted);
  font-size: 12px;
  text-align: right;
}
.module-picker {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}
.pick-row {
  display: grid;
  grid-template-columns: 22px minmax(0, 1fr) auto;
  gap: 10px;
  align-items: center;
  min-height: 52px;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  cursor: pointer;
}
.pick-row:hover { border-color: var(--blue); }
.pick-row input {
  width: 18px;
  height: 18px;
  margin-top: 0;
  accent-color: var(--blue);
}
.pick-row strong {
  display: block;
  color: var(--ink);
  font-size: 14px;
  line-height: 1.25;
}
.pick-row small {
  display: block;
  margin-top: 2px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.35;
}
.pick-row em {
  color: var(--ink);
  font-size: 13px;
  font-style: normal;
  font-weight: 900;
  white-space: nowrap;
}
.pick-row.included {
  background: #f8fafc;
  border-color: var(--line);
}
.pick-row.included em { color: var(--green); }
.pick-row.unavailable {
  background: #f8fafc;
  cursor: not-allowed;
  opacity: 0.66;
}
.pick-row.unavailable:hover { border-color: var(--line); }
.pick-row.unavailable input { cursor: not-allowed; }
.pick-row.unavailable em { color: var(--muted); }

.cart-title { margin-bottom: 14px; }
.cart-total,
.launch-estimate {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 14px 0;
  border-top: 1px solid var(--line);
}
.cart-total strong {
  color: var(--green);
  font-size: 30px;
}
.cart-note {
  margin: 0 0 8px;
  color: var(--muted);
  font-size: 13px;
}
.launch-estimate strong {
  color: var(--ink);
  font-size: 18px;
  text-align: right;
}
.selected-list {
  padding-top: 14px;
  border-top: 1px solid var(--line);
}
.selected-list ul {
  display: grid;
  gap: 6px;
  margin: 10px 0 0;
  padding: 0;
  list-style: none;
}
.selected-list li {
  color: var(--body);
  font-size: 13px;
}
.request-form {
  display: grid;
  gap: 10px;
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
}
.request-form label {
  display: grid;
  gap: 4px;
  color: var(--ink);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}
.request-form input,
.request-form textarea {
  width: 100%;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  background: #fff;
  color: var(--ink);
  font: inherit;
  font-size: 14px;
  font-weight: 500;
  padding: 9px 10px;
  text-transform: none;
}
.request-form textarea {
  resize: vertical;
  min-height: 76px;
}
.request-form input:focus,
.request-form textarea:focus {
  border-color: var(--blue);
  outline: 2px solid rgba(29, 78, 216, 0.16);
  outline-offset: 0;
}
.request-status {
  min-height: 20px;
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}
.request-status.success { color: var(--green); font-weight: 800; }
.request-status.error { color: #b42318; font-weight: 800; }
.site-footer {
  border-top: 1px solid var(--line);
  background: #f8fafc;
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  max-width: var(--max);
  margin: 0 auto;
  padding: 28px;
}
.footer-logo {
  display: block;
  width: auto;
  height: 42px;
}
.footer-inner p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 11px;
}
.footer-inner .hosting-line {
  color: var(--green);
  font-weight: 800;
}
.site-footer nav {
  display: flex;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
}
.site-footer nav a {
  color: var(--body);
  font-size: 11px;
  font-weight: 800;
}
.footer-link-button {
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--body);
  font: inherit;
  font-size: 11px;
  font-weight: 800;
  cursor: pointer;
}
.footer-link-button:hover {
  text-decoration: underline;
}
.copyright {
  margin: 0;
  padding: 12px 28px 20px;
  color: var(--muted);
  font-size: 10px;
  text-align: center;
}

.cookie-banner {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 200;
  display: flex;
  gap: 12px;
  width: min(560px, calc(100vw - 36px));
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 18px 48px rgba(16, 24, 40, 0.18);
}
.cookie-banner[hidden],
.cookie-settings-link[hidden],
.cookie-options[hidden] {
  display: none;
}
.cookie-icon {
  display: inline-flex;
  width: 30px;
  height: 30px;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  background: var(--green-soft);
  color: var(--green);
  font-size: 13px;
  font-weight: 900;
}
.cookie-content { min-width: 0; }
.cookie-content h2 {
  margin: 0;
  font-size: 15px;
}
.cookie-content p {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.45;
}
.cookie-options {
  display: grid;
  gap: 8px;
  margin-top: 12px;
}
.cookie-option {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}
.cookie-option strong {
  display: block;
  color: var(--ink);
  font-size: 12px;
}
.cookie-option span span {
  display: block;
  margin-top: 2px;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.4;
}
.cookie-option em {
  color: var(--muted);
  font-size: 11px;
  font-style: normal;
  font-weight: 800;
  white-space: nowrap;
}
.cookie-option input {
  width: 17px;
  height: 17px;
  margin: 2px 0 0;
  accent-color: var(--blue);
}
.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}
.cookie-actions .btn {
  min-height: 36px;
  flex: 1 1 145px;
  padding: 8px 12px;
  font-size: 12px;
}
.cookie-save { display: none; }
.cookie-options:not([hidden]) + .cookie-actions [data-cookie-action="choose"] { display: none; }
.cookie-options:not([hidden]) + .cookie-actions .cookie-save { display: inline-flex; }
@media (max-width: 520px) {
  .cookie-banner {
    right: 12px;
    bottom: 12px;
    width: calc(100vw - 24px);
    padding: 14px;
  }
  .cookie-icon { display: none; }
}

@media (max-width: 1040px) {
  .site-nav { gap: 12px; }
  .builder-layout { grid-template-columns: 1fr; }
  .cart-panel { position: static; }
  .showcase-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .value-strip { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .trust-band-inner {
    grid-template-columns: 76px minmax(0, 1fr);
  }
  .trust-mark {
    width: 64px;
    height: 64px;
    font-size: 15px;
  }
  .trust-facts {
    grid-column: 2;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .module-page-layout { grid-template-columns: 1fr; }
  .module-page-heading {
    padding-right: 250px;
  }
  .module-hero-illustration {
    right: -40px;
    width: 300px;
    opacity: 0.42;
  }
  .module-page-nav div {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 820px) {
  .site-header {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 12px;
    padding: 12px 18px;
  }
  .brand {
    width: min(224px, 100%);
    max-width: 224px;
  }
  .header-right {
    justify-self: end;
    gap: 8px;
  }
  .nav-burger { display: flex; }
  .site-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 8px 18px 18px;
    border-bottom: 1px solid var(--line);
    background: #fff;
    box-shadow: var(--shadow);
  }
  .site-header.menu-open .site-nav { display: flex; }
  .site-nav a {
    padding: 12px 4px;
    border-bottom: 1px solid var(--line);
  }
  .nav-login {
    margin-top: 8px;
    text-align: center;
  }
  .hero-inner { padding: 62px 20px 44px; }
  .hero h1 { font-size: 39px; }
  .hero-copy { font-size: 17px; }
  .module-page-hero-inner { padding: 42px 20px 36px; }
  .module-page-heading h1 { font-size: 34px; }
  .module-page-heading p { font-size: 16px; }
  .section { padding: 52px 20px; }
  .trust-band-inner {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 32px 20px;
  }
  .trust-mark {
    width: 58px;
    height: 58px;
    font-size: 14px;
  }
  .trust-copy h2 { font-size: 25px; }
  .trust-facts {
    grid-column: 1;
    grid-template-columns: 1fr;
  }
  .summary-grid,
  .feature-showcase-intro,
  .value-strip,
  .module-picker,
  .showcase-grid {
    grid-template-columns: 1fr;
  }
  .summary-grid h2,
  .section-head h2 {
    font-size: 28px;
  }
  .module-picker-head {
    display: block;
  }
  .module-picker-head small {
    display: block;
    margin-top: 4px;
    text-align: left;
  }
  .footer-inner {
    display: block;
    padding: 24px 20px;
  }
  .site-footer nav { margin-top: 18px; }
  .module-page-nav div { grid-template-columns: 1fr; }
  .feature-overview-art {
    max-width: 520px;
  }
  .module-page-heading {
    min-height: 0;
    padding-right: 0;
  }
  .module-hero-illustration {
    right: -70px;
    top: 46%;
    width: 310px;
    opacity: 0.12;
  }
}

@media (max-width: 480px) {
  .brand-logo { max-height: 40px; }
  .hero h1 { font-size: 33px; }
  .hero-actions .btn { width: 100%; }
  .cart-total strong { font-size: 25px; }
  .value-item {
    grid-template-columns: 58px minmax(0, 1fr);
  }
  .value-art img {
    width: 58px;
    height: 46px;
  }
}

@media (prefers-reduced-motion: no-preference) {
  .feature-overview-art img,
  .value-art img,
  .module-hero-illustration {
    transition: transform 180ms ease;
  }
  .feature-overview-art:hover img,
  .value-item:hover .value-art img {
    transform: translateY(-3px);
  }
  .module-hero-illustration {
    transform: translateY(-50%);
  }
}
