/* ============================================================
   FAQS.CSS — Royal Technologies
   Stylesheet for faqs.html
   ============================================================ */

/* ============================================================
   1. CSS CUSTOM PROPERTIES
   ============================================================ */
:root {
  --pink: #ed2e72;
  --blue: #009fed;
  --dark-blue: #1561ed;
  --navy: #0f153c;
  --deep-navy: #01062a;
  --accent-blue: #218dc2;
  --green: #60d769;
  --bg: #f8faff;
  --white: #ffffff;
  --black: #000000;
  --text-muted: #918f8f;
  --border: #ededed;

  --gradient-brand: linear-gradient(178.81deg, #ed2e72 0%, rgba(237, 46, 114, 0) 100%),
    linear-gradient(to left, #009fed, #009fed);
  --gradient-icon: linear-gradient(230.92deg, rgba(130, 130, 130, 1) 0%, rgba(0, 0, 0, 1) 100%);

  --shadow-card: 0 2px 49.7px rgba(19, 42, 97, 0.11);
  --shadow-soft: 0 4px 44.6px rgba(217, 229, 255, 0.45);
  --shadow-nav: 0 4px 44.6px rgba(217, 229, 255, 0.45);

  --radius-card: 30px;
  --radius-btn: 50px;
  --radius-tag: 20px;

  --pad-x: 80px;
  --max-w: 1440px;

  --font-body: "Space Grotesk", sans-serif;
  --font-bold: "Space Grotesk", sans-serif;
}

/* ============================================================
   2. RESET
   ============================================================ */
*,
*::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(--black);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  display: block;
  max-width: 100%;
}

button {
  border: none;
  cursor: pointer;
  background: none;
  font: inherit;
}

ul,
ol {
  list-style: none;
}

/* ============================================================
   3. BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  height: 52px;
  padding: 10px 10px 10px 20px;
  border-radius: var(--radius-btn);
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 400;
  cursor: pointer;
  transition: opacity .2s, transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.3s ease;
  white-space: nowrap;
  border: 1px solid transparent;
}

.btn:hover {
  opacity: .88;
  transform: translateY(-2px);
}

.btn:active {
  transform: translateY(0) scale(0.98);
}

.btn__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  flex-shrink: 0;
}

.btn__icon svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.btn--green {
  background: var(--green);
  color: var(--white);
  box-shadow: 0 5px 29.3px rgba(210, 255, 213, 1);
  animation: pulseGlow 3s ease-in-out infinite;
}

.btn--pink {
  background: var(--pink);
  color: var(--white);
  box-shadow: 0 5px 29.3px rgba(237, 46, 114, 0.3);
}

.btn--black {
  background: var(--black);
  color: var(--white);
  box-shadow: 0 4px 26.3px rgba(192, 212, 255, 0.35);
}

.btn--red {
  background: var(--pink);
  color: var(--white);
  box-shadow: 0 4px 23.9px rgba(37, 14, 77, 0.25);
}

.btn__wa {
  width: 24px;
  height: 24px;
  object-fit: contain;
  flex-shrink: 0;
}

/* ============================================================
   4. NAVBAR
   ============================================================ */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--white);
  box-shadow: var(--shadow-nav);
  width: 100%;
  animation: navbarSlideDown 0.6s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.navbar__wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  height: 100px;
  padding: 0 var(--pad-x);
  max-width: var(--max-w);
  margin: 0 auto;
}

.navbar__logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  width: 102px;
  height: 39px;
  overflow: hidden;
}

.navbar__logo img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.navbar__links {
  display: flex;
  align-items: center;
  gap: 45px;
}

.navbar__links a {
  font-size: 16px;
  color: var(--black);
  transition: opacity .2s;
  position: relative;
}

.navbar__links a::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--pink);
  border-radius: 2px;
  transition: width 0.25s cubic-bezier(0.22, 1, 0.36, 1);
}

