/* ============================================
   ADITISER MARKETING LIMITED · SHARED STYLES
   ============================================ */

@import url("https://fonts.googleapis.com/css2?family=DM+Sans:ital,wght@0,300;0,400;0,500;1,300&family=Inter:wght@400;500;600;700;800&display=swap");

:root {
  --header-sticky-top: 100px;
  --bg: #f8f7f4;
  --bg2: #ffffff;
  --text: #0d1117;
  --muted: #5a6270;
  --subtle: #8a9099;
  --card: #ffffff;
  --card2: #f1f0ed;
  --border: #e2e0da;
  --blue: #1340a0;
  --blue-mid: #1a4fbf;
  --blue-light: #e8eeff;
  --yellow: #f5c400;
  --yellow-light: #fff9e0;
  --shadow-sm: 0 2px 8px rgba(13, 17, 23, 0.06);
  --shadow: 0 8px 32px rgba(13, 17, 23, 0.08);
  --shadow-lg: 0 24px 64px rgba(13, 17, 23, 0.12);
  --radius: 20px;
  --radius-lg: 32px;
  --font-display: "Inter", sans-serif;
  --font-body: "DM Sans", sans-serif;
}

@media (max-width: 960px) {
  :root {
    --header-sticky-top: 90px;
  }
}

html[data-theme="dark"] {
  --bg: #0a0c10;
  --bg2: #0e1118;
  --text: #edecea;
  --muted: #9aa3b0;
  --subtle: #6a7280;
  --card: #131720;
  --card2: #1a1f2e;
  --border: #252d3d;
  --blue: #4d7ef5;
  --blue-mid: #3d6ee0;
  --blue-light: #0f1a35;
  --yellow: #ffd040;
  --yellow-light: #1a1500;
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.25);
  --shadow: 0 8px 32px rgba(0, 0, 0, 0.35);
  --shadow-lg: 0 24px 64px rgba(0, 0, 0, 0.5);
}
html[data-theme="dark"] .theme-switch .icon-moon {
  filter: invert(1);
}
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  transition:
    background 0.3s ease,
    color 0.3s ease;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}

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

/* ── CONTAINER ──
   Match the home page pattern: each major band uses its own top-level
   `<section class="container">` (or full-bleed section + inner `.container`).
   Avoid one `<div class="container">` wrapping all of `<main>`; that reads as a
   single short column in devtools and can feel visually “compressed”. */
.container {
  width: min(1200px, calc(100% - 48px));
  margin: 0 auto;
}

/* ── SKIP LINK ── */
.skip-link {
  position: absolute;
  left: 16px;
  top: -120px;
  z-index: 200;
  padding: 10px 18px;
  background: var(--blue);
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  border-radius: 10px;
  text-decoration: none;
  transition: top 0.2s ease;
  box-shadow: var(--shadow);
}

.skip-link:focus {
  top: 16px;
  outline: 2px solid var(--yellow);
  outline-offset: 3px;
}

/* ── HEADER / NAV ── */
header {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  background: color-mix(in srgb, var(--bg) 88%, transparent);
  border-bottom: 1px solid var(--border);
  transition:
    background 0.3s ease,
    border-color 0.3s ease;
}

.nav {
  min-height: 92px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  box-sizing: border-box;
}

.logo-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--text);
}

.logo-img {
  height: 140px;
  width: auto;
  display: block;
  object-fit: contain;
  flex-shrink: 0;
}

.logo-light {
  display: block;
}

.logo-dark {
  display: none;
}

html[data-theme="dark"] .logo-light {
  display: none;
}

html[data-theme="dark"] .logo-dark {
  display: block;
}

.logo-img--footer {
  height: 126px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--muted);
  padding: 8px 14px;
  border-radius: 10px;
  transition:
    color 0.2s,
    background 0.2s;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--text);
  background: var(--card2);
}

/* Services dropdown (header) */
.nav-dropdown {
  position: relative;
}

.nav-dropdown__toggle {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 500;
  color: var(--muted);
  padding: 8px 14px;
  border-radius: 10px;
  border: none;
  background: transparent;
  cursor: pointer;
  font-family: var(--font-body);
  transition:
    color 0.2s,
    background 0.2s;
}

.nav-dropdown__toggle:hover,
.nav-dropdown__toggle.active,
.nav-dropdown.is-open .nav-dropdown__toggle {
  color: var(--text);
  background: var(--card2);
}

.nav-dropdown__chevron {
  transition: transform 0.2s ease;
}

.nav-dropdown.is-open .nav-dropdown__chevron {
  transform: rotate(180deg);
}

.nav-dropdown__menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 260px;
  /* Top padding bridges button → panel so hover doesn’t drop in the gap */
  padding: 10px 8px 8px;
  margin: 0;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 14px;
  box-shadow: var(--shadow-lg);
  z-index: 120;
  pointer-events: auto;
}

