/* Dona — subpage styles */
:root {
  --bg: #050505;
  --text: #f5f5f5;
  --text-muted: rgba(255, 255, 255, 0.5);
  --accent: rgba(255, 255, 255, 0.9);
  --accent-gold: #d4a034;
  --accent-glow: #ffc94d;
  --font-heading: 'Instrument Serif', serif;
  --font-body: 'DM Sans', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.7;
}

/* Hero background frame */
body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: url('/frames/frame_0001.webp') center center / cover no-repeat;
  opacity: 0.07;
  pointer-events: none;
  z-index: -1;
  -webkit-mask-image: linear-gradient(to bottom, black 40%, transparent 100%);
  mask-image: linear-gradient(to bottom, black 40%, transparent 100%);
}

/* Nav */
.nav {
  position: fixed;
  top: 0;
  width: 100%;
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 2rem;
  background: rgba(5, 5, 5, 0.9);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 100;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.nav-logo {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--accent-gold);
  text-decoration: none;
  font-style: italic;
}
.nav-brand {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--text);
  text-decoration: none;
  margin-right: auto;
}
.nav-links {
  display: flex;
  gap: 1.5rem;
}
.nav-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.875rem;
  transition: color 0.2s;
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--accent);
}

.nav-cta {
  font-size: 0.8rem;
  padding: 0.5rem 1rem;
  border: 1px solid rgba(212, 160, 52, 0.3);
  border-radius: 2rem;
  color: var(--accent-gold);
  text-decoration: none;
  transition: border-color 0.2s, background 0.2s;
}
.nav-cta:hover {
  border-color: var(--accent-gold);
  background: rgba(212, 160, 52, 0.08);
}

/* Mobile hamburger */
.nav-hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  margin-left: auto;
}
.nav-hamburger span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--text);
  margin: 4px 0;
  transition: transform 0.3s, opacity 0.3s;
}
.nav-hamburger.open span:nth-child(1) {
  transform: rotate(45deg) translate(4px, 4px);
}
.nav-hamburger.open span:nth-child(2) {
  opacity: 0;
}
.nav-hamburger.open span:nth-child(3) {
  transform: rotate(-45deg) translate(4px, -4px);
}

/* Mobile menu overlay */
.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(5, 5, 5, 0.97);
  z-index: 99;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
}
.mobile-menu.open {
  display: flex;
}
.mobile-menu a {
  color: var(--text);
  text-decoration: none;
  font-family: var(--font-heading);
  font-size: 1.5rem;
  transition: color 0.2s;
}
.mobile-menu a:hover,
.mobile-menu a.active {
  color: var(--accent);
}
.mobile-menu .mobile-cta {
  margin-top: 1rem;
  font-family: var(--font-body);
  font-size: 0.9rem;
  padding: 0.75rem 1.5rem;
  background: var(--accent-gold);
  color: var(--bg);
  border: none;
  border-radius: 2rem;
}

/* Function sub-nav */
.func-nav {
  max-width: 740px;
  margin: 0 auto;
  padding: 5.5rem 2rem 0;
  display: flex;
  gap: 0.25rem;
  flex-wrap: wrap;
}
.func-nav a {
  padding: 0.5rem 1rem;
  font-size: 0.8rem;
  color: var(--text-muted);
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 2rem;
  transition: color 0.2s, border-color 0.2s, background 0.2s;
  white-space: nowrap;
}
.func-nav a:hover {
  color: var(--accent);
  border-color: rgba(255, 255, 255, 0.15);
}
.func-nav a.active {
  color: var(--text);
  border-color: rgba(212, 160, 52, 0.3);
  background: rgba(212, 160, 52, 0.06);
}

/* Content */
.content {
  max-width: 740px;
  margin: 0 auto;
  padding: 8rem 2rem 4rem;
}
.has-func-nav .content {
  padding-top: 3rem;
}
.content h1 {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 1rem;
}
.content h2 {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 400;
  margin-top: 3rem;
  margin-bottom: 1rem;
}
.content h3 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-top: 2rem;
  margin-bottom: 0.5rem;
}
.content p {
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 1rem;
}
.content .subtitle {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: 3rem;
}

