/* ───────── tokens ───────── */
:root {
  /* brand palette */
  --green: #1d302c;
  --green-deep: #14211f;
  --green-soft: #2a4540;
  --orange: #e7811d;
  --orange-deep: #c66a13;
  --orange-soft: #f6a657;
  --gray: #a7a9ac;
  --gray-light: #e6e7e8;
  --gray-soft: #f3f4f4;
  --white: #ffffff;
  --ink: #1d302c;
  --ink-muted: #506864;

  /* themable accents (default = umbrella) */
  --accent: var(--orange);
  --accent-deep: var(--orange-deep);
  --accent-soft: var(--orange-soft);
  --surface: var(--green);
  --surface-deep: var(--green-deep);
  --on-surface: var(--white);

  --radius: 14px;
  --radius-lg: 22px;
  --radius-pill: 999px;
  --shadow-sm: 0 1px 2px rgba(20, 33, 31, .06), 0 4px 14px rgba(20, 33, 31, .06);
  --shadow-md: 0 6px 22px rgba(20, 33, 31, .10), 0 2px 6px rgba(20, 33, 31, .06);
  --shadow-poster: 0 30px 80px -20px rgba(20, 33, 31, .55), 0 12px 32px rgba(20, 33, 31, .25);

  --container: 1200px;
  --gutter: clamp(20px, 4vw, 40px);

  --font-display: "Poppins", system-ui, sans-serif;
  --font-body: "Open Sans", system-ui, sans-serif;
}

/* ───── per-brand themes ───── */
body[data-theme="bocamp"] {
  --accent: #6cb33f;          /* bo-camp green */
  --accent-deep: #57932f;
  --accent-soft: #a4d27c;
  --surface: #ffffff;
  --surface-deep: #f3f7ec;
  --on-surface: #1d302c;
}
body[data-theme="crespo"] {
  --accent: #c1272d;          /* crespo red */
  --accent-deep: #9b1f24;
  --accent-soft: #e26a6f;
  --surface: #1d302c;
  --surface-deep: #14211f;
  --on-surface: #ffffff;
}
body[data-theme="gimex"] {
  --accent: #19c3c8;          /* gimex teal */
  --accent-deep: #14a3a8;
  --accent-soft: #74dde0;
  --surface: #15355c;          /* navy */
  --surface-deep: #0e2643;
  --on-surface: #ffffff;
}

/* ───────── reset ───────── */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.55;
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; }
button { font: inherit; cursor: pointer; }

/* ───────── layout ───────── */
.wrap {
  max-width: var(--container);
  margin: 0 auto;
  padding-inline: var(--gutter);
  width: 100%;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: -.01em;
  line-height: 1.08;
  color: var(--ink);
  margin: 0;
}

.kicker {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--accent-deep);
  background: color-mix(in oklab, var(--accent) 14%, transparent);
  padding: 6px 12px;
  border-radius: var(--radius-pill);
  margin-bottom: 16px;
}

.section-head { max-width: 720px; margin: 0 0 36px; }
.section-head h2 { font-size: clamp(28px, 4vw, 44px); }
.section-head p { color: var(--ink-muted); margin: 12px 0 0; font-size: 17px; }
.section-head--light h2, .section-head--light p { color: var(--on-surface); }
.section-head--light p { color: color-mix(in oklab, var(--on-surface) 75%, transparent); }
.section-head--light .kicker {
  background: color-mix(in oklab, var(--on-surface) 14%, transparent);
  color: var(--on-surface);
}

/* ───────── real brand logos ───────── */
.logo {
  display: block;
  height: 28px;
  width: auto;
  object-fit: contain;
}
.logo-bocamp { height: 36px; }
.logo-crespo { height: 28px; }
.logo-gimex  { height: 28px; }

/* invert gimex (navy) on dark surfaces if needed via filter — keep coloured by default */
.brand-strip--footer .logo {
  filter: brightness(0) invert(1);
  opacity: .92;
}

