@import url("./flettons-brand.css");
@import url("./flettons-icons.css");

:root {
  --navy: var(--fl-navy);
  --navy-strong: var(--fl-navy-dark);
  --pink: var(--fl-pink);
  --pink-strong: var(--fl-pink);
  --pink-soft: var(--fl-pink-soft-fill-mid);
  --green: #ff3088;
  --text: #12213e;
  --muted: var(--fl-muted-blue);
  --line: #e7ebf2;
  --line-strong: #d5dce8;
  --surface: #ffffff;
  --surface-soft: #f5f7fb;
  --surface-blue: #eef4fb;
  --shadow-soft: 0 22px 56px rgba(11, 27, 52, 0.08);
  --shadow-strong: 0 32px 80px rgba(8, 22, 45, 0.14);
  --radius-xl: 34px;
  --radius-lg: 26px;
  --radius-md: 20px;
  --radius-sm: 14px;
  --container: 1180px;
  --font-primary: "Inter", "Segoe UI", sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--text);
  background: var(--fl-gradient-soft);
  font-family: var(--font-primary);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input {
  font: inherit;
}

button {
  border: 0;
  background: transparent;
  color: inherit;
  cursor: pointer;
}

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

h1,
h2,
h3,
h4,
p,
ul {
  margin: 0;
}

ul {
  padding-left: 1.1rem;
}

:focus-visible {
  outline: 2px solid rgba(255, 48, 136, 0.7);
  outline-offset: 4px;
}

.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;
}

.container {
  width: min(calc(100% - 2rem), var(--container));
  margin: 0 auto;
}

.section {
  padding: 4.5rem 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(8, 23, 43, 0.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  min-height: 92px;
}

.brand {
  flex: 0 0 auto;
}

.brand img {
  width: 168px;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.75rem;
  flex: 1;
  min-width: 0;
}

.site-nav a {
  position: relative;
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.96rem;
  font-weight: 500;
  transition: color 0.2s ease;
}

.site-nav a:hover,
.site-nav a.is-current {
  color: #ffffff;
}

.site-nav a.is-current::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -0.55rem;
  height: 2px;
  border-radius: 999px;
  background: var(--pink);
}

.nav-caret {
  display: inline-block;
  width: 0.55rem;
  height: 0.55rem;
  margin-left: 0.35rem;
  border-right: 1.8px solid currentColor;
  border-bottom: 1.8px solid currentColor;
  transform: translateY(-0.12rem) rotate(45deg);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  flex: 0 0 auto;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  border-radius: 14px;
  font-weight: 700;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    background-color 0.2s ease,
    border-color 0.2s ease,
    color 0.2s ease;
}

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

.btn-sm {
  min-height: 50px;
  padding: 0 1.15rem;
  font-size: 0.95rem;
}

.btn-lg {
  min-height: 58px;
  padding: 0 1.45rem;
}

.btn-primary {
  background: var(--fl-gradient-button-primary);
  color: #ffffff;
  box-shadow: var(--fl-button-shadow);
}

.btn-primary:hover {
  box-shadow: var(--fl-button-shadow-hover);
}

.btn-outline {
  border: 1px solid rgba(255, 255, 255, 0.32);
  color: #ffffff;
}

.btn-outline:hover {
  border-color: rgba(255, 255, 255, 0.52);
}

.btn-secondary {
  border: 1px solid var(--line-strong);
  background: #ffffff;
  color: var(--navy);
}

.btn-secondary:hover {
  border-color: rgba(255, 48, 136, 0.3);
  color: var(--pink-strong);
}

.btn-outline-light {
  border: 1px solid rgba(255, 255, 255, 0.32);
  color: #ffffff;
}