/* Feature list */
.check-list {
  list-style: none;
  padding: 0;
}
.check-list li {
  padding: 0.5rem 0;
  padding-left: 1.75rem;
  position: relative;
  color: rgba(255, 255, 255, 0.75);
}
.check-list li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  color: var(--accent-gold);
}

/* Numbered steps */
.steps {
  list-style: none;
  padding: 0;
  counter-reset: step;
}
.steps li {
  padding: 0.75rem 0;
  padding-left: 2rem;
  position: relative;
  color: rgba(255, 255, 255, 0.75);
  counter-increment: step;
}
.steps li::before {
  content: counter(step) ".";
  position: absolute;
  left: 0;
  color: var(--accent-gold);
  font-weight: 600;
}

/* Dash list */
.dash-list {
  list-style: none;
  padding: 0;
}
.dash-list li {
  padding: 0.4rem 0;
  padding-left: 1.5rem;
  position: relative;
  color: rgba(255, 255, 255, 0.75);
}
.dash-list li::before {
  content: "\2014";
  position: absolute;
  left: 0;
  color: var(--text-muted);
}

/* Scenario cards */
.scenario {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 1rem;
  padding: 2rem;
  margin-bottom: 2rem;
}
.scenario-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent-gold);
  margin-bottom: 0.5rem;
}
.scenario h3 {
  margin-top: 0;
}
.scenario-result {
  margin-top: 1.5rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  font-weight: 500;
  color: var(--text);
}

/* FAQ accordion */
.faq-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem 0;
  cursor: pointer;
  font-weight: 500;
  color: var(--text);
  background: none;
  border: none;
  width: 100%;
  font-family: var(--font-body);
  font-size: 1rem;
  text-align: left;
  line-height: 1.5;
  gap: 1rem;
}
.faq-question::after {
  content: "+";
  color: var(--text-muted);
  font-size: 1.5rem;
  flex-shrink: 0;
}
.faq-item.open .faq-question::after {
  content: "\2212";
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.7;
}
.faq-item.open .faq-answer {
  max-height: 500px;
  padding-bottom: 1.25rem;
}

/* Stats row */
.stats {
  display: flex;
  gap: 2rem;
  margin: 2rem 0;
  flex-wrap: wrap;
}
.stat {
  flex: 1;
  min-width: 140px;
}
.stat-number {
  font-family: var(--font-heading);
  font-size: 2rem;
  color: var(--accent-gold);
  display: block;
}
.stat-label {
  font-size: 0.875rem;
  color: var(--text-muted);
}

