:root {
  --sv-red: rgb(220,53,69);
  --sv-green: rgb(25,135,84);
  --sv-red-green: rgb(74, 115, 80);
  --sv-yellow: rgb(255,193,7);
}

.glogo2 { width: auto; height: 80px; }

.alogo2 { width: auto; height: 80px; }

.glogo { width: auto; height: 80px; }

.alogo { width: auto; height: 80px;}

@media (min-width: 992px) {
  .rounded-lg-3 { border-radius: .3rem; }
}

.bd-placeholder-img {
  font-size: 1.125rem;
  text-anchor: middle;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}

.lang-select {
  background-color: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.1);
  color: var(--text-main);
  border-radius: 20px;
  padding-left: 15px;
  cursor: pointer;
}

.lang-select:focus {
  background-color: rgba(0,0,0,0.5);
  color: white;
  box-shadow: 0 0 0 2px var(--gold-primary);
  border-color: var(--gold-primary);
}

.img-resize {
    width: 100%;
    height: 100%;
}

@media (min-width: 768px) {
  .bd-placeholder-img-lg {
    font-size: 3.5rem;
  }

.img-resize {
    width: 50%;
    height: 50%;
}
}

.b-example-divider {
  height: 3rem;
  background-color: rgba(0, 0, 0, .1);
  border: solid rgba(0, 0, 0, .15);
  border-width: 1px 0;
  box-shadow: inset 0 .5em 1.5em rgba(0, 0, 0, .1), inset 0 .125em .5em rgba(0, 0, 0, .15);
}

.b-example-vr {
  flex-shrink: 0;
  width: 1.5rem;
  height: 100vh;
}

.bi {
  vertical-align: -.125em;
  fill: currentColor;
}

.nav-scroller {
  position: relative;
  z-index: 2;
  height: 2.75rem;
  overflow-y: hidden;
}

.nav-scroller .nav {
  display: flex;
  flex-wrap: nowrap;
  padding-bottom: 1rem;
  margin-top: -1px;
  overflow-x: auto;
  text-align: center;
  white-space: nowrap;
  -webkit-overflow-scrolling: touch;
}

.hidden {
  display: none;
}

.green-green {
    color: #fff;
    background: var(--sv-green);
}

.red-red {
    color: #fff;
    background: var(--sv-red);
}

.yellow-yellow {
    color: #fff;
    background: yellow;
}

.green-red {
  color: #fff;
  background: linear-gradient(to right, var(--sv-green) 50%, var(--sv-red) 50%);
}

.red-green {
  color: #fff;
  background: linear-gradient(to right, var(--sv-red) 50%, var(--sv-green) 50%);
}

.green-yellow {
  color: #fff;
  background: linear-gradient(to right, var(--sv-green) 50%, var(--sv-yellow) 50%);
}

.yellow-green {
  color: #fff;
  background: linear-gradient(to right, var(--sv-yellow) 50%, var(--sv-green) 50%);
}
  
.red-yellow {
  color: #fff;
  background: linear-gradient(to right, var(--sv-red) 50%, var(--sv-yellow) 50%);
}

.yellow-red {
  color: #fff;
  background: linear-gradient(to right, var(--sv-yellow) 50%, var(--sv-red) 50%);
}


/* ============================================================
   fincoach-site (new design): dark + gold mindset landing
   ============================================================ */

:root {
  --bg:        #07091a;
  --bg2:       #0c0f28;
  --gold:      #C9A84C;
  --gold-lt:   #F2D97E;
  --gold-dk:   #7a5a1a;
  --glow:      rgba(201,168,76,0.13);
  --gold-glow: rgba(201,168,76,0.12);
  --border:    rgba(201,168,76,0.18);
  --white:     #ffffff;
  --text:      #e8e4d9;
  --off-white: #F0EDE6;
  --muted:     rgba(232,228,217,0.52);
  --card:      rgba(255,255,255,0.035);
  --card-bg:   rgba(255,255,255,0.04);
}

