/* ═══════════════════════════════════════════════════
   HERO — DARK
═══════════════════════════════════════════════════ */
.fq-hero {
  position: relative;
  background: var(--black);
  overflow: hidden;
  padding: 96px 0 88px;
}
.fq-hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      ellipse 55% 80% at 60% 50%,
      rgba(200, 16, 46, 0.15) 0%,
      transparent 65%
    ),
    radial-gradient(
      ellipse 25% 35% at 3% 85%,
      rgba(200, 16, 46, 0.06) 0%,
      transparent 50%
    );
}
.fq-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.022) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.022) 1px, transparent 1px);
  background-size: 52px 52px;
}
.fq-line {
  position: absolute;
  top: 0;
  width: 1px;
  height: 100%;
}
.fq-line.l1 {
  right: 28%;
  background: linear-gradient(
    to bottom,
    transparent,
    rgba(200, 16, 46, 0.22),
    transparent
  );
}
.fq-line.l2 {
  right: 46%;
  background: linear-gradient(
    to bottom,
    transparent,
    rgba(255, 255, 255, 0.04),
    transparent
  );
}

/* question mark decorative */
.fq-deco {
  position: absolute;
  right: 3%;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--font-display);
  font-size: 28rem;
  font-weight: 900;
  color: rgba(200, 16, 46, 0.04);
  line-height: 1;
  pointer-events: none;
  user-select: none;
}

.fq-hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 68px;
  align-items: center;
}

.hero-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(200, 16, 46, 0.14);
  border: 1px solid rgba(200, 16, 46, 0.28);
  color: #ff8090;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 22px;
}
.hero-label::before {
  content: "";
  width: 6px;
  height: 6px;
  background: var(--red);
  border-radius: 50%;
  animation: dotPulse 2s infinite;
}
@keyframes dotPulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.6);
    opacity: 0.5;
  }
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.3rem, 4vw, 3.5rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.06;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}
.hero-title em {
  color: var(--red);
  font-style: italic;
  display: block;
}
.hero-sub {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.55);
  max-width: 480px;
  line-height: 1.86;
  margin-bottom: 36px;
}
.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.hero-stats {
  display: flex;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 9px;
  overflow: hidden;
}
.hero-stat {
  flex: 1;
  padding: 14px 20px;
  text-align: center;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
}
.hero-stat:last-child {
  border-right: none;
}
.hs-num {
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
}
.hs-lbl {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.4);
  margin-top: 4px;
}

/* hero right — FAQ stats card */
.fq-hero-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.45);
  position: relative;
  z-index: 2;
}
.fq-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 22px;
}
.fq-card-eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
}
.fq-card-badge {
  display: flex;
  align-items: center;
  gap: 5px;
  background: rgba(74, 222, 128, 0.12);
  color: #4ade80;
  font-size: 11.5px;
  font-weight: 700;
  padding: 3px 9px;
  border-radius: 5px;
}

.fq-categories-mini {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 22px;
}
.fqcm-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 11px 14px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 8px;
  transition: var(--tr);
  cursor: default;
}
.fqcm-row:hover {
  background: rgba(200, 16, 46, 0.08);
  border-color: rgba(200, 16, 46, 0.2);
}
.fqcm-icon {
  width: 32px;
  height: 32px;
  background: rgba(200, 16, 46, 0.12);
  border-radius: 7px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--red);
  font-size: 13px;
  flex-shrink: 0;
}
.fqcm-name {
  font-size: 13px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.75);
  flex: 1;
}
.fqcm-count {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.35);
  font-weight: 600;
}
.fqcm-bar-bg {
  width: 80px;
  height: 4px;
  background: rgba(255, 255, 255, 0.07);
  border-radius: 2px;
  overflow: hidden;
}
.fqcm-bar {
  height: 100%;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--red-dark), var(--red));
  width: 0;
  transition: width 1.4s cubic-bezier(0.4, 0, 0.2, 1) 0.6s;
}
.fqcm-bar.anim {
  width: var(--w);
}

