/* ------------------------------------------------
  Fulvox — brand layer on top of the Sofeland theme
  Loaded AFTER responsive.css on every page.

  Contents
  1. Tokens
  2. Accessibility: buttons, links, focus, motion
  3. Header (dual CTA)
  4. Eyebrow pill + hero
  5. Dashboard mockup (browser frame)
  6. FBR receipt card + chip
  7. Trust bar counters
  8. FBR navy band
  9. Feature clusters + industry cards
  10. Pricing toggle
  11. Forms: captcha row + honeypot
  12. Footer (solid navy)
  13. Misc fixes
------------------------------------------------ */

/* 1. Tokens */
:root {
  --fulvox-teal: #00ab9e;
  --fulvox-navy: #00184a;
  --fulvox-teal-text: #007a71;   /* 5.2:1 on white — small text/links */
  --fulvox-teal-deep: #005a53;
  --fulvox-grad-1: #008f84;
  --fulvox-grad-2: #007065;
  --fulvox-success: #0f7a4d;
  --fulvox-danger: #c0342b;
  --fulvox-offwhite: #f7f9fc;
  --fulvox-border: #e3e8f0;
  --fulvox-muted: #5b6b84;
  --fulvox-radius: 12px;
}

/* 1b. Template de-cluttering + spacing rhythm --------------------- */
/* The animated title-effect bars read as a stray glitch in static
   layouts, and the header's stacked-paper pseudo-elements float as
   odd white pills over tinted hero backgrounds. */
.title-effect { display: none !important; }
.header-1 #header-wrap::before, .header-1 #header-wrap::after { display: none; }

/* Template defaults are cavernous: page titles carried 250/200px
   padding around two lines of text, sections 120px. Tighten. */
section { padding: 100px 0; }
.page-title { padding: 200px 0 100px; }
.banner-1 { padding: 210px 0 110px; }

/* Sentence-case questions, not Capitalized Every Word. */
.accordion .accordion-button { text-transform: none; }

/* 2. Accessibility ------------------------------------------------ */