.navbar__links a:hover::after,
.navbar__links a.active::after {
  width: 100%;
}

.navbar__links a:hover {
  opacity: .6;
}

.navbar__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.navbar__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--black);
  border-radius: 2px;
  transition: .3s;
}

/* Mobile drawer */
.mobile-nav {
  display: none;
  position: fixed;
  top: 100px;
  left: 0;
  right: 0;
  background: var(--white);
  z-index: 999;
  flex-direction: column;
  padding: 20px 24px;
  gap: 0;
  box-shadow: 0 8px 30px rgba(0, 0, 0, .12);
  border-top: 1px solid #f0f0f0;
}

.mobile-nav.open {
  display: flex;
}

.mobile-nav a {
  font-size: 16px;
  color: var(--black);
  padding: 12px 0;
  border-bottom: 1px solid #f5f5f5;
  display: block;
}

.mobile-nav a:last-child {
  border-bottom: none;
}

.mobile-nav__cta {
  background: var(--green) !important;
  border-radius: var(--radius-btn) !important;
  padding: 12px 20px !important;
  color: var(--white) !important;
  display: flex !important;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 8px;
  border-bottom: none !important;
}

/* ============================================================
   5. FAQS HERO SECTION
   ============================================================ */
.faqs-hero {
  background: var(--bg);
  padding: 80px var(--pad-x) 60px;
  max-width: var(--max-w);
  margin: 0 auto;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.faqs-hero::before {
  content: '';
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 700px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(237, 46, 114, 0.07) 0%, rgba(0, 159, 237, 0.05) 50%, transparent 80%);
  pointer-events: none;
}

.faqs-hero__label {
  font-size: 18px;
  color: var(--accent-blue);
  font-weight: 400;
  margin-bottom: 10px;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.1s forwards;
}

.faqs-hero__title {
  font-size: 64px;
  font-weight: 700;
  color: var(--black);
  line-height: 1.1;
  margin-bottom: 20px;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.2s forwards;
}

.faqs-hero__title span {
  color: var(--pink);
}

.faqs-hero__desc {
  font-size: 18px;
  line-height: 1.7;
  color: var(--text-muted);
  max-width: 580px;
  margin: 0 auto;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.3s forwards;
}

/* ============================================================
   6. FAQ STATS / HIGHLIGHTS
   ============================================================ */
.faq-stats {
  padding: 0 var(--pad-x) 60px;
  max-width: var(--max-w);
  margin: 0 auto;
}

.faq-stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.stat-card {
  background: var(--white);
  border-radius: var(--radius-card);
  padding: 32px 24px;
  text-align: center;
  box-shadow: var(--shadow-card);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.stat-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 50px rgba(19, 42, 97, 0.14);
}

.stat-card__num {
  font-size: 48px;
  font-weight: 700;
  line-height: 1;
  background: linear-gradient(135deg, var(--pink) 0%, var(--blue) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 8px;
}

.stat-card__label {
  font-size: 15px;
  color: var(--text-muted);
}

/* ============================================================
   7. FAQ MAIN SECTION — CATEGORIES + ACCORDION
   ============================================================ */
.faqs-main {
  padding: 20px var(--pad-x) 80px;
  max-width: var(--max-w);
  margin: 0 auto;
}

.faqs-main__layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 40px;
  align-items: start;
}

/* Category Nav (Sidebar) */
.faq-sidebar {
  position: sticky;
  top: 120px;
}

