/* Top10ukselection — deep navy, cyan accent, violet undertone */
:root {
  --bg-deep: #050810;
  --bg-panel: #0c1220;
  --bg-elevated: #111827;
  --glass-fill: rgba(148, 214, 255, 0.045);
  --glass-border: rgba(34, 211, 238, 0.22);
  --text: #e8f4fc;
  --text-muted: #8ba3b8;
  --accent: #22d3ee;
  --accent-dim: #06b6d4;
  --accent-glow: rgba(34, 211, 238, 0.35);
  --card-inner: rgba(8, 14, 24, 0.65);
  --card-text: #e8f4fc;
  --radius-lg: 22px;
  --radius-pill: 999px;
  --font-display: "Outfit", system-ui, sans-serif;
  --font-body: "Nunito Sans", system-ui, sans-serif;
  --shadow-soft: 0 20px 50px rgba(0, 0, 0, 0.45);
  --shadow-glow: 0 0 0 1px rgba(34, 211, 238, 0.12);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.02rem;
  line-height: 1.58;
  color: var(--text);
  background-color: var(--bg-deep);
  background-image:
    linear-gradient(
      168deg,
      rgba(5, 8, 16, 0.92) 0%,
      rgba(10, 18, 32, 0.88) 42%,
      rgba(4, 8, 18, 0.93) 100%
    ),
    radial-gradient(
      ellipse 85% 55% at 78% -8%,
      rgba(34, 211, 238, 0.09),
      transparent 52%
    ),
    radial-gradient(
      ellipse 65% 42% at 12% 22%,
      rgba(139, 92, 246, 0.07),
      transparent 48%
    ),
    url("../images/bg.png");
  background-size: auto, auto, auto, cover;
  background-position:
    0 0,
    0 0,
    0 0,
    center center;
  background-repeat: no-repeat;
  background-attachment: fixed, fixed, fixed, fixed;
  min-height: 100vh;
}

@media (max-width: 900px) {
  body {
    background-attachment: scroll, scroll, scroll, scroll;
  }
}

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

a {
  color: var(--accent);
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}

.container {
  width: min(1120px, 92vw);
  margin-inline: auto;
}

.site-header {
  padding: 1.1rem 0;
  border-bottom: 1px solid rgba(34, 211, 238, 0.14);
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(5, 8, 16, 0.9);
  backdrop-filter: blur(14px) saturate(1.2);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.02rem;
  letter-spacing: 0.02em;
  color: var(--text);
  text-decoration: none;
}
.brand:hover {
  text-decoration: none;
  color: var(--accent);
}
.brand img {
  width: 42px;
  height: 42px;
  object-fit: contain;
  border-radius: 14px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.35);
}

.nav-main {
  display: flex;
  flex-wrap: wrap;
  gap: 1.15rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-main a {
  color: var(--text-muted);
  font-weight: 600;
  font-size: 0.93rem;
}
.nav-main a:hover {
  color: var(--accent);
  text-decoration: none;
}

.hero {
  padding: 2.75rem 0 2.1rem;
  text-align: center;
}

.hero-date {
  font-family: var(--font-display);
  font-size: 0.78rem;
  color: var(--accent);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 0.85rem;
  opacity: 0.95;
}

.hero h1 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.5rem, 4.2vw, 2.45rem);
  line-height: 1.18;
  max-width: 940px;
  margin: 0 auto 1.6rem;
  color: var(--text);
  text-wrap: balance;
}

.filter-pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.55rem;
  margin-bottom: 0.5rem;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.48rem 1.05rem;
  border-radius: var(--radius-pill);
  background: var(--glass-fill);
  border: 1px solid var(--glass-border);
  color: var(--text-muted);
  font-size: 0.86rem;
  font-weight: 600;
  cursor: default;
  backdrop-filter: blur(8px);
}

.pill svg {
  width: 16px;
  height: 16px;
  opacity: 0.9;
  color: var(--accent);
}

.section-title {
  font-family: var(--font-display);
  font-size: 1.42rem;
  font-weight: 700;
  margin: 2.25rem 0 1rem;
  color: var(--text);
  letter-spacing: -0.02em;
}

.offers-table-wrap {
  overflow-x: auto;
  margin-bottom: 2rem;
}