.fc-site, .fc-site * { box-sizing: border-box; }
.fc-site { margin: 0; padding: 0; }
.fc-site h1, .fc-site h2, .fc-site h3, .fc-site h4, .fc-site p, .fc-site ul, .fc-site li { margin: 0; padding: 0; }

html { scroll-behavior: smooth; }
body.fc-site {
  font-family: 'DM Sans', sans-serif;
  background: var(--bg);
  color: var(--text);
  font-size: 17px;
  line-height: 1.72;
  overflow-x: hidden;
}

/* ── NAV ── */
.fc-nav {
  position: sticky; top: 0; z-index: 300;
  background: rgba(7,9,26,0.9);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  padding: 0.9rem 6%;
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem;
}
.fc-nav-logo {
  display: flex; align-items: center; gap: 10px;
  font-family: 'DM Serif Display', serif;
  font-size: 1.3rem; color: var(--gold-lt);
  text-decoration: none; letter-spacing: -0.01em;
}
.fc-nav-logo img { width: 32px; height: 32px; border-radius: 8px; }
.fc-nav-links { display: flex; gap: 2rem; list-style: none; }
.fc-nav-links a { color: var(--muted); text-decoration: none; font-size: 0.88rem; font-weight: 500; transition: color .2s; }
.fc-nav-links a:hover { color: var(--gold-lt); }
.fc-nav-right { display: flex; align-items: center; gap: 1rem; }
.fc-nav-cta {
  background: var(--gold); color: #07091a;
  padding: .5rem 1.3rem; border-radius: 100px;
  font-weight: 700; font-size: .85rem; text-decoration: none;
  transition: background .2s, transform .15s;
}
.fc-nav-cta:hover { background: var(--gold-lt); transform: translateY(-1px); }

/* gold-themed language selector for the new site */
.lang-select-site {
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
  color: var(--text);
  font-family: 'DM Sans', sans-serif;
  font-size: .82rem; font-weight: 500;
  text-transform: uppercase; letter-spacing: .06em;
  border-radius: 100px;
  padding: .45rem 2rem .45rem .9rem;
  cursor: pointer;
  appearance: none; -webkit-appearance: none; -moz-appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, var(--gold) 50%), linear-gradient(135deg, var(--gold) 50%, transparent 50%);
  background-position: calc(100% - 14px) 50%, calc(100% - 9px) 50%;
  background-size: 5px 5px, 5px 5px;
  background-repeat: no-repeat;
  transition: border-color .2s, color .2s, background-color .2s;
}
.lang-select-site:hover { border-color: var(--gold); color: var(--gold-lt); }
.lang-select-site:focus { outline: none; border-color: var(--gold); color: var(--gold-lt); box-shadow: 0 0 0 2px var(--gold-glow); }
.lang-select-site option { background: var(--bg); color: var(--text); text-transform: uppercase; }

@media (max-width: 700px) {
  .fc-nav-links { display: none; }
  .fc-nav { padding: .9rem 5%; }
  .fc-nav-right { gap: .6rem; }
}

/* ── HERO ── */
.fc-hero {
  min-height: 100vh;
  display: flex; align-items: center;
  padding: 7rem 6% 5rem;
  gap: 5rem;
  position: relative;
  overflow: hidden;
}
.fc-hero-sparkle {
  position: absolute; inset: 0;
  background-image: url('imgs/bg_black_gold.webp');
  background-size: cover; background-position: center top;
  opacity: .35;
}
.fc-hero-veil {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(7,9,26,.8) 0%, rgba(7,9,26,.4) 55%, rgba(7,9,26,.85) 100%);
}
.fc-hero-left  { position: relative; z-index: 2; flex: 1; max-width: 580px; }
.fc-hero-right { position: relative; z-index: 2; flex: 0 0 auto; }

