:root {
  --emerald-900: #022c22;
  --emerald-800: #064e3b;
  --emerald-700: #065f46;
  --emerald-600: #047857;
  --emerald-500: #059669;
  --emerald-400: #10b981;
  --emerald-100: #d1fae5;
  --gold: #f59e0b;
  --gold-light: #fcd34d;
  --gold-dark: #d97706;
  --white: #ffffff;
  --gray-50: #f9fafb;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-400: #9ca3af;
  --gray-500: #6b7280;
  --gray-600: #4b5563;
  --gray-700: #374151;
  --gray-800: #1f2937;
  --gray-900: #111827;
  --bg: var(--gray-50);
  --text: var(--gray-800);
  --heading: var(--emerald-800);
  --accent: var(--emerald-500);
  --accent-alt: var(--gold);
  --border: var(--gray-200);
  --card-bg: var(--white);
  --radius: 12px;
  --radius-lg: 20px;
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.14);
  --font-display: "Sora", sans-serif;
  --font-body: "DM Sans", sans-serif;
  --sidebar-w: 260px;
}
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
  font-size: 16px;
}
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  overflow-x: hidden;
}
img {
  max-width: 100%;
  display: block;
}
a {
  text-decoration: none;
  color: inherit;
}
.container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 20px;
}
.gold-line {
  width: 48px;
  height: 4px;
  background: var(--gold);
  border-radius: 2px;
  margin-bottom: 20px;
}
.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;
}

header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(6, 78, 59, 0.97);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(245, 158, 11, 0.25);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.2);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
  max-width: 1140px;
  margin: 0 auto;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.2rem;
  color: var(--white);
  letter-spacing: -0.3px;
}
.logo-img {
  width: 36px;
  height: 36px;
  object-fit: contain;
  border-radius: 8px;
}
.logo span {
  color: var(--gold);
}
.footer-logo .logo-img {
  width: auto;
  height: 50px;
}

nav {
  display: flex;
  align-items: center;
  gap: 28px;
}
nav a {
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.2s;
  white-space: nowrap;
}
nav a:hover {
  color: var(--gold);
}
nav a.active {
  color: var(--gold);
}

.header-cta {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--emerald-900) !important;
  font-weight: 700;
  padding: 9px 20px;
  border-radius: 50px;
  font-size: 0.9rem !important;
  box-shadow: 0 2px 12px rgba(245, 158, 11, 0.35);
}
.header-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 18px rgba(245, 158, 11, 0.5) !important;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.hamburger span {
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: 0.3s;
  display: block;
}

@media (max-width: 768px) {
  nav {
    display: none;
    position: absolute;
    top: 65px;
    left: 0;
    right: 0;
    background: var(--emerald-900);
    flex-direction: column;
    padding: 20px;
    gap: 16px;
    border-top: 1px solid rgba(245, 158, 11, 0.2);
  }
  nav.open {
    display: flex;
  }
  .hamburger {
    display: flex;
  }
  .header-cta {
    display: none;
  }
}

.faq-hero {
  background: linear-gradient(
    160deg,
    var(--emerald-900) 0%,
    var(--emerald-800) 55%,
    #0a3d2d 100%
  );
  padding: 56px 20px 64px;
  position: relative;
  overflow: hidden;
  text-align: center;
}
.faq-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(
    rgba(255, 255, 255, 0.04) 1px,
    transparent 1px
  );
  background-size: 28px 28px;
  pointer-events: none;
}
.faq-hero::after {
  content: "";
  position: absolute;
  top: -100px;
  right: -100px;
  width: 420px;
  height: 420px;
  background: radial-gradient(
    circle,
    rgba(245, 158, 11, 0.13) 0%,
    transparent 70%
  );
  pointer-events: none;
}
.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 760px;
  margin: 0 auto;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(245, 158, 11, 0.14);
  border: 1px solid rgba(245, 158, 11, 0.3);
  color: var(--gold-light);
  font-size: 0.78rem;
  font-weight: 700;
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 18px;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}
.faq-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 5vw, 2.8rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.18;
  margin-bottom: 16px;
}
.faq-hero h1 .hl {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.faq-hero p {
  color: rgba(255, 255, 255, 0.68);
  font-size: 1.05rem;
  max-width: 560px;
  margin: 0 auto 36px;
}

.search-wrap {
  position: relative;
  max-width: 580px;
  margin: 0 auto;
}
.search-wrap svg {
  position: absolute;
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--gray-400);
  pointer-events: none;
}
#faqSearch {
  width: 100%;
  padding: 16px 20px 16px 52px;
  border-radius: 50px;
  border: 2px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 1rem;
  outline: none;
  transition:
    border-color 0.25s,
    background 0.25s;
}
#faqSearch::placeholder {
  color: rgba(255, 255, 255, 0.45);
}
#faqSearch:focus {
  border-color: var(--gold);
  background: rgba(255, 255, 255, 0.15);
}
.search-hint {
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.78rem;
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}
.search-hint span {
  display: flex;
  align-items: center;
  gap: 5px;
}
.dot-gold {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}
.faq-layout {
  display: grid;
  grid-template-columns: var(--sidebar-w) 1fr;
  gap: 40px;
  align-items: start;
  max-width: 1140px;
  margin: 52px auto;
  padding: 0 20px;
}
.faq-sidebar {
  position: sticky;
  top: 90px;
  background: var(--card-bg);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}