.offers-head {
  display: grid;
  grid-template-columns: minmax(140px, 1.1fr) minmax(180px, 1.4fr) minmax(
      100px,
      0.7fr
    ) minmax(72px, 0.5fr) minmax(120px, 0.9fr);
  gap: 0.75rem;
  padding: 0.7rem 1.05rem;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

@media (max-width: 768px) {
  .offers-head {
    display: none;
  }
}

.offer-row {
  display: grid;
  grid-template-columns: minmax(140px, 1.1fr) minmax(180px, 1.4fr) minmax(
      100px,
      0.7fr
    ) minmax(72px, 0.5fr) minmax(120px, 0.9fr);
  gap: 0.85rem;
  align-items: center;
  padding: 1.05rem 1.15rem;
  background: var(--glass-fill);
  backdrop-filter: blur(12px);
  color: var(--card-text);
  border-radius: var(--radius-lg);
  margin-bottom: 0.9rem;
  box-shadow: var(--shadow-soft), var(--shadow-glow);
  position: relative;
  border: 1px solid var(--glass-border);
}

@media (max-width: 768px) {
  .offer-row {
    grid-template-columns: 1fr;
    text-align: center;
  }
}

.offer-row--stacked {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.7rem;
  text-align: center;
}
.offer-row--stacked .btn-cta {
  width: 100%;
  max-width: 220px;
}

.offer-row.featured {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
  background: linear-gradient(
    135deg,
    rgba(34, 211, 238, 0.08),
    var(--glass-fill)
  );
}

.sash {
  position: absolute;
  top: 0;
  left: 0;
  background: linear-gradient(120deg, var(--accent-dim), var(--accent));
  color: #1a0a02;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  padding: 0.38rem 2.6rem 0.38rem 0.8rem;
  clip-path: polygon(0 0, 100% 0, 88% 100%, 0 100%);
  border-radius: var(--radius-lg) 0 0 0;
}

.offer-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 0.65rem 1.1rem;
  background: var(--card-inner);
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.05),
    0 4px 18px rgba(0, 0, 0, 0.35);
}
.offer-logo img {
  max-height: 40px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.4));
}

.offer-row--stacked .offer-logo {
  width: 100%;
  max-width: 200px;
  min-height: 60px;
  padding: 0.75rem 1.25rem;
}

@media (max-width: 768px) {
  .offer-row:not(.offer-row--stacked) .offer-logo {
    margin-inline: auto;
    max-width: 240px;
    width: 100%;
  }
}

.offer-bonus-label {
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  margin-bottom: 0.25rem;
}
.offer-bonus-text {
  font-weight: 700;
  font-size: 0.97rem;
  color: var(--card-text);
}

.stars {
  color: #ffd166;
  font-size: 1.08rem;
  letter-spacing: 0.06em;
  text-shadow: 0 0 12px rgba(255, 209, 102, 0.25);
}

.score {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.7rem;
  color: var(--accent);
}

.btn-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.78rem 1.2rem;
  border-radius: var(--radius-pill);
  background: linear-gradient(165deg, var(--accent) 0%, var(--accent-dim) 100%);
  color: #1a0a02 !important;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.8rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  text-decoration: none !important;
  box-shadow: 0 6px 24px var(--accent-glow);
  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease;
}
.btn-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 32px var(--accent-glow);
  text-decoration: none !important;
}

.banner-special {
  display: flex;
  align-items: stretch;
  margin: 2.1rem 0;
  border-radius: var(--radius-lg);
  background: linear-gradient(
    145deg,
    rgba(35, 22, 48, 0.95),
    rgba(20, 14, 32, 0.98)
  );
  border: 1px solid rgba(34, 211, 238, 0.35);
  box-shadow:
    0 24px 48px rgba(0, 0, 0, 0.4),
    0 0 40px rgba(34, 211, 238, 0.06);
  overflow: hidden;
  min-height: 100px;
}