.fc-eyebrow {
  display: inline-flex; align-items: center; gap: .5rem;
  background: var(--glow); border: 1px solid var(--border);
  color: var(--gold-lt); font-size: .72rem; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase;
  padding: .35rem .9rem; border-radius: 100px; margin-bottom: 1.8rem;
}
.fc-eyebrow-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--gold); }

.fc-site h1 {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(2.6rem, 4.5vw, 4.2rem);
  line-height: 1.07; color: var(--white);
  margin-bottom: 1.5rem;
}
.fc-site h1 em { font-style: italic; color: var(--gold-lt); }

.fc-hero-lead {
  font-size: 1.1rem; color: var(--muted);
  max-width: 460px; margin-bottom: 2.5rem; line-height: 1.7;
}
.fc-hero-pull {
  border-left: 3px solid var(--gold);
  padding: .8rem 1.2rem;
  background: var(--glow);
  border-radius: 0 10px 10px 0;
  margin-top: 2rem;
  margin-bottom: 2.5rem;
  font-style: italic;
  font-size: 1rem;
  color: var(--text);
}
.fc-btn-row { display: flex; gap: .85rem; flex-wrap: wrap; margin-top: 2rem; margin-bottom: 3rem; }
.fc-btn-gold {
  background: var(--gold); color: #07091a;
  padding: .9rem 2.1rem; border-radius: 100px;
  font-weight: 700; font-size: .98rem; text-decoration: none;
  box-shadow: 0 4px 28px rgba(201,168,76,.28);
  transition: background .2s, transform .15s, box-shadow .2s;
  display: inline-block;
}
.fc-btn-gold:hover { background: var(--gold-lt); transform: translateY(-2px); box-shadow: 0 8px 36px rgba(201,168,76,.42); }
.fc-btn-ghost {
  background: transparent; border: 1.5px solid var(--border);
  color: var(--text); padding: .9rem 1.8rem; border-radius: 100px;
  font-weight: 500; font-size: .98rem; text-decoration: none;
  transition: border-color .2s, color .2s;
  display: inline-block;
}
.fc-btn-ghost:hover { border-color: var(--gold); color: var(--gold-lt); }

/* SEO landing pages: quote lists + inline FAQ */
.fc-quote-grid { display: grid; gap: .9rem; margin: 1.6rem 0 2.2rem; }
.fc-quote-item {
  border-left: 3px solid var(--gold);
  background: var(--glow);
  padding: 1rem 1.3rem;
  border-radius: 0 10px 10px 0;
  margin: 0;
  font-style: italic;
}
.fc-quote-item p { margin: 0; }
.fc-quote-item footer { margin-top: .45rem; font-style: normal; font-size: .85rem; color: var(--muted); }
.fc-landing-faq { margin-top: 3rem; }
.fc-landing-faq h2 { margin-bottom: 1.2rem; }
.fc-article-faq { margin: 2.5rem 0 1rem; }
.fc-article-faq h2 { margin-bottom: 1.2rem; }

.fc-store-badges { align-items: center; }
.fc-store-badges a:not(.fc-btn-ghost) { display: inline-block; line-height: 0; transition: transform .15s, opacity .2s; }
.fc-store-badges a:not(.fc-btn-ghost):hover { transform: translateY(-2px); opacity: .92; }
.fc-store-badges img { height: 52px; width: auto; display: block; }

.fc-hero-stats { display: flex; gap: 2.5rem; flex-wrap: wrap; }
.fc-stat-n { font-family: 'DM Serif Display', serif; font-size: 1.8rem; color: var(--gold-lt); }
.fc-stat-l { font-size: .75rem; color: var(--muted); margin-top: -.15rem; }