.btn-icon {
  width: 18px;
  height: 18px;
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: 640px;
  padding: 5rem 0 4rem;
  background: var(--fl-header-gradient);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("../img/FAQ_HERO.png");
  background-size: cover;
  background-position: center right;
  background-repeat: no-repeat;
  z-index: 0;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      90deg,
      rgba(8, 23, 43, 0.88) 0%,
      rgba(8, 23, 43, 0.85) 28%,
      rgba(8, 23, 43, 0.74) 46%,
      rgba(8, 23, 43, 0.5) 62%,
      rgba(8, 23, 43, 0.2) 79%,
      rgba(8, 23, 43, 0.07) 100%
    ),
    linear-gradient(
      180deg,
      rgba(8, 23, 43, 0.16) 0%,
      rgba(8, 23, 43, 0.11) 54%,
      rgba(8, 23, 43, 0.32) 100%
    );
  z-index: 1;
}

.hero .container {
  position: relative;
  z-index: 2;
}

.breadcrumbs,
.eyebrow {
  display: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
  gap: 3.2rem;
  align-items: center;
}

.hero-copy {
  max-width: 42rem;
}

h1,
h2,
h3,
h4 {
  color: var(--navy);
  letter-spacing: -0.03em;
}

h1 {
  font-size: clamp(3.6rem, 7vw, 5.7rem);
  line-height: 0.98;
  font-weight: 900;
  color: #ffffff;
}

h1 span {
  display: block;
  margin-top: 0.45rem;
  color: var(--pink-strong);
}

.hero-text {
  max-width: 35rem;
  margin-top: 1.15rem;
  color: rgba(255, 255, 255, 0.84);
  font-size: 1.16rem;
}

.faq-search {
  position: relative;
  max-width: 520px;
  margin-top: 2.2rem;
}

.faq-search input {
  width: 100%;
  height: 60px;
  padding: 0 1rem 0 3.5rem;
  border: 1px solid var(--line-strong);
  border-radius: 16px;
  background: #ffffff;
  color: var(--text);
  box-shadow: 0 12px 28px rgba(11, 27, 52, 0.04);
}

.faq-search input::placeholder {
  color: #8e9bb1;
}

.search-icon {
  position: absolute;
  top: 50%;
  left: 1.1rem;
  width: 20px;
  height: 20px;
  transform: translateY(-50%);
  stroke: #70809c;
  fill: none;
  stroke-width: 1.8;
}

.search-feedback {
  margin-top: 0.95rem;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.97rem;
}

.hero-visual-wrap {
  position: relative;
  min-height: 400px;
}

.hero-visual {
  display: none;
}

.scene-blur {
  position: absolute;
  border-radius: 999px;
  filter: blur(2px);
}

.scene-blur-one {
  top: 1rem;
  left: 1.25rem;
  width: 110px;
  height: 110px;
  background: linear-gradient(135deg, rgba(26, 90, 50, 0.8), rgba(64, 124, 80, 0.45));
}

.scene-blur-two {
  top: 1.15rem;
  left: 6.7rem;
  width: 54px;
  height: 150px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.26);
}

.scene-surface {
  position: absolute;
  right: -1rem;
  bottom: -2.4rem;
  left: 1.25rem;
  height: 170px;
  border-radius: 22px 22px 0 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(228, 232, 239, 0.98));
  transform: rotate(3deg);
}