.banner-special__brand {
  flex: 0 0 22%;
  min-width: 132px;
  max-width: 200px;
  background: linear-gradient(180deg, #2a1528 0%, #140c18 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 1rem 0.85rem;
}

.banner-special__ribbon {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  padding: 0.35rem 1.15rem 0.35rem 0.5rem;
  font-size: 0.55rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #1a0a02;
  background: linear-gradient(135deg, #22d3ee 0%, #06b6d4 50%, #8b5cf6 100%);
  clip-path: polygon(
    0 0,
    calc(100% - 8px) 0,
    100% 50%,
    calc(100% - 8px) 100%,
    0 100%
  );
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
  line-height: 1.2;
}

.banner-special__brand .offer-logo {
  background: transparent;
  border: none;
  box-shadow: none;
  min-height: 0;
  padding: 0.35rem 0.5rem;
  margin-top: 0.55rem;
}

.banner-special__brand .offer-logo img {
  filter: none;
  max-height: 46px;
}

.banner-special__main {
  flex: 1;
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.9rem 1.3rem;
  background: transparent;
}

.banner-special__content {
  text-align: center;
  width: 100%;
  max-width: 540px;
}

.banner-special__label {
  margin: 0 0 0.4rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.banner-special__row {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.7rem 1.2rem;
}

.banner-special__promo {
  margin: 0;
  font-size: clamp(0.95rem, 2.2vw, 1.12rem);
  font-weight: 800;
  color: var(--text);
  line-height: 1.28;
}

.banner-special__rating {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.12rem;
}

.banner-special__stars {
  color: #ffd166;
  font-size: 1.02rem;
  letter-spacing: 0.07em;
  line-height: 1;
}

.banner-special__votes {
  font-size: 0.64rem;
  color: var(--text-muted);
  font-weight: 500;
}

.banner-special__score {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.3rem);
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
}

.banner-special__cta-wrap {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 1.4rem;
  background: rgba(0, 0, 0, 0.15);
}

.banner-special .banner-special__cta {
  background: linear-gradient(165deg, #fbbf24 0%, #d97706 100%);
  color: #1a0a02 !important;
  text-shadow: none;
  box-shadow:
    0 4px 0 #92400e,
    0 12px 28px rgba(217, 119, 6, 0.35);
  border-radius: 14px;
  padding: 0.82rem 1.4rem;
  font-size: 0.76rem;
  letter-spacing: 0.08em;
  white-space: nowrap;
}

.banner-special .banner-special__cta:hover {
  box-shadow:
    0 4px 0 #92400e,
    0 14px 34px rgba(217, 119, 6, 0.45);
}

@media (max-width: 720px) {
  .banner-special {
    flex-direction: column;
    align-items: stretch;
  }

  .banner-special__brand {
    max-width: none;
    flex: none;
    min-height: 104px;
    padding: 1.2rem 1rem 1rem;
  }

  .banner-special__ribbon {
    font-size: 0.5rem;
  }

  .banner-special__main {
    padding: 1rem 1rem 0.5rem;
  }

  .banner-special__row {
    flex-direction: column;
    gap: 0.55rem;
  }

  .banner-special__cta-wrap {
    padding: 0.75rem 1rem 1.2rem;
    background: transparent;
  }

  .banner-special .banner-special__cta {
    width: 100%;
    max-width: 280px;
  }
}

.subsection-grid {
  display: grid;
  gap: 0.9rem;
}

@media (min-width: 600px) {
  .subsection-grid.two {
    grid-template-columns: repeat(2, 1fr);
  }
  .subsection-grid.three {
    grid-template-columns: repeat(3, 1fr);
  }
}

.post-offers-legal {
  margin-top: 1.25rem;
  padding: 2.4rem 0 1rem;
  border-top: 1px solid rgba(34, 211, 238, 0.12);
}

.post-offers-legal__title {
  font-family: var(--font-display);
  font-size: clamp(1.08rem, 2.5vw, 1.38rem);
  font-weight: 700;
  color: var(--text);
  margin: 0 0 1.3rem;
  letter-spacing: -0.01em;
  max-width: 920px;
}

.post-offers-legal__body p {
  font-size: 0.8rem;
  line-height: 1.72;
  color: var(--text-muted);
  max-width: 920px;
  margin: 0 0 1.08rem;
}

.post-offers-legal__body p:last-child {
  margin-bottom: 0;
}

.post-offers-legal__body a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.post-offers-legal__body a:hover {
  color: #a5f3fc;
}

.site-footer {
  margin-top: 2.25rem;
  padding: 2.5rem 0 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  background: #08050c;
}

.footer-disclaimer {
  font-size: 0.78rem;
  line-height: 1.68;
  color: var(--text-muted);
  max-width: 900px;
  margin-bottom: 1.8rem;
}

.footer-trust {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1rem 1.5rem;
  margin-bottom: 1.8rem;
}

.footer-trust a {
  display: flex;
  align-items: center;
  opacity: 0.86;
  transition: opacity 0.2s;
}
.footer-trust a:hover {
  opacity: 1;
  text-decoration: none;
}

.footer-trust img {
  max-height: 36px;
  width: auto;
  object-fit: contain;
}

.badge-18 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  min-height: 44px;
  border-radius: 50%;
  border: 2px solid var(--accent);
  color: var(--accent);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.74rem;
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 1.3rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  font-size: 0.86rem;
  color: var(--text-muted);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem;
}
.footer-links a {
  color: var(--text-muted);
}
.footer-links a:hover {
  color: var(--accent);
}

.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(4, 2, 8, 0.9);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.28s,
    visibility 0.28s;
}
.modal-backdrop.is-open {
  opacity: 1;
  visibility: visible;
}

#ageBackdrop.is-open,
#ageDenied.is-open {
  z-index: 2100;
}
#captchaBackdrop.is-open {
  z-index: 2050;
}