/* ───────── stylised text wordmarks (kept for the poster only) ───────── */
.bm {
  font-family: var(--font-display);
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  line-height: 1;
}
.bm-bocamp {
  color: #6cb33f;
  font-size: 18px;
  letter-spacing: -.02em;
}
.bm-bocamp::before {
  content: "b";
  display: inline-grid;
  place-items: center;
  width: 1.5em;
  height: 1.5em;
  border-radius: 6px;
  background: #6cb33f;
  color: #fff;
  font-weight: 900;
  font-size: 1em;
  margin-right: 4px;
  line-height: 1;
}
.bm-crespo {
  color: #c1272d;
  font-weight: 900;
  font-size: 18px;
  letter-spacing: .12em;
  position: relative;
  padding-left: 18px;
}
.bm-crespo::before {
  content: "";
  width: 12px; height: 14px;
  background: #c1272d;
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  position: absolute;
  left: 0; top: 50%;
  transform: translateY(-50%);
}
.bm-gimex {
  color: var(--ink);
  font-size: 18px;
  letter-spacing: -.03em;
  flex-direction: column;
  align-items: flex-start;
  gap: 1px;
}
.bm-gimex small {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 7px;
  letter-spacing: .14em;
  color: #19c3c8;
  text-transform: uppercase;
}
/* Inverted on dark surfaces */
.poster-card .bm-gimex,
.site-footer .bm-gimex,
[data-theme="crespo"] .site-footer .bm-gimex,
[data-theme="gimex"] .site-footer .bm-gimex { color: var(--white); }

.brand-strip {
  display: inline-flex;
  align-items: center;
  gap: 18px;
}
.bm-sep {
  width: 1px;
  height: 22px;
  background: color-mix(in oklab, currentColor 25%, transparent);
}

/* ───────── header ───────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,.92);
  backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid var(--gray-light);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-block: 14px;
}
.header-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 14.5px;
}
.header-nav a {
  color: var(--ink);
  text-decoration: none;
  transition: color .2s;
}
.header-nav a:hover { color: var(--accent-deep); }

/* ───────── buttons ───────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 15px;
  padding: 14px 22px;
  border-radius: var(--radius-pill);
  border: 2px solid transparent;
  text-decoration: none;
  transition: transform .12s ease, background .2s ease, color .2s ease, box-shadow .2s ease;
  cursor: pointer;
  white-space: nowrap;
}
.btn-lg { padding: 16px 28px; font-size: 16px; }
.btn-primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 8px 24px -10px color-mix(in oklab, var(--accent) 70%, black);
}
.btn-primary:hover {
  background: var(--accent-deep);
  transform: translateY(-1px);
  box-shadow: 0 12px 28px -10px color-mix(in oklab, var(--accent) 70%, black);
}
.btn-ghost {
  background: transparent;
  color: var(--on-surface, var(--ink));
  border-color: color-mix(in oklab, currentColor 25%, transparent);
}
.btn-ghost:hover { background: color-mix(in oklab, currentColor 8%, transparent); }
.hero .btn-ghost { color: #fff; }

/* ───────── HERO ───────── */
.hero {
  position: relative;
  background: var(--surface);
  color: var(--on-surface);
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.hero-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .35;
  filter: saturate(1.1);
}
.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(105deg, var(--surface) 30%, color-mix(in oklab, var(--surface) 70%, transparent) 60%, transparent 100%),
    radial-gradient(80% 60% at 100% 0%, color-mix(in oklab, var(--accent) 30%, transparent), transparent 60%),
    radial-gradient(60% 50% at -10% 100%, color-mix(in oklab, var(--accent) 18%, transparent), transparent 60%);
}
.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 64px;
  align-items: center;
  padding-block: clamp(64px, 9vw, 120px);
}
.hero-copy { max-width: 620px; }
.eyebrow {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--accent-soft);
  background: color-mix(in oklab, var(--accent) 18%, transparent);
  padding: 8px 14px;
  border-radius: var(--radius-pill);
  margin-bottom: 24px;
}
.hero-title {
  font-size: clamp(44px, 7vw, 84px);
  font-weight: 900;
  letter-spacing: -.02em;
  line-height: .98;
  color: var(--on-surface);
  margin-bottom: 24px;
}
.hero-title em {
  font-style: normal;
  background: var(--accent);
  color: #fff;
  padding: 0 .25em .04em;
  border-radius: 12px;
  display: inline-block;
  transform: rotate(-1.2deg);
  margin: 0 .04em;
}
.hero-sub {
  font-size: 18px;
  line-height: 1.55;
  color: color-mix(in oklab, var(--on-surface) 80%, transparent);
  max-width: 540px;
  margin: 0 0 32px;
}
.hero-sub strong { color: var(--on-surface); font-weight: 700; }
.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 32px;
}
.hero-meta {
  list-style: none;
  padding: 0; margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 20px 28px;
  font-size: 14.5px;
  color: color-mix(in oklab, var(--on-surface) 80%, transparent);
}
.hero-meta li { display: inline-flex; align-items: center; gap: 9px; }
.hero-meta .dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 4px color-mix(in oklab, var(--accent) 25%, transparent);
}