.scene-clipboard {
  position: absolute;
  right: 4.8rem;
  bottom: 1.6rem;
  width: 240px;
  height: 150px;
  border-radius: 16px;
  background:
    linear-gradient(180deg, #fbfcfe 0%, #e6ebf2 100%);
  border: 6px solid #444c57;
  box-shadow: 0 20px 30px rgba(8, 23, 43, 0.12);
  transform: rotate(5deg);
}

.scene-clipboard::before {
  content: "";
  position: absolute;
  top: -18px;
  left: 50%;
  width: 74px;
  height: 32px;
  border-radius: 12px;
  background: #252e38;
  transform: translateX(-50%);
}

.scene-house {
  position: absolute;
  left: 3.2rem;
  bottom: 2.8rem;
  width: 166px;
  height: 180px;
}

.scene-house-roof {
  position: absolute;
  top: 18px;
  left: 8px;
  width: 150px;
  height: 80px;
  background: linear-gradient(135deg, #f2dfc3 0%, #dfc59c 100%);
  clip-path: polygon(50% 0, 100% 64%, 88% 64%, 88% 100%, 62% 100%, 62% 75%, 38% 75%, 38% 100%, 12% 100%, 12% 64%, 0 64%);
  box-shadow: 0 10px 18px rgba(58, 39, 16, 0.18);
}

.scene-house-body {
  position: absolute;
  right: 8px;
  bottom: 0;
  left: 24px;
  height: 120px;
  padding-top: 1.6rem;
  border-radius: 8px 8px 12px 12px;
  background: linear-gradient(180deg, #e5c89a 0%, #d1ae77 100%);
  text-align: center;
  box-shadow: 0 16px 28px rgba(58, 39, 16, 0.22);
}

.scene-house-body span {
  display: block;
  color: #0d2443;
  font-size: 1.18rem;
  font-weight: 900;
  letter-spacing: -0.04em;
}

.scene-house-door {
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 26px;
  height: 44px;
  border-radius: 6px 6px 0 0;
  background: #a67444;
  transform: translateX(-50%);
}

.scene-mug {
  position: absolute;
  right: 5.4rem;
  bottom: 4.2rem;
  width: 160px;
  height: 172px;
  padding: 3.3rem 1.25rem 1.2rem;
  border-radius: 18px 18px 22px 22px;
  background: linear-gradient(180deg, #11233f 0%, #08162d 100%);
  box-shadow: 0 18px 36px rgba(8, 23, 43, 0.26);
  color: #ffffff;
  text-align: center;
}

.scene-mug-handle {
  position: absolute;
  top: 34px;
  right: -22px;
  width: 48px;
  height: 70px;
  border: 8px solid #11233f;
  border-left: 0;
  border-radius: 0 26px 26px 0;
}

.scene-mug strong {
  display: block;
  font-size: 1.95rem;
  font-weight: 900;
  line-height: 1;
}

.scene-mug span {
  display: block;
  margin-top: 0.35rem;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.72rem;
  line-height: 1.4;
}

.hero-help-card {
  position: absolute;
  right: 0;
  bottom: 0;
  width: min(100%, 330px);
  padding: 1.75rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 22px;
  background: rgba(8, 23, 43, 0.88);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.hero-help-icon {
  width: 58px;
  height: 58px;
  margin-bottom: 1rem;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: rgba(255, 48, 136, 0.12);
}

.hero-help-icon svg {
  width: 32px;
  height: 32px;
  fill: none;
  stroke: var(--pink-strong);
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hero-help-icon .accent,
.hero-help-icon .accent-dot {
  stroke: var(--pink-strong);
  fill: var(--pink-strong);
}

.hero-help-card h2 {
  font-size: 1.7rem;
  line-height: 1.12;
  color: #ffffff;
}

.hero-help-card p {
  margin-top: 0.7rem;
  color: rgba(255, 255, 255, 0.74);
}

.hero-help-btn {
  width: 100%;
  min-height: 52px;
  margin-top: 1rem;
}

.section-heading {
  margin-bottom: 1.75rem;
}

.section-heading--center {
  text-align: center;
}

.section-heading--center h2 {
  margin-inline: auto;
}

.section-heading h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
}

.topics-section {
  padding-top: 1rem;
  padding-bottom: 2rem;
}

.topics-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 1rem;
}

.topic-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  min-height: 146px;
  padding: 1.3rem 1rem;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 10px 30px rgba(11, 27, 52, 0.04);
  text-align: center;
}

.topic-card:hover,
.topic-card.is-active {
  border-color: rgba(255, 48, 136, 0.26);
  box-shadow: 0 18px 36px rgba(11, 27, 52, 0.08);
}

.topic-card strong {
  font-size: 1rem;
  line-height: 1.2;
}

.topic-card span {
  color: var(--muted);
  font-size: 0.94rem;
}

.topic-icon {
  display: grid;
  place-items: center;
  width: 60px;
  height: 60px;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(255, 48, 136, 0.08), rgba(255, 48, 136, 0.02));
}

.topic-icon img {
  width: 28px;
  height: 28px;
}

.faq-section {
  padding-top: 1rem;
}

.faq-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 1.3rem;
  align-items: start;
}

.faq-main {
  display: grid;
  gap: 1rem;
}

.faq-group {
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 16px 38px rgba(11, 27, 52, 0.05);
  overflow: hidden;
}

.faq-group-summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.35rem 1.45rem;
  list-style: none;
  cursor: pointer;
}