.modal-panel {
  background: var(--bg-panel);
  border: 1px solid rgba(34, 211, 238, 0.28);
  border-radius: var(--radius-lg);
  padding: 1.85rem;
  max-width: 420px;
  width: 100%;
  box-shadow:
    var(--shadow-soft),
    0 0 60px rgba(34, 211, 238, 0.06);
}

.modal-panel.wide {
  max-width: 420px;
}

.modal-brand {
  text-align: center;
  margin-bottom: 1rem;
}
.modal-brand img {
  width: 64px;
  height: 64px;
  margin-inline: auto;
  border-radius: 16px;
  object-fit: contain;
}

.modal-panel h2 {
  font-family: var(--font-display);
  font-size: 1.22rem;
  margin: 0 0 0.8rem;
  text-align: center;
}

.modal-panel p {
  color: var(--text-muted);
  font-size: 0.93rem;
  margin: 0 0 1rem;
}

.modal-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  justify-content: center;
  margin-top: 1.3rem;
}

.btn-secondary {
  padding: 0.68rem 1.28rem;
  border-radius: var(--radius-pill);
  background: transparent;
  border: 1px solid var(--text-muted);
  color: var(--text);
  font-weight: 600;
  cursor: pointer;
  font-family: inherit;
}
.btn-secondary:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.captcha-modal .modal-panel {
  max-width: 380px;
}

.captcha-stage {
  position: relative;
  width: 100%;
  max-width: 320px;
  margin: 0 auto 1rem;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(34, 211, 238, 0.35);
}

#captchaCanvas {
  display: block;
  width: 100%;
  height: auto;
  vertical-align: middle;
}

.captcha-slider-wrap {
  margin-top: 0.8rem;
}

.captcha-slider-wrap label {
  display: block;
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-bottom: 0.38rem;
}

.captcha-slider-wrap input[type="range"] {
  width: 100%;
  accent-color: var(--accent);
}

.captcha-hint {
  font-size: 0.78rem;
  color: var(--accent);
  text-align: center;
  margin-top: 0.55rem;
}

.captcha-error {
  color: #fb923c;
  font-size: 0.84rem;
  text-align: center;
  margin-top: 0.5rem;
  min-height: 1.25rem;
}

.cookie-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1500;
  background: var(--bg-panel);
  border-top: 1px solid rgba(34, 211, 238, 0.22);
  padding: 1.05rem 1.3rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  transform: translateY(100%);
  transition: transform 0.38s ease;
}
.cookie-bar.is-visible {
  transform: translateY(0);
}

.cookie-bar img {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  object-fit: contain;
  flex-shrink: 0;
}

.cookie-text {
  flex: 1;
  min-width: 200px;
  max-width: 560px;
  font-size: 0.86rem;
  color: var(--text-muted);
}

.cookie-actions {
  display: flex;
  gap: 0.55rem;
}

.page-main {
  padding: 2.1rem 0 3rem;
}
.page-main h1 {
  font-family: var(--font-display);
  font-size: 2.05rem;
  font-weight: 700;
  margin-bottom: 0.55rem;
  letter-spacing: -0.02em;
}
.page-main .lead {
  color: var(--text-muted);
  margin-bottom: 2rem;
}
.page-main h2 {
  font-family: var(--font-display);
  font-size: 1.22rem;
  margin-top: 2rem;
  margin-bottom: 0.78rem;
}
.page-main p,
.page-main li {
  color: var(--text-muted);
  max-width: 720px;
}
.page-main ul {
  padding-left: 1.25rem;
}