/* Color bar (roki) */
.color-bar {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin: 1rem 0;
}
.color-bar-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: rgba(255, 255, 255, 0.75);
}
.color-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  flex-shrink: 0;
}
.color-dot.red { background: #ef4444; }
.color-dot.orange { background: #f97316; }
.color-dot.yellow { background: #eab308; }
.color-dot.green { background: #22c55e; }

/* CTA na dnu vsake podstrani */
.page-cta {
  text-align: center;
  margin: 4rem 0 2rem;
  padding: 3rem 0;
  border-top: 1px solid rgba(212, 160, 52, 0.15);
}
.page-cta p {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--text);
  margin-bottom: 1.5rem;
}
.page-cta .cta-button {
  display: inline-block;
  padding: 0.75rem 2rem;
  border: none;
  border-radius: 2rem;
  background: var(--accent-gold);
  color: var(--bg);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: background 0.2s, transform 0.2s;
}
.page-cta .cta-button:hover {
  background: var(--accent-glow);
  transform: translateY(-1px);
}

/* Classification spinner */
.class-spinner {
  margin: 2.5rem 0;
  overflow: hidden;
  height: 3.5rem;
  position: relative;
}
.class-spinner::before,
.class-spinner::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 1rem;
  z-index: 2;
  pointer-events: none;
}
.class-spinner::before {
  top: 0;
  background: linear-gradient(to bottom, var(--bg), transparent);
}
.class-spinner::after {
  bottom: 0;
  background: linear-gradient(to top, var(--bg), transparent);
}
.class-spinner-track {
  display: flex;
  flex-direction: column;
  animation: spinClasses 12s ease-in-out infinite;
}
.class-spinner-item {
  height: 3.5rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-heading);
  font-size: 1.75rem;
  color: var(--text);
  flex-shrink: 0;
}
.class-spinner-item .badge {
  font-family: var(--font-body);
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.2rem 0.5rem;
  border-radius: 0.25rem;
  font-weight: 600;
}
.badge-urgent {
  background: rgba(239, 68, 68, 0.15);
  color: #ef4444;
}
.badge-normal {
  background: rgba(255, 255, 255, 0.06);
  color: var(--text-muted);
}
@keyframes spinClasses {
  0%, 8%    { transform: translateY(0); }
  12%, 20%  { transform: translateY(-3.5rem); }
  24%, 32%  { transform: translateY(-7rem); }
  36%, 44%  { transform: translateY(-10.5rem); }
  48%, 56%  { transform: translateY(-14rem); }
  60%, 68%  { transform: translateY(-17.5rem); }
  72%, 80%  { transform: translateY(-21rem); }
  84%, 92%  { transform: translateY(-24.5rem); }
  96%, 100% { transform: translateY(0); }
}

/* Adapt callout */
.adapt-callout {
  background: rgba(212, 160, 52, 0.03);
  border: 1px solid rgba(212, 160, 52, 0.12);
  border-radius: 1rem;
  padding: 2rem;
  margin: 2.5rem 0;
}
.adapt-callout h3 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 400;
  margin: 0 0 0.75rem;
  color: var(--text);
}
.adapt-callout p {
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 0.5rem;
}
.adapt-callout p:last-child {
  margin-bottom: 0;
}

/* Pricing cards */
.pricing-card {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 2rem;
  margin: 2rem 0;
  background: rgba(255, 255, 255, 0.02);
}
.pricing-card h2 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  margin-bottom: 1rem;
}
.pricing-card p {
  margin-bottom: 1rem;
}
.pricing-card .dash-list {
  margin-bottom: 0;
}
.pricing-card-highlight {
  border-color: rgba(212, 160, 52, 0.25);
  background: rgba(212, 160, 52, 0.04);
}

/* Comparison table */
.compare-table {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  overflow: hidden;
  margin: 2rem 0;
}
.compare-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.compare-row:last-child {
  border-bottom: none;
}
.compare-header {
  background: rgba(255, 255, 255, 0.04);
  font-weight: 600;
}
.compare-cell {
  padding: 0.75rem 1rem;
  font-size: 0.85rem;
  line-height: 1.5;
}
.compare-label {
  color: var(--text-muted);
  font-weight: 500;
}
.compare-highlight {
  color: var(--text);
}
.compare-row:not(.compare-header) .compare-cell:last-child {
  color: var(--text-muted);
}
@media (max-width: 640px) {
  .compare-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .compare-cell {
    padding: 0.5rem 1rem;
  }
  .compare-label {
    padding-top: 1rem;
    font-weight: 600;
    color: var(--text);
  }
  .compare-header {
    display: none;
  }
  .compare-row:not(.compare-header) .compare-highlight::before {
    content: "Dona: ";
    color: var(--text-muted);
    font-size: 0.75rem;
  }
  .compare-row:not(.compare-header) .compare-cell:last-child::before {
    content: "Splošna AI: ";
    font-size: 0.75rem;
  }
}

/* Testimonials */
.testimonial {
  border-left: 2px solid rgba(212, 160, 52, 0.3);
  padding: 1.25rem 1.5rem;
  margin: 1.5rem 0;
}
.testimonial p {
  font-style: italic;
  margin-bottom: 0.75rem;
}
.testimonial-author {
  font-style: normal;
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* Video placeholder */
.video-placeholder {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 4rem 2rem;
  text-align: center;
  color: var(--text-muted);
  font-size: 0.875rem;
  margin: 2rem 0;
  background: rgba(255, 255, 255, 0.02);
  position: relative;
}
.video-placeholder-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  opacity: 0.4;
}