.nav-dropdown.is-open .nav-dropdown__menu,
.nav-dropdown:hover .nav-dropdown__menu,
.nav-dropdown:focus-within .nav-dropdown__menu {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.nav-dropdown__menu a {
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: var(--muted);
  padding: 10px 12px;
  border-radius: 10px;
  transition:
    color 0.2s,
    background 0.2s;
}

.nav-dropdown__menu a:hover,
.nav-dropdown__menu a.active {
  color: var(--text);
  background: var(--card2);
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* Theme control: only one icon visible; icons stacked so flex cannot lay them out side-by-side */
.theme-switch {
  position: relative;
  box-sizing: border-box;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 1px solid var(--border);
  background: var(--card);
  border-radius: 10px;
  cursor: pointer;
  flex-shrink: 0;
  overflow: hidden;
  transition:
    border-color 0.2s,
    background 0.2s;
}

.theme-switch .icon-sun,
.theme-switch .icon-moon {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 22px;
  height: 22px;
  object-fit: contain;
  pointer-events: none;
}

html[data-theme="light"] .theme-switch .icon-moon {
  display: none !important;
}

html[data-theme="light"] .theme-switch .icon-sun {
  display: block !important;
}

html[data-theme="dark"] .theme-switch .icon-sun {
  display: none !important;
}

html[data-theme="dark"] .theme-switch .icon-moon {
  display: block !important;
}

.theme-switch:hover {
  border-color: var(--blue);
}

html[data-theme="dark"] .theme-switch:hover {
  border-color: var(--yellow);
}

.nav-links a:focus-visible,
.nav-burger:focus-visible,
.theme-switch:focus-visible,
header .nav-right .btn:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 3px;
}

html[data-theme="dark"] .nav-links a:focus-visible,
html[data-theme="dark"] .nav-burger:focus-visible,
html[data-theme="dark"] .theme-switch:focus-visible,
html[data-theme="dark"] header .nav-right .btn:focus-visible {
  outline-color: var(--yellow);
}

/* Compact primary CTA in header (avoid inline styles on every page) */
header .nav-right .btn-primary {
  padding: 10px 18px;
  font-size: 14px;
}

/* Mobile menu toggle */
.nav-burger {
  display: none;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
  background: var(--card);
  border-radius: 10px;
  cursor: pointer;
  color: var(--text);
  padding: 0;
  flex-shrink: 0;
}

.nav-burger::before {
  content: "";
  width: 18px;
  height: 2px;
  background: currentColor;
  box-shadow:
    0 -6px 0 currentColor,
    0 6px 0 currentColor;
  display: block;
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: 12px;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 15px;
  cursor: pointer;
  transition: all 0.2s ease;
  border: 1px solid var(--border);
  background: var(--card);
  color: var(--text);
  text-decoration: none;
}

.btn:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow);
}

.btn-primary {
  background: var(--blue);
  color: #fff;
  border-color: var(--blue);
  font-weight: 600;
}

.btn-primary:hover {
  background: var(--blue-mid);
  box-shadow: 0 8px 24px color-mix(in srgb, var(--blue) 40%, transparent);
}

.btn:active {
  transform: translateY(0);
}

.btn-lg {
  padding: 16px 32px;
  font-size: 16px;
  border-radius: 14px;
}

/* ── TYPOGRAPHY ── */
h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  line-height: 1.1;
  letter-spacing: -0.035em;
}

h1 {
  font-size: clamp(40px, 5.5vw, 72px);
  font-weight: 800;
}
h2 {
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 700;
}
h3 {
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 700;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--blue);
  background: var(--blue-light);
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 20px;
}

.section-lead {
  font-size: 18px;
  color: var(--muted);
  max-width: 680px;
  line-height: 1.7;
}

/* ── SECTIONS ──
   Vertical rhythm matches the home hero (96px / 80px) and main bands (80px).
   Page heroes & band-style blocks on inner pages use the same system; ≤960px uses 64px/56px heroes and 56px sections. */
.section {
  padding: 80px 0;
}
.section-header {
  margin-bottom: 48px;
  text-align: center;
}
.section-header h2 {
  margin-bottom: 16px;
}
.section-header .section-lead {
  margin-left: auto;
  margin-right: auto;
}

/* Full-width page intros (e.g. Services) */
.page-hero {
  text-align: center;
}
.page-hero .section-lead {
  margin-left: auto;
  margin-right: auto;
}

/* ── CARDS ── */
.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  transition:
    transform 0.2s,
    box-shadow 0.2s,
    border-color 0.2s;
}

.card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
  border-color: color-mix(in srgb, var(--blue) 30%, var(--border));
}

.card-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: var(--blue-light);
  color: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin: 0 auto 18px;
  flex-shrink: 0;
}

.card h3 {
  margin-bottom: 10px;
  text-align: center;
}
.card p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.6;
  text-align: center;
}

/* Lists inside cards: keep readable width, centered block */
.card.service-card ul {
  text-align: left;
  width: 100%;
  max-width: 280px;
  margin: 0 auto;
}

/* ── GRID HELPERS ── */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

/* ── METRIC ── */
.metric-badge {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 20px 24px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  text-align: center;
}