.fc-hero-phone { width: 270px; position: relative; }
.fc-hero-phone img { width: 100%; display: none; border-radius: 36px; box-shadow: 0 28px 72px rgba(0,0,0,.7); }
.fc-hero-phone img.active { display: block; }
.fc-hero-dots { display: flex; justify-content: center; gap: 6px; margin-top: 1.1rem; }
.fc-hdot { width: 7px; height: 7px; border-radius: 50%; background: rgba(201,168,76,.25); cursor: pointer; transition: background .2s, transform .2s; }
.fc-hdot.active { background: var(--gold); transform: scale(1.3); }

@media (max-width: 900px) {
  .fc-hero { flex-direction: column; padding-top: 6rem; gap: 3rem; }
  .fc-hero-lead { max-width: 100%; }
  .fc-hero-right { width: 100%; display: flex; flex-direction: column; align-items: center; }
  .fc-hero-phone { width: 230px; }
}

/* ── SECTIONS ── */
.fc-section { padding: 7rem 6%; }
.fc-section-alt { background: var(--bg2); }
.fc-label {
  font-size: .72rem; font-weight: 700; letter-spacing: .12em;
  text-transform: uppercase; color: var(--gold); margin-bottom: .7rem;
}
.fc-site h2 {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(1.9rem, 3vw, 2.8rem);
  color: var(--white); line-height: 1.14; margin-bottom: 1rem;
}
.fc-site h2 em { font-style: italic; color: var(--gold-lt); }
.fc-lead {
  font-size: 1.05rem; color: var(--muted);
  max-width: 620px; line-height: 1.7; margin-bottom: 2.5rem;
}
.fc-muted-p {
  color: var(--muted); font-size: .95rem; line-height: 1.7;
}
.fc-muted-p + .fc-muted-p { margin-top: 1rem; }

/* alternating text + screen */
.fc-story { display: flex; align-items: center; gap: 6rem; padding: 7rem 6%; }
.fc-story.flip { flex-direction: row-reverse; }
.fc-story-text { flex: 1; }
.fc-story-text h2 { margin-bottom: .9rem; }
.fc-story-text .fc-lead { margin-bottom: 1.5rem; }
.fc-story-img { flex: 0 0 auto; }
.fc-story-img img { width: 260px; border-radius: 32px; box-shadow: 0 20px 64px rgba(0,0,0,.65); display: block; }
.fc-story-img.wide img { width: 300px; }

@media (max-width: 900px) {
  .fc-story, .fc-story.flip { flex-direction: column; padding: 5rem 5%; gap: 3rem; }
  .fc-story-img img, .fc-story-img.wide img { width: 230px; margin: 0 auto; }
}

.fc-big-quote {
  border-left: 3px solid var(--gold);
  padding: .9rem 1.3rem;
  background: var(--glow);
  border-radius: 0 12px 12px 0;
  font-style: italic;
  font-size: 1.05rem;
  color: var(--text);
  margin: 1.4rem 0;
}
.fc-quote-author {
  display: block; margin-top: .35rem;
  font-size: .82rem; opacity: .7; font-style: normal;
}

/* split panel "common limiting beliefs" */
.fc-split { display: flex; gap: 3rem; flex-wrap: wrap; margin-top: 1rem; }
.fc-split-col { flex: 1; min-width: 260px; }
.fc-beliefs-card {
  background: var(--glow);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 2rem;
  height: 100%;
}
.fc-beliefs-list { display: flex; flex-direction: column; gap: 1rem; margin-top: 1.2rem; }
.fc-belief { display: flex; gap: .75rem; align-items: flex-start; }
.fc-belief .fc-belief-bullet { color: var(--gold-lt); margin-top: .15rem; }
.fc-belief strong { color: var(--white); display: block; }
.fc-belief span { font-size: .875rem; color: var(--muted); }