.faq-sidebar__title {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.faq-categories {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.faq-cat-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  border-radius: 14px;
  font-size: 15px;
  font-weight: 500;
  color: var(--text-muted);
  background: transparent;
  cursor: pointer;
  text-align: left;
  transition: background 0.2s, color 0.2s, transform 0.2s;
  border: 1.5px solid transparent;
  width: 100%;
}

.faq-cat-btn:hover {
  background: var(--white);
  color: var(--black);
  border-color: var(--border);
  transform: translateX(4px);
  box-shadow: 0 2px 20px rgba(19, 42, 97, 0.07);
}

.faq-cat-btn.active {
  background: var(--white);
  color: var(--black);
  border-color: var(--pink);
  box-shadow: 0 2px 20px rgba(237, 46, 114, 0.1);
}

.faq-cat-btn__icon {
  width: 32px;
  height: 32px;
  border-radius: 10px;
  background: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.2s;
}

.faq-cat-btn.active .faq-cat-btn__icon {
  background: var(--pink);
}

.faq-cat-btn__icon svg {
  width: 16px;
  height: 16px;
  stroke: var(--text-muted);
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: stroke 0.2s;
}

.faq-cat-btn.active .faq-cat-btn__icon svg,
.faq-cat-btn:hover .faq-cat-btn__icon svg {
  stroke: var(--white);
}

.faq-cat-btn.active .faq-cat-btn__icon {
  background: var(--pink);
}

.faq-cat-btn:hover .faq-cat-btn__icon {
  background: var(--black);
}

.faq-cat-count {
  margin-left: auto;
  background: var(--bg);
  border-radius: 50px;
  padding: 2px 9px;
  font-size: 12px;
  font-weight: 700;
  color: var(--text-muted);
  transition: background 0.2s, color 0.2s;
}

.faq-cat-btn.active .faq-cat-count {
  background: rgba(237, 46, 114, 0.12);
  color: var(--pink);
}

/* FAQ Content Area */
.faq-content {
  display: flex;
  flex-direction: column;
  gap: 48px;
}

/* FAQ Category Group */
.faq-group {
  scroll-margin-top: 130px;
}

.faq-group__header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
}

.faq-group__icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: var(--gradient-icon);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  flex-shrink: 0;
}

.faq-group__icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--white);
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.faq-group__title {
  font-size: 24px;
  font-weight: 700;
  color: var(--black);
}

.faq-group__count {
  margin-left: auto;
  font-size: 14px;
  color: var(--text-muted);
  background: var(--white);
  border-radius: 50px;
  padding: 4px 14px;
  box-shadow: 0 2px 10px rgba(19, 42, 97, 0.07);
}

/* Accordion Items */
.accordion-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.accordion-item {
  background: var(--white);
  border-radius: 20px;
  box-shadow: 0 2px 20px rgba(19, 42, 97, 0.07);
  overflow: hidden;
  transition: box-shadow 0.3s ease;
  border: 1.5px solid transparent;
}

.accordion-item.open {
  box-shadow: 0 6px 40px rgba(19, 42, 97, 0.13);
  border-color: rgba(237, 46, 114, 0.15);
}

.accordion-trigger {
  width: 100%;
  padding: 22px 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  cursor: pointer;
  background: none;
  border: none;
  font-family: var(--font-body);
  text-align: left;
  transition: background 0.2s;
}

.accordion-trigger:hover {
  background: rgba(248, 250, 255, 0.8);
}

.accordion-item.open .accordion-trigger {
  background: transparent;
}

.accordion-num {
  width: 32px;
  height: 32px;
  min-width: 32px;
  border-radius: 10px;
  background: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  color: var(--text-muted);
  transition: background 0.2s, color 0.2s;
}

.accordion-item.open .accordion-num {
  background: var(--pink);
  color: var(--white);
}

.accordion-question {
  flex: 1;
  font-size: 16px;
  font-weight: 600;
  color: var(--black);
  line-height: 1.4;
  transition: color 0.2s;
}

.accordion-item.open .accordion-question {
  color: var(--pink);
}

.accordion-icon {
  width: 32px;
  height: 32px;
  min-width: 32px;
  border-radius: 50%;
  background: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.25s, transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
  flex-shrink: 0;
}

.accordion-icon svg {
  width: 16px;
  height: 16px;
  stroke: var(--text-muted);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: stroke 0.2s;
}