/* poster card on the right */
.hero-poster { display: grid; place-items: center; }
.poster-card {
  width: 100%;
  max-width: 420px;
  aspect-ratio: 3 / 4;
  background: var(--green);
  color: #fff;
  border-radius: 28px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  box-shadow: var(--shadow-poster);
  transform: rotate(2deg);
  position: relative;
}
.poster-card::after {
  content: "";
  position: absolute;
  inset: 12px;
  border: 1px solid rgba(255,255,255,.06);
  border-radius: 22px;
  pointer-events: none;
}
.poster-head {
  background: var(--orange);
  border-radius: 14px;
  padding: 18px 22px 22px;
  display: flex;
  flex-direction: column;
  font-family: var(--font-display);
  font-weight: 900;
  color: #fff;
  font-size: clamp(40px, 7vw, 64px);
  letter-spacing: -.02em;
  line-height: .9;
}
.poster-head span { display: block; }
.poster-body {
  display: flex;
  flex-direction: column;
  gap: 14px;
  flex: 1;
  padding-inline: 6px;
}
.poster-pct {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(72px, 12vw, 120px);
  line-height: .85;
  letter-spacing: -.04em;
  color: #fff;
  margin-top: 6px;
}
.poster-pct sup {
  font-size: .55em;
  vertical-align: top;
  margin-left: -0.08em;
}
.poster-brands {
  margin-top: auto;
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}
.poster-card .bm-bocamp { color: #fff; font-size: 13px; }
.poster-card .bm-bocamp::before { background: #6cb33f; }
.poster-card .bm-crespo { color: #fff; font-size: 13px; }
.poster-card .bm-crespo::before { background: #c1272d; }
.poster-card .bm-gimex { font-size: 14px; }
.poster-card .bm-gimex small { color: #19c3c8; }

.poster-foot {
  position: absolute;
  bottom: -22px;
  right: -22px;
  background: #fff;
  color: var(--green);
  border-radius: 14px;
  padding: 10px;
  display: flex;
  align-items: stretch;
  gap: 10px;
  box-shadow: 0 12px 28px -10px rgba(0,0,0,.4);
  transform: rotate(-3deg);
}
.poster-foot-text {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 11px;
  line-height: 1.15;
  display: grid;
  align-content: center;
  text-transform: uppercase;
  letter-spacing: .04em;
  padding-left: 4px;
}
.poster-qr { width: 64px; height: 64px; }
.qr { width: 100%; height: 100%; border-radius: 6px; overflow: hidden; }

/* ───────── steps ───────── */
.steps {
  background: var(--white);
  padding-block: clamp(72px, 9vw, 120px);
}
.steps-grid {
  list-style: none;
  padding: 0; margin: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  counter-reset: step;
}
.step {
  position: relative;
  padding: 28px 24px 26px;
  border-radius: var(--radius-lg);
  background: var(--gray-soft);
  border: 1px solid color-mix(in oklab, var(--gray) 35%, transparent);
  transition: transform .2s, box-shadow .2s, border-color .2s;
}
.step:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  border-color: var(--accent);
}
.step-num {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 26px;
  width: 48px; height: 48px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  margin-bottom: 20px;
}
.step h3 { font-size: 19px; margin-bottom: 8px; }
.step p { color: var(--ink-muted); font-size: 14.5px; margin: 0; }

/* ───────── info strip ───────── */
.info-strip {
  background: var(--gray-soft);
  padding-block: clamp(56px, 7vw, 96px);
  border-top: 1px solid var(--gray-light);
  border-bottom: 1px solid var(--gray-light);
}
.info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.info-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 32px 32px 28px;
  border: 1px solid var(--gray-light);
}
.info-icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  display: grid; place-items: center;
  background: color-mix(in oklab, var(--accent) 14%, transparent);
  color: var(--accent-deep);
  margin-bottom: 18px;
}
.info-card h3 { font-size: 22px; margin-bottom: 16px; }
.check-list {
  list-style: none;
  padding: 0; margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.check-list li {
  position: relative;
  padding-left: 30px;
  color: var(--ink-muted);
  font-size: 15px;
  line-height: 1.5;
}
.check-list li::before {
  content: "";
  position: absolute;
  left: 0; top: 4px;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: var(--accent) url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' fill='none' stroke='white' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'><polyline points='2.5 6.5 5 9 9.5 3.5'/></svg>") center / 12px no-repeat;
}
.check-list strong { color: var(--ink); font-weight: 700; }

/* ───────── form section ───────── */
.form-section {
  background: var(--surface);
  color: var(--on-surface);
  padding-block: clamp(72px, 9vw, 120px);
  position: relative;
}
.form-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(40% 40% at 90% 10%, color-mix(in oklab, var(--accent) 22%, transparent), transparent 70%),
    radial-gradient(40% 40% at 10% 90%, color-mix(in oklab, var(--accent) 14%, transparent), transparent 70%);
  pointer-events: none;
}
.form-wrap { position: relative; max-width: 880px; margin: 0 auto; }
.cashback-form {
  background: #fff;
  color: var(--ink);
  border-radius: 24px;
  padding: 36px;
  box-shadow: 0 20px 60px -20px rgba(0,0,0,.4);
  display: flex;
  flex-direction: column;
  gap: 26px;
}

/* brand picker */
.brand-picker {
  border: 0;
  padding: 0;
  margin: 0;
}
.brand-picker legend {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 15px;
  margin-bottom: 12px;
  color: var(--ink);
}
.brand-options {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.brand-opt {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 14px;
  padding: 22px 18px 20px;
  border: 2px solid var(--gray-light);
  border-radius: var(--radius);
  background: #fff;
  cursor: pointer;
  transition: border-color .15s, background .15s, transform .12s;
}
.brand-opt:hover { border-color: color-mix(in oklab, var(--accent) 50%, var(--gray-light)); }
.brand-opt input { position: absolute; opacity: 0; pointer-events: none; }
.brand-opt-logo {
  display: grid;
  place-items: center;
  justify-self: center;
  width: 100%;
  aspect-ratio: 16 / 11;
  border-radius: 12px;
  background: var(--gray-soft);
  padding: 16px 22px;
  margin-inline: auto;
}
.brand-opt-logo .logo {
  display: block;
  margin: auto;
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
  object-position: center;
}
.brand-opt-logo .logo-bocamp { max-height: 96px; }
.brand-opt-logo .logo-crespo { max-height: 64px; max-width: 88%; }
.brand-opt-logo .logo-gimex  { max-height: 60px; max-width: 92%; }
.brand-opt-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  min-width: 0;
}
.brand-opt-text strong {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 15px;
  color: var(--ink);
  line-height: 1.1;
}
.brand-opt-text small {
  color: var(--ink-muted);
  font-size: 12.5px;
  line-height: 1.3;
}
.brand-opt:has(input:checked) {
  border-color: var(--accent);
  background: color-mix(in oklab, var(--accent) 6%, white);
  box-shadow: 0 0 0 4px color-mix(in oklab, var(--accent) 18%, transparent);
}
.brand-opt:has(input:checked) .brand-opt-logo {
  background: #fff;
}
.brand-opt:has(input:checked)::after {
  content: "";
  position: absolute;
  top: 12px; right: 12px;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: var(--accent) url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' fill='none' stroke='white' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'><polyline points='2.5 6.5 5 9 9.5 3.5'/></svg>") center / 12px no-repeat;
}

/* form grid */
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.field--full { grid-column: 1 / -1; }
.lbl {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 13.5px;
  color: var(--ink);
}
.lbl em { font-style: normal; color: var(--ink-muted); font-weight: 500; font-size: 12px; }
.field input,
.input-affix {
  font-family: var(--font-body);
  font-size: 15px;
  padding: 12px 14px;
  background: var(--gray-soft);
  border: 1.5px solid transparent;
  border-radius: 10px;
  color: var(--ink);
  transition: border-color .15s, background .15s, box-shadow .15s;
  width: 100%;
}
.field input:focus {
  outline: none;
  border-color: var(--accent);
  background: #fff;
  box-shadow: 0 0 0 4px color-mix(in oklab, var(--accent) 16%, transparent);
}
.field input::placeholder { color: color-mix(in oklab, var(--ink-muted) 80%, transparent); }
.input-affix {
  padding: 0;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.input-affix:focus-within {
  border-color: var(--accent);
  background: #fff;
  box-shadow: 0 0 0 4px color-mix(in oklab, var(--accent) 16%, transparent);
}
.input-affix .affix {
  padding: 12px 0 12px 14px;
  color: var(--ink-muted);
  font-weight: 600;
}
.input-affix input {
  background: transparent;
  border: 0;
  box-shadow: none;
}
.input-affix input:focus { box-shadow: none; }

.field.invalid input,
.field.invalid .input-affix {
  border-color: #c1272d;
  background: color-mix(in oklab, #c1272d 6%, white);
}

/* dropzone */
.upload .lbl { display: block; margin-bottom: 8px; }
.dropzone {
  position: relative;
  display: block;
  border: 2px dashed color-mix(in oklab, var(--gray) 60%, transparent);
  border-radius: 14px;
  padding: 28px;
  text-align: center;
  background: var(--gray-soft);
  cursor: pointer;
  transition: border-color .15s, background .15s;
}
.dropzone:hover,
.dropzone.is-drag {
  border-color: var(--accent);
  background: color-mix(in oklab, var(--accent) 5%, white);
}
.dropzone input[type="file"] {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
}
.dz-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: var(--ink-muted);
}
.dz-inner svg { color: var(--accent); margin-bottom: 4px; }
.dz-title { color: var(--ink); font-family: var(--font-display); font-weight: 600; }
.dz-title u { text-decoration: underline; color: var(--accent-deep); }
.dz-hint { font-size: 13px; }
.dz-file {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  background: #fff;
  border-radius: 10px;
  border: 1px solid var(--gray-light);
}
.dz-filename { flex: 1; font-size: 14px; font-weight: 600; color: var(--ink); text-align: left; }
.dz-remove {
  border: 0;
  background: var(--gray-light);
  width: 26px; height: 26px;
  border-radius: 50%;
  font-size: 18px;
  line-height: 1;
  color: var(--ink);
}
.dz-remove:hover { background: var(--accent); color: #fff; }

/* agree */
.agree {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  color: var(--ink-muted);
}
.agree input {
  width: 20px; height: 20px;
  margin-top: 2px;
  accent-color: var(--accent);
  flex-shrink: 0;
}
.agree a { color: var(--accent-deep); text-decoration: underline; }

.form-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 4px;
}
.form-foot-note {
  font-size: 13px;
  color: var(--ink-muted);
  margin: 0;
  max-width: 320px;
}

.form-success {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
  padding: 20px 0 8px;
}
.ok-mark {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  display: grid; place-items: center;
  margin-bottom: 8px;
}
.form-success h3 { font-size: 24px; }
.form-success p { color: var(--ink-muted); margin: 0; }

/* ───────── FAQ ───────── */
.faq { background: #fff; padding-block: clamp(64px, 8vw, 110px); }
.faq-wrap { max-width: 880px; margin: 0 auto; }
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.faq-item {
  background: var(--gray-soft);
  border-radius: 14px;
  border: 1px solid var(--gray-light);
  overflow: hidden;
  transition: border-color .15s, background .15s;
}
.faq-item[open] {
  background: #fff;
  border-color: var(--accent);
  box-shadow: var(--shadow-sm);
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 18px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 16.5px;
  color: var(--ink);
}
.faq-item summary::-webkit-details-marker { display: none; }
.chev {
  flex-shrink: 0;
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--gray-light);
  position: relative;
  transition: background .15s, transform .2s;
}
.chev::before, .chev::after {
  content: "";
  position: absolute;
  background: var(--ink);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
}
.chev::before { width: 12px; height: 2px; }
.chev::after { width: 2px; height: 12px; transition: transform .2s; }
.faq-item[open] .chev { background: var(--accent); }
.faq-item[open] .chev::before, .faq-item[open] .chev::after { background: #fff; }
.faq-item[open] .chev::after { transform: translate(-50%, -50%) scaleY(0); }
.faq-body {
  padding: 0 22px 20px;
  color: var(--ink-muted);
  font-size: 15px;
  line-height: 1.6;
}
.faq-body strong { color: var(--ink); }

/* ───────── footer ───────── */
.site-footer {
  background: var(--green-deep);
  color: #fff;
  padding-block: 56px 24px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 40px;
}
.footer-col--brand .brand-strip {
  margin-bottom: 18px;
}
.brand-strip--footer .bm-bocamp,
.brand-strip--footer .bm-crespo,
.brand-strip--footer .bm-gimex { color: #fff; }
.brand-strip--footer .bm-gimex small { color: #19c3c8; }
.footer-tag {
  font-size: 14px;
  color: rgba(255,255,255,.65);
  max-width: 320px;
  margin: 0;
}
.site-footer h4 {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: rgba(255,255,255,.55);
  font-weight: 700;
  margin: 0 0 14px;
}
.disclaimer {
  font-size: 13px;
  color: rgba(255,255,255,.7);
  line-height: 1.6;
  margin: 0;
}
.footer-links {
  list-style: none;
  padding: 0; margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 14px;
}
.footer-links a {
  color: rgba(255,255,255,.85);
  text-decoration: none;
  transition: color .15s;
}
.footer-links a:hover { color: var(--accent); }
.footer-base {
  margin-top: 36px;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,.1);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 12.5px;
  color: rgba(255,255,255,.55);
}

/* ───────── responsive ───────── */
@media (max-width: 980px) {
  .hero-inner { grid-template-columns: 1fr; gap: 56px; }
  .hero-poster { max-width: 360px; margin: 0 auto; width: 100%; }
  .steps-grid { grid-template-columns: 1fr 1fr; }
  .info-grid, .footer-grid { grid-template-columns: 1fr; }
  .brand-options { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .header-nav { display: none; }
  .steps-grid { grid-template-columns: 1fr; }
  .cashback-form { padding: 24px; }
  .poster-foot { right: -8px; bottom: -16px; }
  .brand-strip { gap: 12px; }
  .bm-sep { display: none; }
}