/* White on teal is 2.87:1 — teal buttons carry navy text instead. */
.btn.btn-theme { color: var(--fulvox-navy); font-weight: 600; }
.btn.btn-theme:hover { background: var(--fulvox-navy); color: #ffffff; }
.dark-bg .btn.btn-theme, .theme-bg .btn.btn-theme, .grediant-bg .btn.btn-theme { color: var(--fulvox-navy); }
.dark-bg .btn.btn-theme:hover, .grediant-bg .btn.btn-theme:hover { background: #ffffff; color: var(--fulvox-navy); }

/* Raw teal fails 4.5:1 for small text — use the darkened teal for links. */
.page-content p a:not(.btn):not(.icon-btn),
.accordion-body a,
.price-list a { color: var(--fulvox-teal-text); text-decoration: underline; }
.page-content p a:not(.btn):not(.icon-btn):hover,
.accordion-body a:hover { color: var(--fulvox-teal-deep); }

a:focus-visible, button:focus-visible, .btn:focus-visible,
.form-control:focus-visible, .navbar-toggler:focus-visible {
  outline: 3px solid var(--fulvox-teal);
  outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* 3. Header ------------------------------------------------------- */
.logo img { height: 44px; width: auto; }
#site-header.fixed-header .logo img { height: 40px; }
.header-cta { display: flex; align-items: center; gap: 10px; margin-left: 16px; white-space: nowrap; }
.header-cta .btn + .btn { margin-left: 0; }
.btn.btn-ghost { border: 1px solid var(--fulvox-border); background: none; color: var(--fulvox-navy); }
.btn.btn-ghost:hover { border-color: var(--fulvox-navy); background: var(--fulvox-navy); color: #ffffff; }
@media (max-width: 991px) {
  .header-cta { display: none; }
  .navbar-nav .nav-item-cta { margin-top: 12px; }
  .navbar-nav .nav-item-cta .btn { width: 100%; text-align: center; }
}

/* 4. Eyebrow + hero ----------------------------------------------- */
.eyebrow-pill {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(0, 171, 158, 0.10); color: var(--fulvox-navy);
  border: 1px solid rgba(0, 171, 158, 0.35);
  border-radius: 30px; padding: 8px 18px;
  font-size: 14px; font-weight: 600; line-height: 1.3;
}
.dark-bg .eyebrow-pill, .grediant-bg .eyebrow-pill {
  background: rgba(255, 255, 255, 0.10); color: #ffffff;
  border-color: rgba(255, 255, 255, 0.25);
}
.hero-microline { font-size: 14px; color: var(--fulvox-muted); margin-top: 18px; }
.hero-microline .bi { color: var(--fulvox-teal-text); margin-right: 4px; }
.banner-1 { background: linear-gradient(180deg, #eef7f6 0%, #ffffff 85%); }

/* 5. Dashboard mockup --------------------------------------------- */
/* The receipt card floats past the frame's right edge into its own
   gutter instead of covering the stats row. */
.hero-mockup { position: relative; padding-bottom: 60px; }
@media (min-width: 992px) {
  .hero-mockup .browser-frame { margin-right: 110px; }
  .hero-mockup .receipt-card { right: 0; }
}
.browser-frame {
  background: #ffffff; border: 1px solid var(--fulvox-border);
  border-radius: var(--fulvox-radius);
  box-shadow: 0 30px 60px rgba(0, 24, 74, 0.12);
  overflow: hidden;
}
.browser-bar {
  display: flex; align-items: center; gap: 6px;
  background: var(--fulvox-offwhite); border-bottom: 1px solid var(--fulvox-border);
  padding: 10px 14px;
}
.browser-bar .dot { width: 10px; height: 10px; border-radius: 50%; background: #d5dbe7; }
.browser-bar .dot:first-child { background: var(--fulvox-teal); }
.browser-url {
  margin-left: 10px; background: #ffffff; border: 1px solid var(--fulvox-border);
  border-radius: 20px; padding: 2px 14px; font-size: 12px; color: var(--fulvox-muted);
}
.mockup-body { display: flex; min-height: 300px; }
.mockup-sidebar {
  width: 64px; background: var(--fulvox-navy); padding: 14px 12px;
  display: flex; flex-direction: column; align-items: center; gap: 12px;
}
.mockup-sidebar img { width: 34px; height: auto; border-radius: 8px; }
.mockup-sidebar .side-pill { width: 100%; height: 8px; border-radius: 4px; background: rgba(255, 255, 255, 0.22); }
.mockup-sidebar .side-pill.active { background: var(--fulvox-teal); }
.mockup-main { flex: 1; padding: 18px; background: #fbfcfe; }
.mockup-stats { display: flex; gap: 12px; flex-wrap: wrap; }
.stat-card {
  flex: 1 1 0; min-width: 90px; background: #ffffff;
  border: 1px solid var(--fulvox-border); border-radius: 10px; padding: 12px 14px;
}
.stat-card .stat-label { font-size: 11px; color: var(--fulvox-muted); display: block; }
.stat-card .stat-value { font-size: 16px; font-weight: 700; color: var(--fulvox-navy); line-height: 1.4; }
.stat-card .stat-value.teal { color: var(--fulvox-teal-text); }
.mockup-chart {
  display: flex; align-items: flex-end; gap: 6px; height: 130px;
  margin-top: 16px; padding: 14px; background: #ffffff;
  border: 1px solid var(--fulvox-border); border-radius: 10px;
}
.mockup-chart .bar {
  flex: 1; border-radius: 3px 3px 0 0; min-width: 8px;
  background: linear-gradient(180deg, var(--fulvox-teal), var(--fulvox-grad-2));
}
.mockup-chart .bar:nth-child(even) { background: #d9e2ef; }
/* Never let the mockup's min-content width push past the viewport. */
.hero-mockup, .browser-frame, .mockup-main { min-width: 0; max-width: 100%; }
.mockup-stats .stat-card { min-width: 0; }
@media (max-width: 575px) {
  .mockup-sidebar { width: 44px; padding: 10px 8px; gap: 10px; }
  .mockup-sidebar img { width: 26px; }
  .mockup-main { padding: 12px; }
  .mockup-stats { gap: 8px; }
  .stat-card { padding: 8px 10px; }
  .stat-card .stat-value { font-size: 13px; }
  .mockup-chart { height: 100px; gap: 4px; padding: 10px; }
  .mockup-body { min-height: 220px; }
}

/* 6. FBR receipt card --------------------------------------------- */
.receipt-card {
  background: #ffffff; border: 1px solid var(--fulvox-border);
  border-radius: var(--fulvox-radius);
  box-shadow: 0 20px 45px rgba(0, 24, 74, 0.18);
  padding: 18px; width: 250px; font-size: 12px; color: var(--fulvox-navy);
  text-align: left;
}
.hero-mockup .receipt-card { position: absolute; right: -6px; bottom: 0; z-index: 2; }
.receipt-head { display: flex; align-items: center; gap: 8px; border-bottom: 1px dashed var(--fulvox-border); padding-bottom: 10px; margin-bottom: 10px; }
.receipt-head img { width: 26px; height: auto; }
.receipt-head strong { font-size: 13px; }
.receipt-line { display: flex; justify-content: space-between; color: var(--fulvox-muted); margin-bottom: 5px; }
.receipt-total { display: flex; justify-content: space-between; font-weight: 700; border-top: 1px dashed var(--fulvox-border); padding-top: 8px; margin-top: 8px; }
.receipt-fbr { border-top: 1px dashed var(--fulvox-border); margin-top: 10px; padding-top: 10px; }
.receipt-fbr .fbr-label { font-size: 10px; color: var(--fulvox-muted); text-transform: uppercase; letter-spacing: 0.4px; display: block; }
.receipt-fbr code { font-size: 10.5px; color: var(--fulvox-navy); word-break: break-all; background: var(--fulvox-offwhite); border-radius: 4px; padding: 2px 5px; display: inline-block; margin: 4px 0 8px; }
.receipt-qr-row { display: flex; align-items: center; justify-content: space-between; gap: 10px; }
.qr-box { width: 58px; height: 58px; flex: 0 0 auto; }
.qr-box svg { width: 100%; height: 100%; display: block; }
.fbr-chip {
  display: inline-flex; align-items: center; gap: 5px;
  background: rgba(15, 122, 77, 0.12); color: var(--fulvox-success);
  border-radius: 20px; padding: 4px 10px; font-size: 11px; font-weight: 700;
}
.receipt-card.receipt-lg { width: 300px; font-size: 13px; }
.receipt-card.receipt-lg .qr-box { width: 72px; height: 72px; }
@media (max-width: 991px) {
  .hero-mockup { padding-bottom: 0; }
  .hero-mockup .receipt-card { position: static; margin: -40px auto 0; }
}

/* 7. Trust bar counters ------------------------------------------- */
.counter .counter-icon i { font-size: 40px; line-height: 1; color: var(--fulvox-teal-text); }
.counter span.count-suffix { font-size: 50px; font-weight: 700; line-height: 50px; color: var(--themeht-primary-color); margin: 30px 0 10px 2px; display: inline-block; }

/* 8. Icon-point rows (light default; navy overrides in .fbr-band) -- */
.fbr-point { display: flex; gap: 16px; margin-bottom: 26px; }
.fbr-point .fbr-point-icon {
  flex: 0 0 auto; width: 52px; height: 52px; border-radius: 12px;
  background: rgba(0, 171, 158, 0.12); color: var(--fulvox-teal-text);
  display: flex; align-items: center; justify-content: center; font-size: 24px;
}
.fbr-point h5 { margin-bottom: 6px; font-size: 18px; }
.fbr-point p { margin-bottom: 0; color: var(--fulvox-muted); }

.fbr-band { color: rgba(255, 255, 255, 0.85); }
.fbr-band .section-title h2, .fbr-band h5 { color: #ffffff; }
.fbr-band .section-title h6 { color: var(--fulvox-teal); }
.fbr-band .fbr-point-icon { background: rgba(0, 171, 158, 0.18); color: var(--fulvox-teal); }
.fbr-band .fbr-point p { color: rgba(255, 255, 255, 0.75); }
.fbr-band .list-icon li { color: rgba(255, 255, 255, 0.85); }
.fbr-band .list-icon i { color: var(--fulvox-teal); }

/* Boxed sidebar (free-trial "what happens next") */
.side-card {
  background: #ffffff; border: 1px solid var(--fulvox-border);
  border-radius: var(--fulvox-radius); padding: 30px;
  box-shadow: 0 10px 30px rgba(0, 24, 74, 0.06);
}
.side-card .fbr-point:last-of-type { margin-bottom: 0; }

/* 9. Feature clusters + industry cards ---------------------------- */
.cluster-label {
  display: inline-block; font-size: 13px; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase; color: var(--fulvox-teal-text);
  border-left: 3px solid var(--fulvox-teal); padding-left: 10px; margin-bottom: 20px;
}
.featured-item.style-3 { border: 1px solid var(--fulvox-border); height: 100%; }
.col-feature { margin-top: 24px; }
.industry-anchor { scroll-margin-top: 120px; }

/* 11. Forms: captcha + honeypot ----------------------------------- */
.captcha-row { display: flex; align-items: stretch; gap: 10px; flex-wrap: wrap; }
.captcha-img { border: 1px solid var(--fulvox-border); border-radius: 8px; background: #ffffff; height: 54px; }
.captcha-refresh { flex: 0 0 auto; width: 54px; display: inline-flex; align-items: center; justify-content: center; padding: 0; font-size: 20px; }
.captcha-row .form-control { max-width: 200px; height: 54px; }
.hp-field { position: absolute !important; left: -9999px !important; top: auto; width: 1px; height: 1px; overflow: hidden; }
.form-group { margin-bottom: 18px; }
.help-block.with-errors { color: var(--fulvox-danger); font-size: 13px; margin-top: 4px; min-height: 18px; }
.alert-success { background: rgba(15, 122, 77, 0.12); color: var(--fulvox-success); border: 1px solid rgba(15, 122, 77, 0.35); }
.alert-danger { background: rgba(192, 52, 43, 0.10); color: var(--fulvox-danger); border: 1px solid rgba(192, 52, 43, 0.30); }

/* Contact info cards — uniform height */
.contact-info .contact-media { height: 100%; }

/* Industry tiles (industries.html) */
.industry-tile {
  width: 100%; max-width: 320px; aspect-ratio: 1 / 1; border-radius: 24px;
  background: linear-gradient(135deg, #eef7f6, #d5edea);
  display: flex; align-items: center; justify-content: center; margin: 0 auto;
}
.industry-tile i { font-size: 110px; color: var(--fulvox-teal-text); }
.industry-tile.tile-navy { background: linear-gradient(135deg, var(--fulvox-navy), #0a3a6e); }
.industry-tile.tile-navy i { color: var(--fulvox-teal); }

/* 12. Footer ------------------------------------------------------ */
/* footer-1 was designed over a light bg image — on solid navy all its
   default dark text needs light overrides. Its 100px margin + 150px
   top padding existed to clear the removed newsletter overlay box. */
footer.footer-1 { background-color: var(--fulvox-navy); color: rgba(255, 255, 255, 0.75); margin-top: 0; padding-top: 0; }
footer.footer-1 .primary-footer { padding-top: 70px; }
.trial-strip { padding-top: 10px; }
footer.footer-1 .primary-footer p,
footer.footer-1 .footer-list a,
footer.footer-1 .media-icon li,
footer.footer-1 .media-icon li p,
footer.footer-1 .media-icon li a,
footer.footer-1 .secondary-footer span,
footer.footer-1 .secondary-footer a,
footer.footer-1 .footer-social a { color: rgba(255, 255, 255, 0.78); }
footer.footer-1 .media-icon b { color: #ffffff; font-weight: 600; }
footer.footer-1 .footer-list a:hover,
footer.footer-1 .footer-social a:hover,
footer.footer-1 .secondary-footer a:hover,
footer.footer-1 .media-icon li a:hover,
footer.footer-1 .media-icon li a:hover b { color: var(--fulvox-teal); }
footer .footer-logo img { height: 42px; width: auto; }
.trial-strip { border-bottom: 1px solid rgba(255, 255, 255, 0.12); }
.trial-strip h4 { color: #ffffff; }
.trial-strip p { color: rgba(255, 255, 255, 0.75); }

/* 13. Misc -------------------------------------------------------- */
h1 span { color: var(--fulvox-teal-text); }   /* raw teal fails 3:1 even at h1 size */
.whatsapp-btn .bi-whatsapp { margin-right: 6px; }
.section-tight { padding: 80px 0; }
.grediant-bg h2, .grediant-bg p { color: #ffffff; }
.grediant-bg p { color: rgba(255, 255, 255, 0.85); }
img { max-width: 100%; }