.accordion-item.open .accordion-icon {
  background: var(--pink);
  transform: rotate(45deg);
}

.accordion-item.open .accordion-icon svg {
  stroke: var(--white);
}

/* Accordion Body */
.accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}

.accordion-item.open .accordion-body {
  max-height: 600px;
}

.accordion-body__inner {
  padding: 0 24px 22px 72px;
}

.accordion-answer {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.75;
}

/* ============================================================
   8. STILL HAVE QUESTIONS SECTION
   ============================================================ */
.faq-more {
  background: var(--white);
  padding: 80px var(--pad-x);
}

.faq-more__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  text-align: center;
}

.faq-more__icon {
  width: 80px;
  height: 80px;
  border-radius: 24px;
  background: var(--gradient-icon);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.faq-more__icon svg {
  width: 40px;
  height: 40px;
  stroke: var(--white);
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.faq-more__label {
  font-size: 18px;
  color: var(--accent-blue);
  font-weight: 400;
  margin-bottom: 8px;
}

.faq-more__title {
  font-size: 48px;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 16px;
}

.faq-more__desc {
  font-size: 18px;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 560px;
  margin: 0 auto 36px;
}

.faq-more__actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* ============================================================
   9. CTA SECTION
   ============================================================ */
.faqs-cta {
  padding: 80px var(--pad-x);
  max-width: var(--max-w);
  margin: 0 auto;
}

.faqs-cta__card {
  background: linear-gradient(135deg, var(--navy) 0%, #1a2070 50%, var(--deep-navy) 100%);
  border-radius: 40px;
  padding: 70px 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  position: relative;
  overflow: hidden;
}

.faqs-cta__card::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(237, 46, 114, 0.25) 0%, transparent 70%);
  pointer-events: none;
}

.faqs-cta__card::after {
  content: '';
  position: absolute;
  bottom: -80px;
  left: -60px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 159, 237, 0.2) 0%, transparent 70%);
  pointer-events: none;
}

.faqs-cta__text {
  position: relative;
  z-index: 1;
}

.faqs-cta__label {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 10px;
}

.faqs-cta__title {
  font-size: 42px;
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 12px;
}

.faqs-cta__title span {
  color: var(--pink);
}

.faqs-cta__desc {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.6;
  max-width: 480px;
}

.faqs-cta__actions {
  display: flex;
  flex-direction: column;
  gap: 16px;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}

/* ============================================================
   10. FOOTER (same as contact.css)
   ============================================================ */

/* ============================================================
   11. SCROLL ANIMATIONS
   ============================================================ */