.page-main dl {
  margin: 0 0 1.5rem;
  max-width: 720px;
}
.page-main dt {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--text);
  margin-top: 1.15rem;
}
.page-main dt:first-child {
  margin-top: 0;
}
.page-main dd {
  margin: 0.4rem 0 0;
  padding: 0;
}

.post-offers-legal__body ul.legal-tight {
  margin: 0 0 1.15rem;
  padding-left: 1.1rem;
  max-width: 920px;
  font-size: 0.8rem;
  line-height: 1.65;
  color: var(--text-muted);
}
.post-offers-legal__body ul.legal-tight li {
  margin-bottom: 0.45rem;
}

.contact-form {
  max-width: 480px;
  display: grid;
  gap: 1rem;
  margin-top: 1.5rem;
}
.contact-form label {
  display: block;
  font-weight: 600;
  font-size: 0.88rem;
  margin-bottom: 0.38rem;
  color: var(--text);
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.68rem 0.9rem;
  border-radius: 14px;
  border: 1px solid rgba(34, 211, 238, 0.28);
  background: var(--bg-elevated);
  color: var(--text);
  font-family: inherit;
}
.contact-form textarea {
  min-height: 140px;
  resize: vertical;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  max-width: 800px;
  margin-top: 1.25rem;
}

.faq-item {
  border-radius: 16px;
  border: 1px solid rgba(34, 211, 238, 0.18);
  background: var(--glass-fill);
  backdrop-filter: blur(10px);
  overflow: hidden;
}

.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.15rem;
  margin: 0;
  border: none;
  background: transparent;
  color: var(--text);
  font-family: var(--font-display);
  font-size: 0.98rem;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  transition: background 0.2s;
}

.faq-q:hover {
  background: rgba(34, 211, 238, 0.06);
}

.faq-q[aria-expanded="true"] {
  background: rgba(34, 211, 238, 0.08);
}

.faq-icon {
  flex-shrink: 0;
  width: 1.75rem;
  height: 1.75rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  border: 1px solid rgba(34, 211, 238, 0.35);
  color: var(--accent);
  font-size: 1.15rem;
  font-weight: 700;
  line-height: 1;
  transition: transform 0.25s ease;
}

.faq-q[aria-expanded="true"] .faq-icon {
  transform: rotate(45deg);
}

.faq-panel {
  padding: 0 1.15rem 1.05rem;
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.62;
}

.faq-panel[hidden] {
  display: none;
}

.faq-panel p {
  margin: 0 0 0.65rem;
  max-width: none;
}

.faq-panel p:last-child {
  margin-bottom: 0;
}

/* Editorial typography — distinct copy shape */
.prose-callout {
  color: var(--text-muted);
  max-width: 720px;
  margin: -0.5rem 0 1.35rem;
  font-size: 0.95rem;
  line-height: 1.68;
  padding: 1rem 1.15rem 1rem 1.25rem;
  border-left: 3px solid var(--accent);
  background: rgba(34, 211, 238, 0.04);
  border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
}

.guide-dossier {
  margin: 0;
  max-width: 760px;
}

.guide-dossier dt {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  margin-top: 1.65rem;
  padding-top: 1.35rem;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.guide-dossier dt:first-of-type {
  margin-top: 0.5rem;
  padding-top: 0;
  border-top: none;
}

.guide-dossier dd {
  margin: 0.55rem 0 0;
  padding: 0 0 0 0.15rem;
  color: var(--text-muted);
  font-size: 0.98rem;
  line-height: 1.66;
  max-width: 760px;
}

.guide-dossier dd strong {
  color: var(--text);
  font-weight: 700;
}

.link-cta-row {
  margin-top: 1.35rem;
  font-size: 0.95rem;
}

.link-cta-row a {
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid rgba(34, 211, 238, 0.45);
  padding-bottom: 2px;
  transition:
    border-color 0.2s ease,
    color 0.2s ease;
}

.link-cta-row a:hover {
  border-bottom-color: var(--accent);
  color: #a5f3fc;
}

.page-main .lead {
  font-size: 1.05rem;
  line-height: 1.62;
  max-width: 680px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  padding-bottom: 1.25rem;
}

.footer-disclaimer {
  font-variant-numeric: tabular-nums;
}

.footer-disclaimer::first-line {
  color: var(--text);
  font-weight: 600;
}