/* Calculator */
.calc-section {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 2rem;
  margin: 2rem 0;
  background: rgba(255, 255, 255, 0.02);
}
.calc-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.calc-row label {
  font-size: 0.9rem;
}
.calc-row input[type="range"] {
  width: 180px;
  accent-color: var(--accent-gold);
}
.calc-row .calc-value {
  min-width: 60px;
  text-align: right;
  font-weight: 600;
}
.calc-results {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1.5rem;
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}
.calc-result {
  text-align: center;
}
.calc-result-number {
  font-family: var(--font-heading);
  font-size: 2rem;
  color: var(--accent-gold);
  display: block;
}
.calc-result-label {
  font-size: 0.8rem;
  color: var(--text-muted);
}
@media (max-width: 640px) {
  .calc-row {
    flex-wrap: wrap;
  }
  .calc-row input[type="range"] {
    width: 100%;
    order: 3;
  }
  .calc-results {
    flex-direction: column;
    gap: 1rem;
  }
}

/* Screenshot placeholder */
.screenshot-placeholder {
  border: 1px dashed rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  padding: 3rem 2rem;
  text-align: center;
  color: var(--text-muted);
  font-size: 0.875rem;
  margin: 2rem 0;
  background: rgba(255, 255, 255, 0.02);
  min-height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.screenshot-placeholder img {
  max-width: 100%;
  border-radius: 8px;
}

/* Section divider */
.section-divider {
  border: none;
  border-top: 1px solid rgba(212, 160, 52, 0.1);
  margin: 3rem 0;
}

/* Footer */
.footer {
  max-width: 740px;
  margin: 0 auto;
  padding: 4rem 2rem 3rem;
  border-top: 1px solid rgba(212, 160, 52, 0.1);
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 3rem;
  flex-wrap: wrap;
}
.footer-left {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.footer-left-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.footer-logo {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--accent-gold);
  font-style: italic;
}
.footer-name {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--text);
}
.footer-tagline {
  color: var(--text-muted);
  font-size: 0.85rem;
  margin-top: 0.25rem;
}
.footer-right {
  display: flex;
  gap: 4rem;
}
.footer-col {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.footer-col-title {
  text-transform: uppercase;
  font-size: 0.7rem;
  color: var(--accent-gold);
  letter-spacing: 0.1em;
  margin-bottom: 0.5rem;
}
.footer a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.85rem;
  display: block;
  line-height: 1.6;
}
.footer a:hover {
  color: var(--accent);
}
.footer-badges {
  display: flex;
  gap: 2rem;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  font-size: 0.75rem;
  color: var(--text-muted);
  flex-wrap: wrap;
}

/* Responsive */
@media (max-width: 640px) {
  .content {
    padding: 6rem 1.25rem 3rem;
  }
  .content h1 {
    font-size: 2rem;
  }
  .content h2 {
    font-size: 1.4rem;
  }
  .nav-links {
    display: none;
  }
  .nav-cta {
    display: none;
  }
  .nav-hamburger {
    display: block;
  }
  .nav {
    padding: 1rem 1.25rem;
  }
  .stats {
    flex-direction: column;
    gap: 1rem;
  }
  .footer-inner {
    flex-direction: column;
  }
  .footer-right {
    flex-direction: column;
    gap: 1.5rem;
  }
  .scenario {
    padding: 1.5rem;
  }
  .func-nav {
    padding: 5.5rem 1.25rem 0;
    gap: 0.5rem;
  }
  .func-nav a {
    font-size: 0.75rem;
    padding: 0.4rem 0.75rem;
  }
}

/* Bottom func-nav */
.func-nav-bottom {
  padding: 0 2rem 2rem;
}