/* numbered steps */
.fc-steps { list-style: none; display: flex; flex-direction: column; gap: 1rem; margin-top: 1.2rem; }
.fc-steps li { display: flex; gap: 1rem; align-items: flex-start; }
.fc-step-n {
  flex: 0 0 28px; height: 28px;
  border-radius: 50%; background: var(--glow); border: 1px solid var(--border);
  color: var(--gold); font-size: .78rem; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  margin-top: .25rem;
}
.fc-step-body strong { color: var(--white); display: block; margin-bottom: .1rem; }
.fc-step-body p { font-size: .92rem; color: var(--muted); }

/* features grid */
.fc-features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 1.25rem;
  margin-top: 3rem;
}
.fc-feat {
  background: var(--card); border: 1px solid var(--border);
  border-radius: 18px; padding: 1.75rem;
  transition: transform .2s, border-color .2s, background .2s;
}
.fc-feat:hover { transform: translateY(-4px); border-color: var(--gold); background: rgba(201,168,76,.06); }
.fc-feat-icon { font-size: 1.4rem; margin-bottom: .9rem; }
.fc-feat-title { font-weight: 700; font-size: .96rem; color: var(--white); margin-bottom: .4rem; }
.fc-feat-desc { font-size: .875rem; color: var(--muted); line-height: 1.6; }

/* screens row */
.fc-screens-row {
  display: flex; gap: 1.5rem;
  overflow-x: auto; padding-top: 2rem; padding-bottom: 1.25rem;
  scrollbar-width: thin; scrollbar-color: var(--gold-dk) transparent;
}
.fc-screens-row::-webkit-scrollbar { height: 3px; }
.fc-screens-row::-webkit-scrollbar-thumb { background: var(--gold-dk); border-radius: 2px; }
.fc-screen-item { flex: 0 0 auto; text-align: center; }
.fc-screen-item img {
  width: 190px; border-radius: 26px; display: block;
  box-shadow: 0 12px 44px rgba(0,0,0,.55);
  transition: transform .3s, box-shadow .3s;
}
.fc-screen-item img:hover { transform: translateY(-6px) scale(1.02); box-shadow: 0 20px 60px rgba(0,0,0,.7); }
.fc-screen-cap { font-size: .75rem; color: var(--muted); margin-top: .7rem; }

/* articles */
.fc-articles-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 1.25rem;
  margin-top: 3rem;
}
@media (max-width: 850px) { .fc-articles-grid { grid-template-columns: 1fr; } }
.fc-article-card {
  background: var(--card); border: 1px solid var(--border);
  border-radius: 18px; padding: 1.75rem;
  text-decoration: none; color: inherit;
  display: flex; flex-direction: column;
  transition: transform .2s, border-color .2s, background .2s;
}
.fc-article-card:hover { transform: translateY(-4px); border-color: var(--gold); background: rgba(201,168,76,.06); }
.fc-article-card.fc-featured { background: rgba(201,168,76,.065); border-color: rgba(201,168,76,.32); }
.fc-art-tag { font-size: .7rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--gold); margin-bottom: .7rem; }
.fc-art-title {
  font-family: 'DM Serif Display', serif;
  font-size: 1.15rem; color: var(--white); line-height: 1.28; margin-bottom: .7rem;
}
.fc-article-card.fc-featured .fc-art-title { font-size: 1.4rem; }
.fc-art-excerpt { font-size: .875rem; color: var(--muted); line-height: 1.6; flex: 1; margin-bottom: 1.25rem; }
.fc-art-more { font-size: .82rem; color: var(--gold); font-weight: 700; }

/* final CTA */
.fc-cta-section {
  padding: 8rem 6%; text-align: center;
  position: relative; overflow: hidden;
}
.fc-cta-sparkle {
  position: absolute; inset: 0;
  background-image: url('imgs/bg_black_gold.webp');
  background-size: cover; background-position: center;
  opacity: .22;
}
.fc-cta-inner { position: relative; z-index: 1; }
.fc-cta-inner h2 { margin-bottom: 1rem; }
.fc-cta-inner .fc-lead { margin: 0 auto 2.5rem; text-align: center; }
.fc-cta-note { color: var(--muted); font-size: .82rem; margin-top: 1rem; }