.sidebar-header {
  background: linear-gradient(135deg, var(--emerald-800), var(--emerald-900));
  padding: 18px 20px;
}
.sidebar-header h2 {
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.9px;
}
.toc-list {
  list-style: none;
  padding: 12px 0;
}
.toc-list li a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 20px;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--gray-600);
  transition:
    background 0.18s,
    color 0.18s;
  border-left: 3px solid transparent;
}
.toc-list li a:hover {
  background: var(--gray-50);
  color: var(--emerald-700);
  border-left-color: var(--emerald-400);
}
.toc-list li a.toc-active {
  background: var(--emerald-100);
  color: var(--emerald-800);
  border-left-color: var(--emerald-500);
  font-weight: 700;
}
.toc-icon {
  font-size: 1rem;
  min-width: 20px;
  text-align: center;
}
.toc-count {
  margin-left: auto;
  background: var(--gray-100);
  color: var(--gray-500);
  font-size: 0.7rem;
  font-weight: 700;
  padding: 2px 7px;
  border-radius: 20px;
  min-width: 24px;
  text-align: center;
}
.toc-divider {
  height: 1px;
  background: var(--border);
  margin: 8px 20px;
}

.sidebar-stats {
  padding: 16px 20px;
  border-top: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.ss-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.ss-label {
  font-size: 0.75rem;
  color: var(--gray-500);
}
.ss-val {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--emerald-700);
}
.faq-main {
  min-width: 0;
}

#noResults {
  display: none;
  text-align: center;
  padding: 48px 20px;
  color: var(--gray-500);
  font-size: 1rem;
}
#noResults strong {
  display: block;
  font-size: 1.4rem;
  margin-bottom: 8px;
  color: var(--gray-700);
}

.faq-category {
  margin-bottom: 52px;
}
.faq-category:last-child {
  margin-bottom: 0;
}