.fq-hero-footer {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.fq-metric {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 8px;
  padding: 12px 14px;
}
.fqm-lbl {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.38);
  margin-bottom: 3px;
}
.fqm-val {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--white);
}

/* float */
.fq-float {
  position: absolute;
  background: var(--white);
  border-radius: 10px;
  padding: 13px 17px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.18);
  z-index: 3;
  animation: floatY 4s ease-in-out infinite;
}
.fq-float.f1 {
  top: -20px;
  right: -20px;
}
.fq-float.f2 {
  bottom: -16px;
  left: -16px;
  animation-delay: 1.8s;
}
@keyframes floatY {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}
.ff-lbl {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 1.3px;
  color: var(--gray-500);
  margin-bottom: 4px;
}
.ff-val {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--black);
  line-height: 1;
}
.ff-val span {
  color: var(--red);
  font-size: 12px;
}
.ff-sub {
  font-size: 11px;
  color: var(--gray-500);
  margin-top: 3px;
}

/* ═══════════════════════════════════════════════════
   SEARCH BAR
═══════════════════════════════════════════════════ */
.fq-search-bar {
  background: var(--gray-50);
  border-bottom: 1px solid var(--gray-200);
  padding: 28px 0;
}
.search-inner {
  display: flex;
  align-items: center;
  gap: 16px;
  max-width: 720px;
  margin: 0 auto;
}
.search-box {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--white);
  border: 2px solid var(--gray-200);
  border-radius: 10px;
  padding: 12px 20px;
  transition: border-color var(--tr);
}
.search-box:focus-within {
  border-color: var(--red);
  box-shadow: 0 0 0 4px rgba(200, 16, 46, 0.08);
}
.search-box i {
  color: var(--gray-400);
  font-size: 16px;
  flex-shrink: 0;
}
.search-box input {
  border: none;
  outline: none;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--gray-700);
  background: transparent;
  width: 100%;
}
.search-box input::placeholder {
  color: var(--gray-400);
}
.search-popular {
  font-size: 12.5px;
  color: var(--gray-400);
  white-space: nowrap;
}
.search-popular span {
  color: var(--red);
  font-weight: 600;
  cursor: pointer;
  transition: color var(--tr);
}
.search-popular span:hover {
  color: var(--red-dark);
}

/* ═══════════════════════════════════════════════════
   CATEGORY TABS (sticky)
═══════════════════════════════════════════════════ */
.fq-cats {
  background: var(--white);
  border-bottom: 2px solid var(--gray-100);
  padding: 0;
  position: sticky;
  top: 0;
  z-index: 50;
}
.cats-inner {
  display: flex;
  gap: 0;
  overflow-x: auto;
  scrollbar-width: none;
}
.cats-inner::-webkit-scrollbar {
  display: none;
}
.cat-tab {
  padding: 18px 22px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--gray-500);
  border: none;
  background: none;
  cursor: pointer;
  transition: var(--tr);
  white-space: nowrap;
  border-bottom: 3px solid transparent;
  margin-bottom: -2px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.cat-tab:hover {
  color: var(--red);
}
.cat-tab.active {
  color: var(--red);
  border-bottom-color: var(--red);
}
.cat-tab .cat-count {
  background: var(--red-light);
  color: var(--white);
  font-size: 10.5px;
  font-weight: 700;
  padding: 2px 7px;
  border-radius: 100px;
}
.cat-tab.active .cat-count {
  background: var(--red);
  color: white;
}

/* ═══════════════════════════════════════════════════
   FAQ MAIN CONTENT
═══════════════════════════════════════════════════ */
.fq-main {
  background: var(--white);
}
.fq-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 48px;
  align-items: start;
}