/* footer */
.fc-footer {
  background: #030510; border-top: 1px solid var(--border);
  padding: 2.5rem 6%;
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1rem;
}
.fc-footer-logo { display: flex; align-items: center; gap: 9px; font-family: 'DM Serif Display', serif; font-size: 1.05rem; color: var(--gold-lt); text-decoration: none; }
.fc-footer-logo img { width: 26px; height: 26px; border-radius: 6px; }
.fc-footer p { font-size: .78rem; color: var(--muted); margin: 0; }
.fc-footer-links { display: flex; gap: 1.25rem; flex-wrap: wrap; }
.fc-footer-links a { color: var(--muted); font-size: .78rem; text-decoration: none; transition: color .2s; }
.fc-footer-links a:hover { color: var(--gold-lt); }
.fc-footer-links a.admin { color: #d65b6f; }

/* ── ARTICLE PAGES ── */
.fc-article-nav-back {
  color: var(--muted); font-size: 0.875rem; text-decoration: none;
  display: flex; align-items: center; gap: 0.4rem;
  transition: color .2s;
}
.fc-article-nav-back:hover { color: var(--gold-lt); }

.fc-article-wrap {
  max-width: 720px; margin: 0 auto;
  padding: 5rem 5% 7rem;
}
.fc-article-tag {
  display: inline-block;
  background: var(--gold-glow); border: 1px solid var(--border);
  color: var(--gold-lt);
  font-size: 0.75rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  padding: 0.3rem 0.85rem; border-radius: 100px;
  margin-bottom: 1.75rem;
}
.fc-article-wrap h1 {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--white); line-height: 1.12;
  margin-bottom: 1.25rem;
}
.fc-article-meta {
  font-size: 0.85rem; color: var(--muted);
  margin-bottom: 3rem; padding-bottom: 2rem;
  border-bottom: 1px solid var(--border);
}
.fc-article-body p { margin-bottom: 1.5rem; color: var(--off-white); }
.fc-article-body h2 {
  font-family: 'DM Serif Display', serif;
  font-size: 1.6rem; color: var(--white);
  margin: 2.5rem 0 1rem;
}
.fc-article-body strong { color: var(--white); }
.fc-article-body blockquote {
  border-left: 3px solid var(--gold);
  padding: 1rem 1.5rem; margin: 2rem 0;
  background: var(--gold-glow); border-radius: 0 12px 12px 0;
}
.fc-article-body blockquote p {
  color: var(--gold-lt); font-style: italic; font-size: 1.1rem; margin: 0;
}

.fc-article-cta {
  margin-top: 4rem; padding: 2.5rem;
  background: var(--gold-glow);
  border: 1px solid var(--border);
  border-radius: 20px;
  text-align: center;
}
.fc-article-cta h3 {
  font-family: 'DM Serif Display', serif;
  font-size: 1.5rem; color: var(--white);
  margin-bottom: 0.75rem;
}
.fc-article-cta p {
  color: var(--muted); font-size: 0.95rem; margin-bottom: 1.5rem;
}

.fc-more-articles {
  margin-top: 5rem;
  border-top: 1px solid var(--border);
  padding-top: 3rem;
}
.fc-more-articles h3 {
  font-family: 'DM Serif Display', serif;
  font-size: 1.4rem; color: var(--white);
  margin-bottom: 1.5rem;
}
.fc-more-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
@media (max-width: 600px) { .fc-more-grid { grid-template-columns: 1fr; } }
.fc-more-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 16px; padding: 1.5rem;
  text-decoration: none; color: inherit;
  transition: border-color .2s, background .2s;
}
.fc-more-card:hover { border-color: var(--gold); background: rgba(201,168,76,0.07); }
.fc-more-card-tag {
  font-size: 0.7rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 0.5rem;
}
.fc-more-card h4 { font-size: 1rem; color: var(--white); line-height: 1.35; }