.faq-group-summary::-webkit-details-marker,
.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-group-summary h2 {
  font-size: clamp(1.45rem, 2vw, 1.9rem);
  font-weight: 900;
}

.faq-group-count {
  position: relative;
  padding-right: 1.5rem;
  color: var(--muted);
  font-size: 0.96rem;
}

.faq-group-count::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0.2rem;
  width: 0.55rem;
  height: 0.55rem;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: translateY(-70%) rotate(45deg);
  transition: transform 0.2s ease;
}

.faq-group[open] .faq-group-count::after {
  transform: translateY(-25%) rotate(-135deg);
}

.faq-group-body {
  padding: 0 1rem 1rem;
}

.faq-item {
  border-top: 1px solid #edf1f6;
}

.faq-item:first-child {
  border-top: 0;
}

.faq-item summary {
  position: relative;
  padding: 1.15rem 3rem 1.15rem 2.65rem;
  list-style: none;
  font-weight: 700;
  cursor: pointer;
  transition: color 0.2s ease;
}

.faq-item summary::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 1rem;
  width: 16px;
  height: 16px;
  background: var(--fl-bullet-on-light-bg) center / contain no-repeat;
  transform: translateY(-50%);
}

.faq-item summary::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 1rem;
  width: 0.55rem;
  height: 0.55rem;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: translateY(-70%) rotate(45deg);
  transition: transform 0.2s ease;
}

.faq-item[open] {
  margin: 0.3rem 0;
  border: 1px solid rgba(255, 48, 136, 0.18);
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(255, 48, 136, 0.05), rgba(255, 255, 255, 0.96));
}

.faq-item[open] summary {
  color: var(--navy);
}

.faq-item[open] summary::before {
  background: var(--fl-bullet-on-light-bg) center / contain no-repeat;
}

.faq-item[open] summary::after {
  transform: translateY(-25%) rotate(-135deg);
}

.faq-answer {
  padding: 0 1.2rem 1.25rem 2.65rem;
  color: var(--muted);
}

.faq-answer > * + * {
  margin-top: 0.8rem;
}

.faq-answer ul {
  color: var(--text);
  list-style: none;
  padding-left: 0;
}

.faq-answer li {
  position: relative;
  padding-left: 1.6rem;
}

.faq-answer li::before {
  content: "";
  position: absolute;
  top: 0.42em;
  left: 0;
  width: 14px;
  height: 14px;
  background: var(--fl-bullet-on-light-bg) center / contain no-repeat;
}

.faq-answer li + li {
  margin-top: 0.45rem;
}

.faq-sidebar {
  display: grid;
  gap: 1rem;
  position: sticky;
  top: 110px;
}

.sidebar-card {
  border-radius: 22px;
  border: 1px solid var(--line);
  background: #ffffff;
  box-shadow: 0 16px 38px rgba(11, 27, 52, 0.05);
}