/* Left sidebar */
.fq-sidebar {
  position: sticky;
  top: 120px;
}
.sidebar-title {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gray-400);
  margin-bottom: 14px;
}
.sidebar-nav {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.snav-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 8px;
  font-size: 13.5px;
  color: var(--gray-600);
  cursor: pointer;
  transition: var(--tr);
  border: 1px solid transparent;
}
.snav-item:hover {
  background: var(--gray-50);
  color: var(--red);
}
.snav-item.active {
  background: var(--red-light);
  color: var(--white);
  border-color: rgba(200, 16, 46, 0.15);
  font-weight: 600;
}
.snav-icon {
  width: 28px;
  height: 28px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  background: var(--gray-100);
  color: var(--gray-500);
  flex-shrink: 0;
  transition: var(--tr);
}
.snav-item.active .snav-icon {
  background: var(--red);
  color: white;
}
.snav-count {
  margin-left: auto;
  font-size: 11px;
  color: var(--gray-400);
  font-weight: 700;
}

/* Sidebar CTA box */
.sidebar-cta {
  margin-top: 28px;
  background: linear-gradient(135deg, var(--black), #1a0508);
  border-radius: var(--radius-md);
  padding: 22px;
  text-align: center;
}
.scta-icon {
  width: 48px;
  height: 48px;
  background: rgba(200, 16, 46, 0.15);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 20px;
  margin: 0 auto 14px;
}
.scta-title {
  font-size: 14px;
  font-weight: 700;
  color: white;
  margin-bottom: 6px;
}
.scta-desc {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.6;
  margin-bottom: 16px;
}

/* FAQ sections */
.fq-section {
  margin-bottom: 56px;
}
.fqs-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 28px;
  padding-bottom: 16px;
  border-bottom: 2px solid var(--gray-100);
}
.fqs-icon {
  width: 44px;
  height: 44px;
  background: var(--red-light);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 18px;
  flex-shrink: 0;
}
.fqs-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--black);
}
.fqs-count {
  font-size: 12px;
  color: var(--gray-400);
  font-weight: 600;
  margin-left: auto;
  background: var(--gray-50);
  padding: 3px 10px;
  border-radius: 100px;
}