/* Prev/next function arrows */
.func-arrow {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  z-index: 50;
}
.func-arrow-prev { left: max(1rem, calc((100vw - 740px) / 2 - 60px)); }
.func-arrow-next { right: max(1rem, calc((100vw - 740px) / 2 - 60px)); }
.func-arrow a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(212, 160, 52, 0.06);
  border: 1px solid rgba(212, 160, 52, 0.25);
  color: var(--accent-gold);
  text-decoration: none;
  font-size: 1.4rem;
  transition: border-color 0.2s, background 0.2s, box-shadow 0.2s;
  animation: arrowPulse 2.5s ease-in-out infinite;
}
.func-arrow a:hover {
  color: var(--accent-glow);
  border-color: var(--accent-gold);
  background: rgba(212, 160, 52, 0.12);
  box-shadow: 0 0 20px rgba(212, 160, 52, 0.2);
  animation: none;
}
@keyframes arrowPulse {
  0%, 100% { border-color: rgba(212, 160, 52, 0.15); box-shadow: 0 0 0 rgba(212, 160, 52, 0); }
  50% { border-color: rgba(212, 160, 52, 0.5); box-shadow: 0 0 16px rgba(212, 160, 52, 0.15); }
}
.func-arrow-label {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 0.7rem;
  color: var(--text-muted);
  white-space: nowrap;
  opacity: 0;
  transition: opacity 0.2s;
  pointer-events: none;
}
.func-arrow-prev .func-arrow-label { left: calc(100% + 0.5rem); }
.func-arrow-next .func-arrow-label { right: calc(100% + 0.5rem); }
.func-arrow:hover .func-arrow-label { opacity: 1; }

/* Slide transitions */
@keyframes slideOutLeft {
  0% { opacity: 1; transform: translateX(0); }
  100% { opacity: 0; transform: translateX(-35vw); }
}
@keyframes slideOutRight {
  0% { opacity: 1; transform: translateX(0); }
  100% { opacity: 0; transform: translateX(35vw); }
}
@keyframes slideInFromRight {
  0% { opacity: 0; transform: translateX(35vw); }
  100% { opacity: 1; transform: translateX(0); }
}
@keyframes slideInFromLeft {
  0% { opacity: 0; transform: translateX(-35vw); }
  100% { opacity: 1; transform: translateX(0); }
}
.slide-out-left { animation: slideOutLeft 0.4s cubic-bezier(0.4, 0, 0.2, 1) forwards; }
.slide-out-right { animation: slideOutRight 0.4s cubic-bezier(0.4, 0, 0.2, 1) forwards; }
.slide-in-from-right { animation: slideInFromRight 0.45s cubic-bezier(0, 0, 0.2, 1) forwards; }
.slide-in-from-left { animation: slideInFromLeft 0.45s cubic-bezier(0, 0, 0.2, 1) forwards; }

/* Prevent horizontal scrollbar during slide */
body.sliding { overflow-x: hidden; }

@media (max-width: 640px) {
  .func-arrow { display: none; }
  .func-nav-bottom { padding: 0 1.25rem 2rem; }
}

/* Sticky mobile CTA */
.mobile-sticky-cta {
  display: none;
  position: fixed;
  bottom: 1rem;
  left: 1rem;
  right: 1rem;
  z-index: 90;
  text-align: center;
}
.mobile-sticky-cta a {
  display: inline-block;
  padding: 0.75rem 2rem;
  background: var(--accent-gold);
  color: var(--bg);
  border-radius: 2rem;
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 500;
  box-shadow: 0 4px 20px rgba(0,0,0,0.5);
}
@media (max-width: 640px) {
  .mobile-sticky-cta { display: block; }
  .footer { padding-bottom: 5rem; }
}

/* Mobile func sub-menu */
.mobile-func-toggle {
  position: relative;
}
.mobile-func-toggle::after {
  content: '▾';
  font-size: 0.6em;
  margin-left: 0.3em;
  display: inline-block;
  transition: transform 0.3s ease;
}
.mobile-func-sub {
  display: none;
  flex-direction: column;
  gap: 0.75rem;
  padding-left: 1rem;
}
.mobile-func-sub.open {
  display: flex;
}
.mobile-func-link {
  font-size: 1.1rem !important;
  font-family: var(--font-body) !important;
  color: var(--text-muted) !important;
}
.mobile-func-link:hover,
.mobile-func-link.active {
  color: var(--accent-gold) !important;
}