.help-card {
  padding: 1.6rem;
  background: linear-gradient(180deg, #f4f8fd 0%, #e9f0fa 100%);
}

.sidebar-card-icon {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: rgba(255, 48, 136, 0.08);
}

.sidebar-card-icon img {
  width: 28px;
  height: 28px;
}

.help-card h2,
.rics-card h2 {
  margin-top: 1rem;
  font-size: 2rem;
  font-weight: 900;
  line-height: 1.05;
}

.help-card p,
.trust-card p,
.rics-card p {
  margin-top: 0.7rem;
  color: var(--muted);
}

.contact-list {
  display: grid;
  gap: 1rem;
  margin-top: 1.2rem;
}

.contact-list a {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
}

.contact-list img {
  width: 18px;
  height: 18px;
  margin-top: 0.2rem;
}

.contact-list span {
  display: grid;
  gap: 0.1rem;
}

.contact-list strong {
  color: var(--navy);
  font-size: 1rem;
}

.contact-list em {
  color: var(--pink-strong);
  font-style: normal;
  font-weight: 700;
}

.sidebar-btn {
  width: 100%;
  min-height: 52px;
  margin-top: 1.35rem;
}

.trust-card {
  padding: 1.4rem 1.5rem;
  background: linear-gradient(180deg, #eefaf5 0%, #e8f8f0 100%);
}

.trustindex-card {
  padding: 1rem;
  background: #ffffff;
  overflow: hidden;
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  flex-wrap: wrap;
}

.trust-star {
  color: var(--green);
  font-size: 1.9rem;
  line-height: 1;
}

.trust-badge strong {
  color: var(--navy);
  font-size: 1.5rem;
  font-weight: 900;
}

.trust-boxes {
  display: inline-flex;
  gap: 0.25rem;
}

.trust-boxes span {
  width: 18px;
  height: 18px;
  border-radius: 3px;
  background: var(--green);
}

.trust-card a,
.rics-card a {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-top: 0.8rem;
  color: var(--pink-strong);
  font-weight: 700;
}

.rics-card {
  padding: 1.5rem;
  background: var(--fl-header-gradient);
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.08);
}

.rics-card h2,
.rics-card p {
  color: #ffffff;
}

.rics-icon {
  width: 150px;
  height: auto;
  display: block;
  border-radius: 0;
  background: transparent;
}

.rics-icon img {
  width: 150px;
  height: auto;
  display: block;
}

.rics-card a {
  color: #ffffff;
}

.faq-empty-state {
  padding: 2rem;
  border: 1px dashed var(--line-strong);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.75);
  text-align: center;
}

.faq-empty-state h2 {
  font-size: 1.85rem;
  font-weight: 900;
}

.faq-empty-state p {
  margin-top: 0.6rem;
  color: var(--muted);
}

.faq-empty-state .btn {
  margin-top: 1rem;
  min-height: 52px;
  padding: 0 1.3rem;
}

.cta-section {
  padding-top: 2rem;
}

.cta-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 2.1rem 2.35rem;
  border-radius: 22px;
  background: var(--fl-header-gradient);
  color: #ffffff;
  box-shadow: var(--shadow-strong);
}

.cta-lead {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.cta-icon {
  flex: 0 0 auto;
  width: 84px;
  height: 84px;
  display: grid;
  place-items: center;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.05);
}

.cta-icon img {
  width: 40px;
  height: 40px;
  filter: brightness(0) invert(1);
}

.cta-lead h2 {
  color: #ffffff;
  font-size: 2.2rem;
  font-weight: 900;
}

.cta-lead p {
  margin-top: 0.55rem;
  color: rgba(255, 255, 255, 0.76);
}

.cta-actions {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  flex-wrap: wrap;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  margin-top: 1rem;
  border-radius: 0 0 22px 22px;
  background: #ffffff;
}

.trust-item {
  display: flex;
  align-items: flex-start;
  gap: 0.9rem;
  padding: 1.4rem 1.2rem;
}

.trust-item + .trust-item {
  border-left: 1px solid var(--line);
}

.trust-item strong {
  display: block;
  color: var(--navy);
  font-size: 1rem;
}

.trust-item span {
  display: block;
  margin-top: 0.2rem;
  color: var(--muted);
  font-size: 0.95rem;
}

.trust-item-icon {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: rgba(8, 23, 43, 0.04);
}

.trust-item-icon img,
.trust-item-icon svg {
  width: 21px;
  height: 21px;
}