/* Individual FAQ item */
.faq-item {
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  margin-bottom: 10px;
  overflow: hidden;
  transition:
    border-color var(--tr),
    box-shadow var(--tr);
}
.faq-item:hover {
  border-color: var(--gray-300);
}
.faq-item.open {
  border-color: var(--red);
  box-shadow: 0 4px 20px rgba(200, 16, 46, 0.08);
}
.faq-btn {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 20px;
  cursor: pointer;
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  font-family: var(--font-body);
  transition: background var(--tr);
}
.faq-btn:hover {
  background: var(--gray-50);
}
.faq-item.open .faq-btn {
  background: rgba(200, 16, 46, 0.03);
}
.faq-q-num {
  font-size: 11px;
  font-weight: 700;
  color: var(--gray-300);
  flex-shrink: 0;
  font-family: var(--font-display);
  width: 20px;
}
.faq-item.open .faq-q-num {
  color: var(--red);
}
.faq-q-text {
  font-size: 14.5px;
  font-weight: 600;
  color: var(--black);
  flex: 1;
  line-height: 1.4;
  transition: color var(--tr);
}
.faq-item.open .faq-q-text {
  color: var(--red);
}
.faq-icon-wrap {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1.5px solid var(--gray-200);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--red);
  font-size: 11px;
  flex-shrink: 0;
  transition: all var(--tr);
}
.faq-item.open .faq-icon-wrap {
  background: var(--red);
  border-color: var(--red);
  color: white;
  transform: rotate(45deg);
}
.faq-answer-wrap {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.faq-item.open .faq-answer-wrap {
  max-height: 600px;
}
.faq-answer {
  padding: 0 20px 20px 54px;
  font-size: 14px;
  color: var(--gray-600);
  line-height: 1.85;
}
.faq-answer p {
  margin-bottom: 10px;
}
.faq-answer p:last-child {
  margin-bottom: 0;
}
.faq-answer ul {
  margin: 8px 0 8px 18px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.faq-answer ul li {
  font-size: 13.5px;
  color: var(--gray-600);
}
.faq-answer ul li::before {
  content: "→";
  color: var(--red);
  margin-right: 6px;
  font-size: 12px;
}
.faq-answer strong {
  color: var(--black);
  font-weight: 600;
}
.faq-answer-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 20px 16px 54px;
  border-top: 1px solid var(--gray-100);
  margin-top: 4px;
}
.faq-helpful {
  font-size: 12.5px;
  color: var(--gray-400);
}
.faq-helpful-btns {
  display: flex;
  gap: 8px;
  margin-top: 4px;
}
.helpful-btn {
  padding: 4px 12px;
  border-radius: 5px;
  font-size: 12px;
  font-weight: 600;
  border: 1px solid var(--gray-200);
  background: none;
  cursor: pointer;
  transition: var(--tr);
  display: flex;
  align-items: center;
  gap: 5px;
  color: var(--gray-500);
}
.helpful-btn:hover.yes {
  border-color: var(--red);
  color: var(--red);
  background: rgba(22, 163, 74, 0.06);
}
.helpful-btn:hover.no {
  border-color: var(--red);
  color: var(--white);
  background: var(--red-light);
}
.faq-read-more {
  font-size: 12.5px;
  font-weight: 700;
  color: var(--red);
  display: flex;
  align-items: center;
  gap: 5px;
  transition: gap var(--tr);
}
.faq-read-more:hover {
  gap: 8px;
  color: var(--red);
}

/* ═══════════════════════════════════════════════════
   POPULAR QUESTIONS STRIP
═══════════════════════════════════════════════════ */
.fq-popular {
  background: var(--gray-50);
  padding: 52px 0;
}
.popular-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 14px;
}
.popular-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  padding: 22px;
  cursor: pointer;
  transition: var(--tr);
  position: relative;
  overflow: hidden;
}
.popular-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--tr);
}
.popular-card:hover {
  border-color: var(--red);
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}
.popular-card:hover::before {
  transform: scaleX(1);
}
.pc-cat {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 8px;
}
.pc-q {
  font-size: 14px;
  font-weight: 700;
  color: var(--black);
  line-height: 1.38;
  margin-bottom: 10px;
  transition: color var(--tr);
}
.popular-card:hover .pc-q {
  color: var(--red);
}
.pc-link {
  font-size: 12.5px;
  font-weight: 700;
  color: var(--red);
  display: flex;
  align-items: center;
  gap: 5px;
  transition: gap var(--tr);
}
.popular-card:hover .pc-link {
  gap: 8px;
  color: var(--red);
}

/* ═══════════════════════════════════════════════════
   STILL HAVE QUESTIONS
═══════════════════════════════════════════════════ */
.fq-contact {
  background: var(--white);
}
.contact-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 16px;
}
.contact-card {
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  padding: 32px 26px;
  text-align: center;
  transition: var(--tr);
  position: relative;
  overflow: hidden;
  cursor: default;
}
.contact-card::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--red);
  transform: scaleX(0);
  transition: transform var(--tr);
}
.contact-card:hover {
  border-color: var(--red);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}
.contact-card:hover::before {
  transform: scaleX(1);
}
.cc-icon {
  width: 60px;
  height: 60px;
  background: var(--red-light);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 24px;
  margin: 0 auto 20px;
  transition: var(--tr);
}
.contact-card:hover .cc-icon {
  background: var(--red);
  color: white;
}
.cc-title {
  font-size: 17px;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 8px;
}
.cc-desc {
  font-size: 13px;
  color: var(--gray-500);
  line-height: 1.7;
  margin-bottom: 20px;
}
.cc-action {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 13.5px;
  font-weight: 700;
  color: var(--red);
  transition: gap var(--tr);
}
.contact-card:hover .cc-action {
  gap: 11px;
  color: var(--red);
}