.metric-badge strong {
  font-family: var(--font-display);
  font-size: 34px;
  font-weight: 800;
  color: var(--blue);
  letter-spacing: -0.04em;
  line-height: 1;
}

.metric-badge span {
  font-size: 13px;
  color: var(--muted);
  font-weight: 500;
}

/* ── HIGHLIGHT BLOCK ── */
.highlight-block {
  background: var(--blue);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 40px;
  text-align: center;
}

.highlight-block h2,
.highlight-block h3 {
  color: #fff;
}
.highlight-block p {
  color: rgba(255, 255, 255, 0.78);
}
.highlight-block .eyebrow {
  background: rgba(255, 255, 255, 0.18);
  color: #fff;
}

/* ── STEP ── */
.step-item {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px;
}

.step-num {
  width: 40px;
  height: 40px;
  min-width: 40px;
  border-radius: 12px;
  background: var(--yellow);
  color: #111;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.step-item strong {
  font-family: var(--font-display);
  font-size: 16px;
  display: block;
  margin-bottom: 4px;
}
.step-item p {
  color: var(--muted);
  font-size: 14px;
  margin: 0;
}

/* ── CTA BLOCK ── */
.cta-block {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 72px 48px;
  text-align: center;
  box-shadow: var(--shadow);
}

.cta-block h2 {
  margin-bottom: 16px;
}
.cta-block .section-lead {
  margin: 0 auto 32px;
}
.cta-block .btn-group {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ── FOOTER ── */
footer {
  border-top: 1px solid var(--border);
  padding: 40px 0;
  color: var(--muted);
  font-size: 14px;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-links {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-links a {
  color: var(--muted);
  transition: color 0.2s;
}

.footer-links a:hover {
  color: var(--text);
}

.social-icons {
  display: flex;
  gap: 10px;
}

.social-icon {
  width: 36px;
  height: 36px;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: var(--card);
  color: var(--muted);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
  text-decoration: none;
}

.social-icon:hover {
  color: #fff;
  border-color: transparent;
}

.social-icon.instagram:hover {
  background: linear-gradient(
    135deg,
    #f09433,
    #e6683c,
    #dc2743,
    #cc2366,
    #bc1888
  );
}
.social-icon.facebook:hover {
  background: #1877f2;
}

/* ── FORM ── */
.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 20px;
}

.form-group label {
  font-size: 13px;
  font-weight: 600;
  color: var(--muted);
  letter-spacing: 0.03em;
}

.form-control {
  width: 100%;
  padding: 13px 16px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 12px;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--text);
  transition:
    border-color 0.2s,
    box-shadow 0.2s;
  -webkit-appearance: none;
  appearance: none;
}

.form-control:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--blue) 15%, transparent);
}

.form-control::placeholder {
  color: var(--subtle);
}

textarea.form-control {
  resize: vertical;
  min-height: 120px;
}

/* ── DIVIDER ── */
.divider {
  height: 1px;
  background: var(--border);
  margin: 0;
}

/* ── TAG / BADGE ── */
.tag {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 600;
  background: var(--card2);
  color: var(--muted);
  border: 1px solid var(--border);
}

.tag-blue {
  background: var(--blue-light);
  color: var(--blue);
  border-color: color-mix(in srgb, var(--blue) 20%, transparent);
}

/* ── SCROLL REVEAL (landing pages) ── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}

.reveal.revealed {
  opacity: 1;
  transform: none;
}

.reveal-delay-1 {
  transition-delay: 0.1s;
}

.reveal-delay-2 {
  transition-delay: 0.2s;
}

/* ── SOLUTION LANDING PAGES (audit, white-label, etc.) ── */
.lp-hero {
  padding: 96px 0 48px;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  align-items: start;
}

.lp-hero--single {
  grid-template-columns: 1fr;
  max-width: 52rem;
}

.lp-hero h1 {
  margin-bottom: 16px;
  font-size: clamp(36px, 4.5vw, 56px);
}

.lp-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.lp-pill {
  font-size: 13px;
  font-weight: 600;
  padding: 8px 14px;
  border-radius: 100px;
  background: var(--card);
  color: var(--muted);
  border: 1px solid var(--border);
}

.lp-summary {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 26px;
  box-shadow: var(--shadow-lg);
}

.lp-summary h2 {
  font-size: 22px;
  margin-bottom: 10px;
}

.lp-summary--center-head > h2,
.lp-summary--center-head > p {
  text-align: center;
}

.lp-summary--center-head .lp-summary__row {
  text-align: center;
}

.lp-summary--center-head > h2,
.audit-summary--center-head > h2 {
  padding-right: 0;
}

.audit-summary--center-head > h2,
.audit-summary--center-head > p {
  text-align: center;
}

.audit-summary--center-head .audit-summary__row {
  text-align: center;
}

.audit-review-grid--center .audit-review-card {
  text-align: center;
}

.lp-section-intro {
  text-align: center;
}

.lp-section-intro .section-lead,
.lp-section-intro > p {
  margin-left: auto;
  margin-right: auto;
}

.lp-summary > p {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 20px;
  line-height: 1.55;
}