.cat-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
}
.cat-icon-wrap {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
}
.cat-icon-wrap.emerald {
  background: linear-gradient(135deg, var(--emerald-100), #a7f3d0);
}
.cat-icon-wrap.gold {
  background: linear-gradient(135deg, #fef3c7, #fde68a);
}
.cat-icon-wrap.blue {
  background: linear-gradient(135deg, #dbeafe, #bfdbfe);
}
.cat-icon-wrap.teal {
  background: linear-gradient(135deg, #ccfbf1, #99f6e4);
}
.cat-icon-wrap.purple {
  background: linear-gradient(135deg, #ede9fe, #ddd6fe);
}
.cat-icon-wrap.rose {
  background: linear-gradient(135deg, #ffe4e6, #fecdd3);
}

.cat-title-wrap {
  flex: 1;
}
.cat-title-wrap h2 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--heading);
  line-height: 1.2;
}
.cat-title-wrap p {
  font-size: 0.82rem;
  color: var(--gray-500);
  margin-top: 2px;
}

.cat-badge {
  background: var(--emerald-100);
  color: var(--emerald-700);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 20px;
  white-space: nowrap;
}
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.faq-item {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition:
    box-shadow 0.2s,
    border-color 0.2s;
}
.faq-item[data-hidden="true"] {
  display: none;
}

.faq-item:hover {
  box-shadow: var(--shadow-md);
  border-color: rgba(5, 150, 105, 0.2);
}
.faq-item.open {
  border-color: var(--emerald-400);
  box-shadow:
    0 0 0 3px rgba(16, 185, 129, 0.12),
    var(--shadow-md);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  padding: 18px 22px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
  text-align: left;
  font-family: var(--font-display);
  font-size: 0.97rem;
  font-weight: 700;
  color: var(--heading);
  line-height: 1.45;
  transition: background 0.18s;
  overflow-wrap: break-word;
  word-break: break-word;
}
.faq-question:hover {
  background: var(--gray-50);
}
.faq-item.open .faq-question {
  background: linear-gradient(90deg, rgba(209, 250, 229, 0.4), transparent);
}

.faq-q-left {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.q-num {
  background: var(--emerald-100);
  color: var(--emerald-700);
  font-size: 0.7rem;
  font-weight: 800;
  min-width: 22px;
  height: 22px;
  margin-top: 2px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.faq-icon {
  width: 28px;
  height: 28px;
  min-width: 28px;
  border-radius: 50%;
  background: var(--emerald-100);
  color: var(--emerald-700);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  line-height: 1;
  font-weight: 400;
  transition:
    transform 0.3s,
    background 0.2s,
    color 0.2s;
}
.faq-item.open .faq-icon {
  transform: rotate(45deg);
  background: var(--emerald-600);
  color: var(--white);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.38s cubic-bezier(0.4, 0, 0.2, 1),
    padding 0.28s;
  padding: 0 22px 0 54px;
  border-top: 0px solid transparent;
}
.faq-item.open .faq-answer {
  max-height: 600px;
  padding: 0 22px 20px 54px;
  border-top: 1px solid var(--gray-100);
}
.faq-answer-inner {
  padding-top: 16px;
  overflow-wrap: break-word;
  word-break: break-word;
}

.answer-lead {
  display: block;
  font-weight: 700;
  color: var(--emerald-800);
  font-size: 0.95rem;
  margin-bottom: 10px;
  padding: 10px 14px;
  background: var(--emerald-100);
  border-left: 3px solid var(--emerald-500);
  border-radius: 0 8px 8px 0;
}
.faq-answer p {
  color: var(--gray-600);
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 10px;
}
.faq-answer p:last-child {
  margin-bottom: 0;
}

.faq-answer ul,
.faq-answer ol {
  padding-left: 20px;
  margin: 8px 0;
  color: var(--gray-600);
  font-size: 0.9rem;
  line-height: 1.7;
}
.faq-answer li {
  margin-bottom: 4px;
}

.inner-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 10px;
  color: var(--emerald-600);
  font-size: 0.85rem;
  font-weight: 600;
  padding: 7px 14px;
  background: var(--gray-50);
  border: 1px solid rgba(5, 150, 105, 0.25);
  border-radius: 8px;
  transition:
    background 0.2s,
    color 0.2s;
}
.inner-link:hover {
  background: var(--emerald-100);
  color: var(--emerald-800);
}
.inner-link svg {
  flex-shrink: 0;
}

.faq-tags {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-top: 12px;
}
.tag {
  font-size: 0.7rem;
  font-weight: 600;
  padding: 3px 9px;
  border-radius: 20px;
  background: var(--gray-100);
  color: var(--gray-600);
  border: 1px solid var(--gray-200);
}
.breadcrumb-bar {
  background: var(--gray-50);
  border-bottom: 1px solid var(--gray-200);
  padding: 12px 0;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  color: var(--gray-500);
  flex-wrap: wrap;
}

.breadcrumb--nowrap {
  flex-wrap: nowrap;
  white-space: nowrap;
}

.breadcrumb__link {
  color: #047857;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
  transition: color 0.2s;
}

.breadcrumb__link:hover {
  color: var(--emerald-800);
}

.breadcrumb__sep {
  color: var(--gray-400);
  white-space: nowrap;
}

.breadcrumb__current {
  color: var(--gray-700);
  font-weight: 600;
  white-space: nowrap;
}

.mobile-toc {
  display: none;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 28px;
  overflow: hidden;
}
.mobile-toc-toggle {
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  padding: 14px 18px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--heading);
}
.mobile-toc-body {
  display: none;
}
.mobile-toc.open .mobile-toc-body {
  display: block;
  padding: 0 0 10px;
}
.mobile-toc-list {
  list-style: none;
}
.mobile-toc-list li a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  font-size: 0.88rem;
  color: var(--gray-600);
  transition: color 0.2s;
}
.mobile-toc-list li a:hover {
  color: var(--emerald-600);
}

@media (max-width: 900px) {
  .faq-layout {
    grid-template-columns: 1fr;
  }
  .faq-sidebar {
    display: none;
  }
  .mobile-toc {
    display: block;
  }
  .cat-header {
    flex-wrap: wrap;
  }
  .cat-badge {
    flex-basis: 100%;
    margin-top: 4px;
  }
}
.support-cta {
  background: linear-gradient(135deg, var(--emerald-800), var(--emerald-900));
  padding: 44px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
  margin: 52px 0 0;
  width: 100%;
  box-sizing: border-box;
}
.support-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse at 50% 0%,
    rgba(245, 158, 11, 0.14) 0%,
    transparent 60%
  );
  pointer-events: none;
}
.support-cta h2 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 4vw, 2rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 10px;
  position: relative;
  z-index: 1;
}
.support-cta p {
  color: rgba(255, 255, 255, 0.65);
  font-size: 1rem;
  max-width: 480px;
  margin: 0 auto 28px;
  position: relative;
  z-index: 1;
}
.cta-row {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--emerald-900);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1rem;
  padding: 14px 28px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(245, 158, 11, 0.45);
  transition:
    transform 0.2s,
    box-shadow 0.2s;
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(245, 158, 11, 0.55);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 12px 24px;
  border-radius: 50px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  transition:
    border-color 0.2s,
    background 0.2s;
}
.btn-outline:hover {
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.08);
}