.anim-fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1), transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.anim-fade-left {
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1), transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.anim-fade-right {
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1), transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.anim-scale-in {
  opacity: 0;
  transform: scale(0.92);
  transition: opacity 0.6s cubic-bezier(0.22, 1, 0.36, 1), transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.anim-revealed {
  opacity: 1 !important;
  transform: none !important;
}

.anim-delay-1 {
  transition-delay: 0.08s !important;
}

.anim-delay-2 {
  transition-delay: 0.16s !important;
}

.anim-delay-3 {
  transition-delay: 0.24s !important;
}

.anim-delay-4 {
  transition-delay: 0.32s !important;
}

/* ============================================================
   12. KEYFRAMES
   ============================================================ */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes navbarSlideDown {
  from {
    opacity: 0;
    transform: translateY(-100%);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulseGlow {

  0%,
  100% {
    box-shadow: 0 5px 29.3px rgba(96, 215, 105, 0.6);
  }

  50% {
    box-shadow: 0 5px 40px rgba(96, 215, 105, 0.95), 0 0 0 6px rgba(96, 215, 105, 0.15);
  }
}

/* ============================================================
   13. RESPONSIVE — TABLET
   ============================================================ */
@media (min-width: 769px) and (max-width: 1100px) {
  :root {
    --pad-x: 40px;
  }

  .navbar__wrap {
    height: 88px;
    padding: 0 40px;
  }

  .navbar__links,
  .navbar__cta {
    display: none !important;
  }

  .navbar__hamburger {
    display: flex !important;
  }

  .mobile-nav {
    top: 88px;
  }

  .faqs-hero__title {
    font-size: 48px;
  }

  .faq-stats__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .faqs-main__layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .faq-sidebar {
    position: static;
  }

  .faq-categories {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 10px;
  }

  .faq-cat-btn {
    width: auto;
  }

  .faq-more__title {
    font-size: 36px;
  }

  .faqs-cta__card {
    flex-direction: column;
    text-align: center;
    padding: 50px 40px;
  }

  .faqs-cta__desc {
    max-width: 100%;
  }

  .footer__main {
    flex-direction: column;
    gap: 40px;
  }

  .footer__contact-card {
    min-width: 100%;
  }
}

/* ============================================================
   14. RESPONSIVE — MOBILE
   ============================================================ */
@media (max-width: 768px) {
  :root {
    --pad-x: 20px;
  }

  body {
    overflow-x: hidden;
  }

  .navbar__wrap {
    height: 68px;
    padding: 0 20px;
  }

  .navbar__links,
  .navbar__cta {
    display: none !important;
  }

  .navbar__hamburger {
    display: flex !important;
  }

  .mobile-nav {
    top: 68px;
  }

  .faqs-hero {
    padding: 50px 20px 40px;
  }

  .faqs-hero__title {
    font-size: 34px;
  }

  .faqs-hero__desc {
    font-size: 15px;
  }

  .faq-stats {
    padding: 0 20px 40px;
  }

  .faq-stats__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .stat-card {
    padding: 22px 16px;
    border-radius: 20px;
  }

  .stat-card__num {
    font-size: 36px;
  }

  .faqs-main {
    padding: 10px 20px 50px;
  }

  .faqs-main__layout {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .faq-sidebar {
    position: static;
  }

  .faq-categories {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 8px;
  }

  .faq-cat-btn {
    width: auto;
    padding: 8px 12px;
    font-size: 13px;
  }

  .faq-cat-count {
    display: none;
  }

  .faq-cat-btn__icon {
    width: 26px;
    height: 26px;
  }

  .faq-group__title {
    font-size: 20px;
  }

  .faq-group__icon {
    width: 40px;
    height: 40px;
    border-radius: 12px;
  }

  .accordion-trigger {
    padding: 18px 18px;
    gap: 12px;
  }

  .accordion-question {
    font-size: 15px;
  }

  .accordion-body__inner {
    padding: 0 18px 18px 52px;
  }

  .accordion-answer {
    font-size: 14px;
  }

  .faq-more {
    padding: 50px 20px;
  }

  .faq-more__title {
    font-size: 28px;
  }

  .faq-more__desc {
    font-size: 15px;
  }

  .faq-more__actions {
    flex-direction: column;
    align-items: center;
  }

  .faq-more__actions .btn {
    width: 100%;
    max-width: 280px;
    justify-content: center;
  }

  .faqs-cta {
    padding: 40px 20px;
  }

  .faqs-cta__card {
    flex-direction: column;
    padding: 40px 24px;
    border-radius: 24px;
    text-align: center;
  }

  .faqs-cta__title {
    font-size: 28px;
  }

  .faqs-cta__desc {
    font-size: 14px;
    max-width: 100%;
  }

  .faqs-cta__actions {
    align-items: center;
  }

  .faqs-cta__actions .btn {
    width: 100%;
    max-width: 280px;
    justify-content: center;
  }

  .footer__inner {
    padding: 48px 20px;
    gap: 36px;
  }

  .footer__main {
    flex-direction: column;
    gap: 32px;
  }

  .footer__contact-card {
    min-width: unset;
    width: 100%;
  }

  .footer__legal {
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
  }
}