.lp-summary__row {
  padding: 14px 16px;
  border: 1px solid var(--border);
  border-radius: 12px;
  margin-bottom: 10px;
  background: var(--bg2);
}

.lp-summary__row:last-child {
  margin-bottom: 0;
}

.lp-summary__row strong {
  display: block;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--subtle);
  margin-bottom: 4px;
}

.lp-summary__row span {
  font-size: 14px;
  color: var(--text);
  line-height: 1.45;
}

/* Shared: paid media platform cards (audit + international landings) */
.lp-platforms {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 8px;
}

@media (min-width: 900px) {
  .lp-platforms {
    grid-template-columns: repeat(3, 1fr);
  }
}

.lp-platform-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 22px 24px;
  box-shadow: var(--shadow);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    border-color 0.2s ease;
}

.lp-platform-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
  border-color: color-mix(in srgb, var(--blue) 30%, var(--border));
}

.lp-platform-card__logo {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 140px;
  margin-bottom: 12px;
  padding: 12px 8px;
}

.lp-platform-card__logo img {
  display: block;
  width: auto;
  max-width: 100%;
  height: 120px;
  object-fit: contain;
  object-position: center;
}

.lp-platform-card__logo--yahoo img {
  height: 128px;
}

html[data-theme="dark"] .lp-platform-card__logo img[src$="x.png"] {
  filter: invert(1);
}

.lp-platform-card h3 {
  font-size: 17px;
  margin-bottom: 10px;
}

.lp-platform-card p {
  font-size: 14px;
  color: var(--muted);
  margin: 0;
  line-height: 1.55;
}

.lp-platforms__footer {
  margin-top: 28px;
  padding: 20px 24px;
  text-align: center;
  font-size: 15px;
  color: var(--muted);
  line-height: 1.6;
  background: color-mix(in srgb, var(--blue) 8%, var(--card));
  border: 1px solid color-mix(in srgb, var(--blue) 22%, var(--border));
  border-radius: var(--radius);
}

.lp-platforms__footer strong {
  color: var(--text);
}

/* Languages / markets grid (international landing) */
.lp-lang-panel {
  position: relative;
  margin-top: 8px;
  padding: 28px 20px 32px;
  border-radius: var(--radius-lg);
  background: color-mix(in srgb, var(--blue) 6%, var(--bg2));
  border: 1px solid color-mix(in srgb, var(--blue) 18%, var(--border));
  overflow: hidden;
}

.lp-lang-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      ellipse 80% 60% at 50% 55%,
      color-mix(in srgb, var(--blue) 12%, transparent),
      transparent 70%
    ),
    radial-gradient(
      circle at 20% 30%,
      color-mix(in srgb, var(--blue) 8%, transparent) 0,
      transparent 45%
    ),
    radial-gradient(
      circle at 78% 65%,
      color-mix(in srgb, var(--blue) 8%, transparent) 0,
      transparent 40%
    );
  pointer-events: none;
  opacity: 0.85;
}

.lp-lang-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

@media (min-width: 640px) {
  .lp-lang-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 900px) {
  .lp-lang-grid {
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
  }
}

.lp-lang-card {
  background: var(--card);
  border: 2px solid color-mix(in srgb, var(--blue) 40%, var(--border));
  border-radius: var(--radius);
  padding: 18px 14px 16px;
  text-align: center;
  box-shadow: var(--shadow);
}

.lp-lang-card h3 {
  font-size: 15px;
  font-weight: 700;
  color: var(--blue);
  margin: 0 0 10px;
  line-height: 1.3;
}

.lp-lang-card__greeting {
  font-size: 15px;
  color: var(--text);
  margin: 0;
  line-height: 1.45;
}

.lp-lang-card__greeting--latin {
  font-style: italic;
}

.lp-page-nav-wrap {
  position: sticky;
  top: var(--header-sticky-top);
  z-index: 50;
  background: color-mix(in srgb, var(--bg) 92%, transparent);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  padding: 14px 0;
  margin-bottom: 8px;
}

.lp-page-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 16px;
}

.lp-page-nav__label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--subtle);
  margin-right: 4px;
}

.lp-page-nav a {
  font-size: 14px;
  font-weight: 600;
  color: var(--muted);
  padding: 8px 16px;
  border-radius: 100px;
  border: 1px solid var(--border);
  background: var(--card);
  transition:
    color 0.2s,
    background 0.2s,
    border-color 0.2s;
}

.lp-page-nav a:hover {
  color: var(--text);
  border-color: color-mix(in srgb, var(--blue) 35%, var(--border));
}

.lp-page-nav a.is-active {
  color: var(--blue);
  background: var(--blue-light);
  border-color: color-mix(in srgb, var(--blue) 30%, var(--border));
}

.lp-page-nav__links {
  display: contents;
}

.lp-section {
  padding: 72px 0;
  scroll-margin-top: calc(var(--header-sticky-top) + 56px);
}