.trust-item-icon svg {
  fill: none;
  stroke: var(--navy);
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.site-footer {
  margin-top: 4rem;
  padding: 4rem 0 2rem;
  background: var(--fl-header-gradient);
  color: rgba(255, 255, 255, 0.82);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1fr 1fr;
  gap: 1.5rem;
}

.footer-col h4 {
  margin-bottom: 0.95rem;
  color: #ffffff;
  font-size: 1rem;
  font-weight: 800;
}

.footer-brand-col p {
  max-width: 18rem;
  margin-top: 1rem;
}

.footer-brand img {
  width: 168px;
}

.footer-list {
  display: grid;
  gap: 0.7rem;
}

.footer-list a,
.footer-list span {
  color: rgba(255, 255, 255, 0.78);
}

.footer-list a:hover {
  color: #ffffff;
}

.footer-contact a,
.footer-contact span {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
}

.footer-contact img {
  width: 16px;
  height: 16px;
  filter: brightness(0) invert(1);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 2rem;
  padding-top: 1.4rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.93rem;
}

@media (max-width: 1220px) {
  .site-nav {
    gap: 1.1rem;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero-copy {
    max-width: 42rem;
  }

  .hero-visual-wrap {
    max-width: 760px;
  }

  .hero-help-card {
    right: 0;
  }

  .topics-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .faq-layout {
    grid-template-columns: minmax(0, 1fr);
  }

  .faq-sidebar {
    position: static;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .cta-band {
    flex-direction: column;
    align-items: flex-start;
  }

  .trust-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 980px) {
  .site-header {
    position: static;
  }

  .header-inner {
    flex-direction: column;
    padding: 1rem 0 1.25rem;
  }

  .site-nav {
    flex-wrap: wrap;
    gap: 1rem 1.25rem;
  }

  .header-actions {
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
  }

  .hero {
    padding-top: 1.5rem;
  }

  .hero-visual-wrap {
    min-height: 500px;
  }

  .hero-help-card {
    top: auto;
    right: 1rem;
    bottom: 1rem;
  }

  .faq-sidebar {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .container {
    width: min(calc(100% - 1.25rem), var(--container));
  }

  .brand img,
  .footer-brand img {
    width: 150px;
  }

  .site-nav {
    justify-content: flex-start;
  }

  .header-actions {
    align-items: stretch;
  }

  .header-actions .btn {
    width: 100%;
  }

  .breadcrumbs {
    flex-wrap: wrap;
  }

  .hero-text {
    font-size: 1rem;
  }

  .hero-visual-wrap {
    min-height: 0;
  }

  .hero-visual {
    min-height: 360px;
  }

  .scene-house {
    left: 1.2rem;
    bottom: 1.6rem;
    transform: scale(0.84);
    transform-origin: left bottom;
  }

  .scene-mug {
    right: 1.4rem;
    bottom: 2rem;
    transform: scale(0.82);
    transform-origin: right bottom;
  }

  .scene-clipboard {
    right: 0.7rem;
    bottom: 0.6rem;
    transform: rotate(4deg) scale(0.86);
    transform-origin: right bottom;
  }

  .hero-help-card {
    position: relative;
    right: auto;
    bottom: auto;
    width: 100%;
    margin-top: 1rem;
  }

  .topics-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .faq-group-summary {
    align-items: flex-start;
    flex-direction: column;
  }

  .faq-group-count {
    padding-right: 1.2rem;
  }

  .faq-item summary {
    padding-right: 2.5rem;
  }

  .faq-answer {
    padding-right: 1rem;
  }

  .cta-band {
    padding: 1.6rem;
  }

  .cta-lead {
    flex-direction: column;
    align-items: flex-start;
  }

  .cta-lead h2 {
    font-size: 1.9rem;
  }

  .cta-actions {
    width: 100%;
  }

  .cta-actions .btn {
    width: 100%;
  }

  .trust-strip {
    grid-template-columns: 1fr;
  }

  .trust-item + .trust-item {
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 540px) {
  .topics-grid {
    grid-template-columns: 1fr;
  }

  .faq-search input {
    height: 56px;
  }

  .faq-item summary {
    padding-left: 2.75rem;
  }

  .faq-answer {
    padding-left: 2.75rem;
  }
}

/* FAQ hero: match the homepage image-backed hero treatment. */
.faqs-page .hero {
  min-height: clamp(460px, calc(100svh - var(--fs-header-height, 92px) - 210px), 620px);
  padding: 64px 0 52px;
  background: var(--fl-header-gradient);
}

.faqs-page .hero::before {
  background-image: url("../img/FAQ_HERO.png");
  background-position: center right;
  opacity: 1;
}

.faqs-page .hero::after {
  background:
    linear-gradient(
      90deg,
      rgba(8, 23, 43, 0.89) 0%,
      rgba(8, 23, 43, 0.87) 28%,
      rgba(8, 23, 43, 0.81) 44%,
      rgba(8, 23, 43, 0.58) 58%,
      rgba(8, 23, 43, 0.2) 73%,
      rgba(8, 23, 43, 0.05) 100%
    ),
    linear-gradient(
      180deg,
      rgba(8, 23, 43, 0.14) 0%,
      rgba(8, 23, 43, 0.07) 55%,
      rgba(8, 23, 43, 0.32) 100%
    );
}

.faqs-page .hero .container {
  width: min(1460px, calc(100% - 64px));
}

.faqs-page .hero-grid {
  grid-template-columns: minmax(540px, 680px) 1fr;
  gap: 48px;
  min-height: 360px;
}

.faqs-page .hero-copy {
  max-width: 680px;
}

.faqs-page .breadcrumbs,
.faqs-page .hero .eyebrow {
  display: none;
}

.faqs-page .hero h1 {
  max-width: 10.5ch;
  color: #ffffff;
  font-size: clamp(58px, 5vw, 90px);
  line-height: 0.98;
  letter-spacing: 0;
}

.faqs-page .hero h1 span {
  color: var(--fl-pink);
}

.faqs-page .hero-text {
  max-width: 600px;
  margin-top: 24px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 1rem;
  line-height: 1.55;
}

.faqs-page .faq-search {
  max-width: 560px;
  margin-top: 34px;
}

.faqs-page .faq-search input {
  height: 64px;
  border: 0;
  border-radius: 16px;
  box-shadow: 0 20px 44px rgba(0, 0, 0, 0.22);
}

.faqs-page .search-icon {
  stroke: var(--fl-pink);
}

.faqs-page .search-feedback {
  color: rgba(255, 255, 255, 0.76);
}

.faqs-page .hero-visual-wrap {
  min-height: 360px;
}

.faqs-page .hero-visual {
  display: none;
}

.faqs-page .hero-help-card {
  right: 0;
  bottom: 0;
  width: min(360px, 100%);
  padding: 24px;
  border-radius: 22px;
  background: rgba(8, 23, 43, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 26px 64px rgba(0, 0, 0, 0.34);
}

.faqs-page .hero-help-card h2 {
  color: #ffffff;
  font-size: 1.25rem;
  line-height: 1.25;
  letter-spacing: 0;
}

.faqs-page .hero-help-card p {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.95rem;
}

.faqs-page .hero-help-btn {
  background: #ffffff;
  color: #08172b;
}

@media (max-width: 1220px) {
  .faqs-page .hero {
    min-height: auto;
    padding: 58px 0 48px;
  }

  .faqs-page .hero-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .faqs-page .hero-copy {
    max-width: 760px;
  }

  .faqs-page .hero-visual-wrap {
    min-height: 0;
    max-width: 760px;
  }

  .faqs-page .hero-help-card {
    position: relative;
    right: auto;
    bottom: auto;
    width: min(420px, 100%);
  }
}

@media (max-width: 760px) {
  .faqs-page .hero {
    padding: 44px 0 34px;
  }

  .faqs-page .hero::before {
    background-position: 64% center;
  }

  .faqs-page .hero::after {
    background:
      linear-gradient(
        180deg,
        rgba(8, 23, 43, 0.86) 0%,
        rgba(8, 23, 43, 0.85) 48%,
        rgba(8, 23, 43, 0.76) 100%
      );
  }

  .faqs-page .hero .container {
    width: calc(100% - 28px);
  }

  .faqs-page .hero h1 {
    font-size: clamp(42px, 13vw, 62px);
  }

  .faqs-page .hero-text {
    margin-top: 18px;
    font-size: 0.98rem;
  }

  .faqs-page .faq-search {
    margin-top: 26px;
  }

  .faqs-page .faq-search input {
    height: 58px;
  }
}