/* ── Entity definition ── */
.fc-entity-def {
  font-size: 1.1rem;
  color: var(--muted);
  line-height: 1.7;
  max-width: 460px;
  margin-top: .6rem;
}

/* ── About page ── */
.fc-about-h1 {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 2rem;
}
.fc-about-h1 em { font-style: italic; color: var(--gold-lt); }
.fc-about-store-btns { display: flex; gap: .85rem; flex-wrap: wrap; margin-top: .5rem; }

/* ── About section ── */
.fc-about-cols {
  display: flex;
  gap: 3rem;
  flex-wrap: wrap;
  margin-top: 2rem;
  align-items: flex-start;
}
.fc-about-prose {
  flex: 1;
  min-width: 260px;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.fc-about-trust-links {
  display: flex;
  gap: 1.25rem;
  flex-wrap: wrap;
}
.fc-about-trust-links a {
  font-size: .82rem;
  color: var(--muted);
  text-decoration: none;
  transition: color .2s;
}
.fc-about-trust-links a:hover { color: var(--gold-lt); }

.fc-about-meta-card {
  flex: 0 0 auto;
  min-width: 260px;
  background: var(--card-bg, rgba(255,255,255,.04));
  border: 1px solid var(--border, rgba(255,255,255,.09));
  border-radius: 16px;
  padding: 1.5rem 1.75rem;
  display: flex;
  flex-direction: column;
  gap: .85rem;
}
.fc-about-meta-row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  font-size: .875rem;
  border-bottom: 1px solid var(--border, rgba(255,255,255,.06));
  padding-bottom: .75rem;
}
.fc-about-meta-row:last-child { border-bottom: none; padding-bottom: 0; }
.fc-about-meta-label { color: var(--muted); white-space: nowrap; }
.fc-about-meta-value { color: var(--off-white, #e8e8e8); font-weight: 500; text-align: right; }

/* ── FAQ section ── */
.fc-faq-list {
  display: flex;
  flex-direction: column;
  gap: .5rem;
  margin-top: 2rem;
  max-width: 800px;
}
.fc-faq-item {
  background: var(--card-bg, rgba(255,255,255,.04));
  border: 1px solid var(--border, rgba(255,255,255,.09));
  border-radius: 12px;
  overflow: hidden;
  transition: border-color .2s;
}
.fc-faq-item[open] { border-color: rgba(201,168,76,.35); }
.fc-faq-q {
  list-style: none;
  padding: 1.1rem 1.4rem;
  font-size: .97rem;
  font-weight: 600;
  color: var(--white, #fff);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  transition: color .2s;
}
.fc-faq-q::-webkit-details-marker { display: none; }
.fc-faq-q::after {
  content: '+';
  font-size: 1.25rem;
  color: var(--gold);
  flex-shrink: 0;
  transition: transform .2s;
}
.fc-faq-item[open] .fc-faq-q::after { transform: rotate(45deg); }
.fc-faq-q:hover { color: var(--gold-lt); }
.fc-faq-a {
  padding: 0 1.4rem 1.1rem;
  font-size: .9rem;
  color: var(--muted);
  line-height: 1.65;
}

/*
.red-green {
  color: #fff;
  background-image: repeating-linear-gradient(var(--sv-green), var(--sv-red));
}

.left-red-green-right-red {
  color: #fff;
  background: repeating-linear-gradient(var(--sv-green), var(--sv-red)), var(--sv-red);
  background-size: 50% 100%, 50% 100%;
  background-position: left, right;
  background-repeat: no-repeat;
}

.left-red-right-red-green {
  color: #fff;
  background:
    linear-gradient(to right, var(--sv-red) 50%, transparent 50%),
    repeating-linear-gradient(var(--sv-green), var(--sv-red));
  background-size: 100% 100%, 50% 100%;
  background-position: left, right;
  background-repeat: no-repeat;
}
*/