/* ═══════════════════════════════════════════════════
   CTA BAND
═══════════════════════════════════════════════════ */
.fq-cta {
  background: linear-gradient(
    135deg,
    var(--black) 0%,
    #080c10 50%,
    var(--black) 100%
  );
  padding: 88px 0;
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(200, 16, 46, 0.16);
}
.fq-cta::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 640px;
  height: 640px;
  background: radial-gradient(circle, rgba(200, 16, 46, 0.11), transparent 65%);
  pointer-events: none;
}
.cta-inner {
  position: relative;
  z-index: 1;
  text-align: center;
}
.cta-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.8vw, 3rem);
  font-weight: 900;
  color: white;
  margin-bottom: 18px;
  line-height: 1.15;
}
.cta-title span {
  color: var(--red);
}
.cta-desc {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.46);
  margin: 0 auto 38px;
  max-width: 520px;
  line-height: 1.82;
}
.cta-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}
.cta-trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  flex-wrap: wrap;
  margin-top: 38px;
}
.ct-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.36);
  font-size: 13px;
}
.ct-item i {
  color: var(--red);
}

/* ═══════════════════════════════════════════════════
   RELATED
═══════════════════════════════════════════════════ */
.fq-related {
  background: var(--gray-50);
}
.related-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.rel-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  padding: 24px;
  transition: var(--tr);
  display: block;
  position: relative;
  overflow: hidden;
}
.rel-card::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--red);
  transform: scaleX(0);
  transition: transform var(--tr);
}
.rel-card:hover {
  border-color: var(--red);
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}
.rel-card:hover::before {
  transform: scaleX(1);
}
.rc-icon {
  width: 44px;
  height: 44px;
  background: var(--red-light);
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 18px;
  margin-bottom: 14px;
  transition: var(--tr);
}
.rel-card:hover .rc-icon {
  background: var(--red);
  color: white;
}
.rel-card h4 {
  font-size: 14px;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 6px;
}
.rel-card p {
  font-size: 12.5px;
  color: var(--gray-500);
  line-height: 1.65;
}
.rc-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin-top: 12px;
  font-size: 12.5px;
  font-weight: 700;
  color: var(--red);
  opacity: 0;
  transition: opacity var(--tr);
}
.rel-card:hover .rc-link {
  opacity: 1;
}

/* ═══════════════════════════════════════════════════
   SCROLL REVEAL
═══════════════════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.55s ease,
    transform 0.55s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.rd1 {
  transition-delay: 0.08s;
}
.rd2 {
  transition-delay: 0.16s;
}
.rd3 {
  transition-delay: 0.24s;
}
.rd4 {
  transition-delay: 0.32s;
}

/* ═══════════════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════════════ */
@media (max-width: 1100px) {
  .fq-layout {
    grid-template-columns: 220px 1fr;
    gap: 36px;
  }
  .fq-hero-inner {
    gap: 48px;
  }
  .popular-grid {
    grid-template-columns: 1fr 1fr;
  }
  .related-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 900px) {
  :root {
    --section-py: 72px;
  }
  .fq-hero-inner {
    grid-template-columns: 1fr;
  }
  .hero-visual {
    display: none;
  }
  .fq-layout {
    grid-template-columns: 1fr;
  }
  .fq-sidebar {
    position: static;
    display: none;
  }
  .fq-deco {
    display: none;
  }
  .contact-cards {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 640px) {
  .popular-grid {
    grid-template-columns: 1fr;
  }
  .related-grid {
    grid-template-columns: 1fr 1fr;
  }
  .hero-actions {
    flex-direction: column;
  }
  .hero-actions .btn {
    width: 100%;
    justify-content: center;
  }
  .cta-actions {
    flex-direction: column;
    align-items: center;
  }
  .cta-actions .btn {
    width: 100%;
    max-width: 300px;
    justify-content: center;
  }
  .search-inner {
    flex-direction: column;
    align-items: stretch;
  }
  .search-popular {
    display: none;
  }
  .contact-cards {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 480px) {
  .contact-cards {
    grid-template-columns: 1fr;
  }
}