.contact-chips {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 22px;
  position: relative;
  z-index: 1;
}
.chip {
  display: flex;
  align-items: center;
  gap: 7px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 8px 14px;
  border-radius: 50px;
}
.chip-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--emerald-400);
  animation: pulse 2s infinite;
}

#scrollTop {
  position: fixed;
  bottom: 28px;
  right: 24px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--emerald-500), var(--emerald-700));
  color: var(--white);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(5, 150, 105, 0.4);
  opacity: 0;
  pointer-events: none;
  transition:
    opacity 0.25s,
    transform 0.25s;
  z-index: 90;
}
#scrollTop.visible {
  opacity: 1;
  pointer-events: auto;
}
#scrollTop:hover {
  transform: translateY(-3px);
}
.disclaimer {
  background: #111827;
  padding: 32px 0;
  border-top: 3px solid var(--gold);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.disclaimer-inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  gap: 18px;
  align-items: flex-start;
}

.disclaimer-icon {
  font-size: 1.5rem;
  min-width: 32px;
  margin-top: 4px;
}

.disclaimer-content {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.disclaimer-text {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.88rem;
  line-height: 1.75;
}

.disclaimer-subtext {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.78rem;
}

.disclaimer-text strong {
  color: var(--gold);
  font-weight: 700;
}

.disclaimer-link {
  color: var(--white);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: opacity 0.2s ease;
}

.disclaimer-link:hover {
  opacity: 0.7;
  color: var(--gold);
}

@media (max-width: 768px) {
  .disclaimer-inner {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 12px;
  }
}

footer {
  background: var(--emerald-900);
  padding: 52px 0 28px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-brand .logo {
  color: var(--white);
  margin-bottom: 14px;
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.88rem;
  line-height: 1.7;
  margin-bottom: 10px;
}

.footer-social {
  display: flex;
  gap: 10px;
}

.social-btn {
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  position: relative;
  overflow: hidden;
  transition:
    color 0.25s ease,
    box-shadow 0.25s ease,
    background 0.25s ease;
}

.social-btn svg {
  transition: none;
}

.social-btn::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at center,
    rgba(255, 255, 255, 0.25),
    transparent 70%
  );
  opacity: 0;
  transition: opacity 0.25s ease;
}

.social-btn:hover {
  transform: none;
}

.social-btn:hover::after {
  opacity: 1;
}

.social-btn[aria-label*="Facebook"]:hover {
  color: #1877f2;
  box-shadow: 0 0 15px rgba(24, 119, 242, 0.5);
  background: rgba(24, 119, 242, 0.12);
}

.social-btn[aria-label*="Instagram"]:hover {
  color: #e1306c;
  box-shadow: 0 0 15px rgba(225, 48, 108, 0.5);
  background: rgba(225, 48, 108, 0.12);
}

.social-btn[aria-label*="YouTube"]:hover {
  color: #ff0000;
  box-shadow: 0 0 15px rgba(255, 0, 0, 0.5);
  background: rgba(255, 0, 0, 0.12);
}

.footer-col h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--white);
  margin-bottom: 16px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.footer-col h4 { font-family: var(--font-display); font-weight: 700; font-size: 0.88rem; color: var(--white); margin-bottom: 16px; letter-spacing: 0.5px; text-transform: uppercase; }
.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.footer-col ul li a {
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.88rem;
  transition: color 0.2s;
}

.footer-col ul li a:hover {
  color: var(--gold);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.82rem;
}
@font-face {
  font-family: "Sora";
  src: url("https://3pattino1.online/fonts/sora-semibold.ttf")
    format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Sora";
  src: url("https://3pattino1.online/fonts/sora-bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "DM Sans";
  src: url("https://3pattino1.online/fonts/dmsans-regular.ttf")
    format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "DM Sans";
  src: url("https://3pattino1.online/fonts/dmsans-medium.ttf")
    format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
.support-link {
  color: var(--emerald-600);
  font-weight: 600;
}

.gold-highlight {
  color: var(--gold-light);
}