.lp-section--alt {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

/* Yellow programme theme (matches paid-media-audit accents) */
.lp-page--yellow .eyebrow--service {
  color: #0d7a4a;
  background: color-mix(in srgb, #0d7a4a 12%, var(--card));
  border: 1px solid color-mix(in srgb, #0d7a4a 28%, transparent);
}

html[data-theme="dark"] .lp-page--yellow .eyebrow--service {
  color: #5ee9a8;
  background: color-mix(in srgb, #5ee9a8 12%, var(--card));
  border-color: color-mix(in srgb, #5ee9a8 25%, transparent);
}

main.lp-page--yellow .btn-primary {
  background: var(--yellow);
  color: #1a1500;
  border-color: var(--yellow);
  font-weight: 700;
}

main.lp-page--yellow .btn-primary:hover {
  background: #e6b800;
  border-color: #e6b800;
  box-shadow: 0 8px 24px color-mix(in srgb, var(--yellow) 45%, transparent);
}

html[data-theme="dark"] main.lp-page--yellow .btn-primary {
  color: #1a1500;
}

.lp-page--yellow .lp-checklist li::before {
  background: var(--yellow);
}

.lp-page--yellow .lp-platform-card:hover {
  border-color: color-mix(in srgb, var(--yellow) 40%, var(--border));
}

.lp-page--yellow .lp-platforms__footer {
  background: color-mix(in srgb, var(--yellow) 12%, var(--card));
  border-color: color-mix(in srgb, var(--yellow) 35%, var(--border));
}

.lp-page--yellow .lp-lang-panel {
  background: color-mix(in srgb, var(--yellow) 8%, var(--bg2));
  border-color: color-mix(in srgb, var(--yellow) 28%, var(--border));
}

.lp-page--yellow .lp-lang-panel::before {
  background:
    radial-gradient(
      ellipse 80% 60% at 50% 55%,
      color-mix(in srgb, var(--yellow) 14%, transparent),
      transparent 70%
    ),
    radial-gradient(
      circle at 20% 30%,
      color-mix(in srgb, var(--yellow) 10%, transparent) 0,
      transparent 45%
    ),
    radial-gradient(
      circle at 78% 65%,
      color-mix(in srgb, var(--yellow) 10%, transparent) 0,
      transparent 40%
    );
}

.lp-page--yellow .lp-lang-card {
  border-color: color-mix(in srgb, var(--yellow) 45%, var(--border));
}

.lp-page--yellow .lp-lang-card h3 {
  color: color-mix(in srgb, var(--yellow) 85%, #1a1500);
}

html[data-theme="dark"] .lp-page--yellow .lp-lang-card h3 {
  color: var(--yellow);
}

.lp-page--yellow .lp-card-grid--five .lp-card:hover {
  border-color: color-mix(in srgb, var(--yellow) 40%, var(--border));
}

.lp-page--yellow .lp-flow-step__num {
  background: var(--yellow);
  color: #1a1500;
}

html[data-theme="dark"] .lp-page--yellow .lp-flow-step__num {
  background: var(--yellow);
  color: #1a1500;
}

.lp-page--yellow .lp-flow-label {
  border-color: color-mix(in srgb, var(--yellow) 55%, var(--border));
  background: var(--yellow-light);
  color: var(--text);
}

.lp-page--yellow .lp-flow-arrow {
  color: var(--yellow);
}

.lp-page--yellow .lp-outcome {
  background: color-mix(in srgb, var(--yellow) 14%, var(--card));
  border-color: color-mix(in srgb, var(--yellow) 35%, var(--border));
}

.lp-page--yellow .lp-outcome__icon {
  background: var(--yellow);
  color: #1a1500;
}

.lp-page--yellow .lp-faq details[open] summary {
  color: color-mix(in srgb, var(--yellow) 70%, #1a1500);
}

html[data-theme="dark"] .lp-page--yellow .lp-faq details[open] summary {
  color: var(--yellow);
}

.lp-page--yellow .lp-process-card__num {
  background: var(--yellow);
  color: #1a1500;
}

.lp-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.lp-checklist {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
}

.lp-checklist ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.lp-checklist li {
  padding-left: 22px;
  position: relative;
  font-size: 15px;
  color: var(--muted);
  line-height: 1.55;
}

.lp-checklist li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--blue);
}

.lp-card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.lp-card-grid--center .lp-card {
  text-align: center;
}

/* Five cards: 3 + 2 rows, second row centred (no empty corner) */
.lp-card-grid--five {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.lp-card-grid--five .lp-card {
  flex: 1 1 calc(33.333% - 14px);
  max-width: calc(33.333% - 14px);
  min-width: min(100%, 260px);
  min-height: 148px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    transform 0.2s ease;
}

.lp-card-grid--five .lp-card:hover {
  border-color: color-mix(in srgb, var(--blue) 35%, var(--border));
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}

.section-header:has(+ .lp-card-grid--five) {
  text-align: center;
}

.section-header:has(+ .lp-card-grid--five) .section-lead {
  margin-left: auto;
  margin-right: auto;
}

.lp-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px 20px;
}

.lp-card h3 {
  font-size: 16px;
  margin-bottom: 8px;
}

.lp-card p {
  font-size: 14px;
  color: var(--muted);
  margin: 0;
  line-height: 1.5;
}

.lp-flow-panel {
  margin-top: 32px;
  padding: 32px 28px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.lp-flow-panel__head {
  margin-bottom: 28px;
}

.lp-flow-panel__head h3 {
  font-size: 20px;
  margin-bottom: 6px;
}

.lp-flow-panel__head p {
  font-size: 14px;
  color: var(--muted);
  margin: 0;
}

.lp-flow-track {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.lp-flow-step {
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: 12px;
  row-gap: 10px;
  align-items: center;
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 18px 18px;
  flex: 1;
  min-width: 0;
}

.lp-flow-step__num {
  grid-row: 1;
  grid-column: 1;
  align-self: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--text);
  color: var(--bg);
  font-size: 13px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  line-height: 1;
  flex-shrink: 0;
}

html[data-theme="dark"] .lp-flow-step__num {
  background: var(--blue);
  color: #fff;
}

.lp-flow-step h4 {
  grid-row: 1;
  grid-column: 2;
  align-self: center;
  font-size: 15px;
  margin: 0;
  line-height: 1.3;
}

.lp-flow-step:not(:has(.lp-flow-step__num)) h4 {
  grid-column: 1 / -1;
}

.lp-flow-label--accent {
  background: var(--yellow-light);
  border-color: color-mix(in srgb, var(--yellow) 45%, var(--border));
  color: var(--text);
}

.lp-flow-step p {
  grid-row: 2;
  grid-column: 1 / -1;
  font-size: 13px;
  color: var(--muted);
  margin: 0;
  line-height: 1.45;
}

.lp-flow-label {
  grid-row: 3;
  grid-column: 1 / -1;
  justify-self: start;
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 100px;
  border: 1px solid color-mix(in srgb, var(--blue) 40%, var(--border));
  background: var(--blue-light);
  color: var(--blue);
}

.lp-flow-arrow {
  display: none;
  align-items: center;
  justify-content: center;
  color: var(--blue);
  font-size: 22px;
  font-weight: 700;
  flex-shrink: 0;
}

.lp-outcome {
  margin-top: 24px;
  padding: 18px 22px;
  border-radius: var(--radius);
  background: var(--blue-light);
  border: 1px solid color-mix(in srgb, var(--blue) 25%, var(--border));
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 15px;
  line-height: 1.5;
  color: var(--text);
}

.lp-outcome__icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--blue);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  flex-shrink: 0;
  font-size: 14px;
}

.lp-process-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 36px;
}

.lp-process-card {
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: 14px;
  row-gap: 12px;
  align-items: center;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px 24px 24px;
}

.lp-process-card__num {
  grid-row: 1;
  grid-column: 1;
  align-self: center;
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--blue);
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  line-height: 1;
}

.lp-process-card h3 {
  grid-row: 1;
  grid-column: 2;
  align-self: center;
  font-size: 16px;
  margin: 0;
  line-height: 1.3;
}

.lp-process-card p {
  grid-row: 2;
  grid-column: 1 / -1;
  font-size: 14px;
  color: var(--muted);
  margin: 0;
  line-height: 1.5;
}

.lp-faq {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 32px;
}

.lp-faq details {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px 22px;
}

.lp-faq summary {
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
  list-style: none;
  font-family: var(--font-display);
}

.lp-faq summary::-webkit-details-marker {
  display: none;
}

.lp-faq details[open] summary {
  margin-bottom: 10px;
  color: var(--blue);
}

.lp-faq p {
  font-size: 14px;
  color: var(--muted);
  margin: 0;
  line-height: 1.55;
}

@media (min-width: 900px) {
  .lp-flow-track {
    flex-direction: row;
    align-items: stretch;
    gap: 8px;
  }

  .lp-flow-arrow {
    display: flex;
  }
}

@media (max-width: 960px) {
  .lp-hero,
  .lp-split {
    grid-template-columns: 1fr;
  }

  .lp-summary {
    order: -1;
  }

  .lp-card-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .lp-card-grid--five .lp-card {
    flex: 1 1 calc(50% - 10px);
    max-width: calc(50% - 10px);
    min-width: min(100%, 240px);
  }

  /* Lone card on last row (5 of 5) stays centred */
  .lp-card-grid--five .lp-card:nth-child(5):last-child {
    flex: 1 1 100%;
    max-width: min(100%, 480px);
    margin-inline: auto;
  }

  .lp-process-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .lp-section {
    padding: 56px 0;
  }

  .lp-card-grid {
    grid-template-columns: 1fr;
  }

  .lp-card-grid--five .lp-card {
    flex: 1 1 100%;
    max-width: 100%;
    min-width: 0;
  }

  .lp-platforms {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .lp-page-nav-wrap {
    padding: 10px 0 12px;
  }

  .lp-page-nav {
    flex-direction: column;
    align-items: stretch;
    flex-wrap: nowrap;
    overflow: visible;
    gap: 10px;
  }

  .lp-page-nav__label {
    display: block;
    margin: 0;
    padding: 0 2px;
    white-space: nowrap;
    letter-spacing: 0.1em;
    line-height: 1.3;
    width: auto;
    max-width: none;
  }

  .lp-page-nav__links {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    overflow: visible;
    padding: 0;
  }

  .lp-page-nav__links a {
    flex: 1 1 calc(50% - 4px);
    max-width: calc(50% - 4px);
    box-sizing: border-box;
    text-align: center;
    padding: 7px 10px;
    font-size: 13px;
  }

  .lp-section {
    scroll-margin-top: calc(var(--header-sticky-top) + 132px);
  }

  .lp-hero {
    padding: 72px 0 48px;
  }

  .lp-hero h1 {
    font-size: clamp(28px, 7.5vw, 42px);
  }

  .lp-hero .section-lead {
    font-size: 16px;
  }

  .lp-hero .btn-group {
    flex-direction: column;
    width: 100%;
  }

  .lp-hero .btn-group .btn {
    width: 100%;
    justify-content: center;
  }

  .lp-pills {
    justify-content: center;
  }

  .lp-outcome {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}

@media (max-width: 768px) {
  .lp-flow-track {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }

  .lp-flow-arrow {
    display: none !important;
  }

  .lp-flow-step {
    flex: none;
    width: 100%;
    max-width: 100%;
  }
}

/* ── RESPONSIVE ── */
@media (max-width: 960px) {
  .grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }
  .section {
    padding: 56px 0;
  }
  .cta-block {
    padding: 48px 28px;
  }

  .logo-img {
    height: 58px;
  }

  .logo-img--footer {
    height: 72px;
  }

  .nav {
    min-height: 80px;
    gap: 16px;
  }

  .legal-hero {
    padding: 64px 0 40px;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(1200px, calc(100% - 32px));
  }

  .grid-3,
  .grid-2 {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 48px 0;
  }

  .logo-img {
    height: 44px;
  }

  .logo-img--footer {
    height: 54px;
  }

  .nav {
    min-height: 72px;
    gap: 10px;
  }

  .nav-burger {
    display: flex;
  }

  .nav-links {
    display: none;
    position: fixed;
    top: 73px;
    left: 0;
    right: 0;
    max-height: min(70vh, calc(100dvh - 96px));
    overflow-y: auto;
    flex-direction: column;
    align-items: stretch;
    gap: 2px;
    margin: 0;
    padding: 12px min(24px, 5vw) 20px;
    background: color-mix(in srgb, var(--bg) 94%, transparent);
    backdrop-filter: blur(16px) saturate(160%);
    -webkit-backdrop-filter: blur(16px) saturate(160%);
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-lg);
    z-index: 99;
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links a {
    padding: 14px 16px;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 600;
  }

  .nav-dropdown {
    display: block;
  }

  .nav-dropdown__toggle {
    width: 100%;
    justify-content: space-between;
    padding: 14px 16px;
    font-size: 15px;
    font-weight: 600;
    border-radius: 12px;
  }

  .nav-dropdown__menu {
    position: static;
    display: none;
    min-width: 0;
    margin: 0 0 8px;
    padding: 0 8px 8px;
    background: transparent;
    border: none;
    box-shadow: none;
  }

  .nav-dropdown.is-open .nav-dropdown__menu {
    display: flex;
  }

  .nav-dropdown:hover .nav-dropdown__menu,
  .nav-dropdown:focus-within .nav-dropdown__menu {
    display: none;
  }

  .nav-dropdown.is-open:hover .nav-dropdown__menu,
  .nav-dropdown.is-open:focus-within .nav-dropdown__menu {
    display: flex;
  }

  .nav-dropdown__menu a {
    padding: 12px 16px;
    font-size: 14px;
  }

  .nav-right {
    gap: 8px;
    margin-left: auto;
  }

  .nav .logo-wrap {
    min-width: 0;
    max-width: min(52vw, 220px);
  }

  h1 {
    font-size: clamp(28px, 8vw, 36px);
    letter-spacing: -0.03em;
  }

  .highlight-block {
    padding: 28px;
  }

  header .nav-right .btn-primary {
    padding: 9px 12px;
    font-size: 12px;
  }

  .footer-inner {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 24px;
  }

  .footer-links {
    justify-content: center;
    gap: 10px 16px;
    font-size: 13px;
  }

  .social-icons {
    justify-content: center;
  }

  .section-header {
    margin-bottom: 32px;
  }

  .legal-hero {
    padding: 56px 0 36px;
  }

  .legal-layout {
    padding: 40px 0 64px;
  }

  .legal-notice {
    margin-left: 0;
    margin-right: 0;
  }

  .card {
    padding: 22px;
  }

  .cta-block {
    padding: 36px 22px;
  }

  .cta-block .btn,
  .hero-actions .btn,
  .btn-lg {
    width: 100%;
    justify-content: center;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-badge-row {
    justify-content: center;
  }

  .eyebrow-capacity {
    text-align: center;
    justify-content: center;
    font-size: 11px;
    line-height: 1.45;
  }

  .form-row {
    grid-template-columns: 1fr !important;
  }

  .page-hero .section-lead,
  .section-lead {
    font-size: 16px;
  }
}

/* ── PAGE TRANSITION ── */
body {
  animation: pageFade 0.4s ease;
}
@keyframes pageFade {
  from {
    opacity: 0;
    transform: translateY(6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  body {
    animation: none;
  }

  html {
    scroll-behavior: auto;
  }
}
/* Services page: prevent nav pills from blowing grid width on mobile */
@media (max-width: 960px) {
  .services-layout {
    grid-template-columns: minmax(0, 1fr) !important;
  }

  .services-layout > * {
    min-width: 0 !important;
    max-width: 100%;
  }

  .services-nav-outer {
    display: none !important;
  }

  .services-nav {
    flex-wrap: wrap;
    overflow: visible;
    min-width: 0;
    max-width: 100%;
  }

  .services-main {
    min-width: 0;
    max-width: 100%;
  }

  .service-header-left {
    position: static !important;
  }

  .service-header .grid-2 {
    grid-template-columns: minmax(0, 1fr) !important;
  }

  .service-header .grid-2 > * {
    min-width: 0;
  }
}

/* ── LEGAL PAGES (terms, privacy, cookies) ── */
.legal-hero {
  padding: 80px 0 48px;
  text-align: center;
  border-bottom: 1px solid var(--border);
}

.legal-hero .section-lead {
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
}

.legal-notice {
  max-width: 720px;
  margin: 24px auto 0;
  padding: 16px 20px;
  border-radius: var(--radius);
  background: var(--blue-light);
  border: 1px solid color-mix(in srgb, var(--blue) 18%, var(--border));
  font-size: 14px;
  line-height: 1.6;
  color: var(--text);
  text-align: left;
}

.legal-layout {
  display: grid;
  grid-template-columns: 240px minmax(0, 1fr);
  gap: 48px;
  padding: 56px 0 96px;
  align-items: start;
}

.legal-toc {
  position: sticky;
  top: calc(var(--header-sticky-top, 92px) + 16px);
  padding: 20px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.legal-toc__title {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--blue);
  margin: 0 0 14px;
}

.legal-toc ol {
  margin: 0;
  padding-left: 18px;
  font-size: 13px;
  line-height: 1.5;
}

.legal-toc li {
  margin-bottom: 8px;
}

.legal-toc a {
  color: var(--muted);
  text-decoration: none;
}

.legal-toc a:hover {
  color: var(--blue);
}

.legal-doc {
  max-width: 720px;
}

.legal-meta {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 32px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border);
}

.legal-doc section {
  margin-bottom: 40px;
  scroll-margin-top: 120px;
}

.legal-doc h2 {
  font-family: var(--font-display);
  font-size: clamp(20px, 2vw, 24px);
  font-weight: 800;
  color: var(--text);
  margin: 0 0 14px;
  line-height: 1.25;
}

.legal-doc h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
  margin: 22px 0 10px;
}

.legal-doc p,
.legal-doc li {
  font-size: 15px;
  line-height: 1.72;
  color: var(--muted);
  margin: 0 0 14px;
}

.legal-doc ul,
.legal-doc ol {
  margin: 0 0 14px;
  padding-left: 1.35em;
}

.legal-doc li {
  margin-bottom: 8px;
}

.legal-doc a {
  color: var(--blue);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.legal-doc a:hover {
  text-decoration: none;
}

.legal-doc strong {
  color: var(--text);
  font-weight: 600;
}

@media (max-width: 900px) {
  .legal-layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .legal-toc {
    position: static;
  }
}

/* ── COOKIE CONSENT BANNER ── */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 10000;
  padding: 16px;
  pointer-events: none;
}

.cookie-banner[hidden] {
  display: none !important;
}

.cookie-banner__panel {
  pointer-events: auto;
  max-width: 960px;
  margin: 0 auto;
  padding: 20px 22px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg, 0 12px 40px rgba(0, 0, 0, 0.12));
}

.cookie-banner__title {
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
  margin: 0 0 8px;
}

.cookie-banner__text {
  font-size: 13px;
  line-height: 1.55;
  color: var(--muted);
  margin: 0 0 14px;
}

.cookie-banner__text a {
  color: var(--blue);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.cookie-banner__prefs {
  margin: 14px 0 16px;
  padding: 14px;
  border-radius: var(--radius);
  background: var(--bg);
  border: 1px solid var(--border);
}

.cookie-banner__prefs[hidden] {
  display: none !important;
}

.cookie-banner__check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 10px;
  cursor: pointer;
}

.cookie-banner__check:last-child {
  margin-bottom: 0;
}

.cookie-banner__check input {
  margin-top: 3px;
  accent-color: var(--blue);
}

.cookie-banner__check input:disabled {
  cursor: not-allowed;
}

.cookie-banner__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.cookie-banner__actions .btn {
  font-size: 13px;
  padding: 10px 16px;
}

@media (max-width: 560px) {
  .cookie-banner__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .cookie-banner__actions .btn {
    width: 100%;
    justify-content: center;
  }
}
