/* ============================================
   SBFC SOLUTIONS — COMPONENT STYLES
   Buttons, Cards, Forms, Nav, Footer, etc.
   ============================================ */

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 0.85rem 2rem;
  border-radius: var(--radius-pill);
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
  white-space: nowrap;
}

.btn--primary {
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
  box-shadow: var(--shadow-red);
}
.btn--primary:hover {
  background: var(--red-dark);
  border-color: var(--red-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 6px 28px rgba(192,57,43,0.35);
}

.btn--outline {
  background: transparent;
  color: var(--red);
  border-color: var(--red);
}
.btn--outline:hover {
  background: var(--red);
  color: var(--white);
  transform: translateY(-2px);
}

.btn--white {
  background: var(--white);
  color: var(--red);
  border-color: var(--white);
}
.btn--white:hover {
  background: var(--gray-light);
  transform: translateY(-2px);
}

.btn--outline-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.7);
}
.btn--outline-white:hover {
  background: rgba(255,255,255,0.15);
  border-color: var(--white);
}

.btn--sm {
  padding: 0.6rem 1.4rem;
  font-size: 0.8rem;
}

.btn--lg {
  padding: 1rem 2.5rem;
  font-size: 1rem;
}

/* ── NAVIGATION ── */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-height);
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 2px 16px rgba(0,0,0,0.08);
  transition: var(--transition);
}

.navbar__inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.navbar__logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
}

.navbar__logo img {
  height: 44px;
  width: auto;
}

.navbar__logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.navbar__logo-text .logo-sbfc {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--red);
  letter-spacing: 0.05em;
}

.navbar__logo-text .logo-solutions {
  font-family: var(--font-heading);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gray-dark);
}

.navbar__nav {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.navbar__nav a {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gray-dark);
  padding: 0.5rem 0.9rem;
  border-radius: var(--radius-pill);
  transition: var(--transition);
  text-decoration: none;
}

.navbar__nav a:hover,
.navbar__nav a.active {
  background: var(--gray-light);
  color: var(--red);
}

.navbar__cta {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.navbar__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}

.navbar__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--gray-dark);
  border-radius: 2px;
  transition: var(--transition);
}

.navbar__mobile-menu {
  display: none;
  position: fixed;
  top: var(--nav-height);
  left: 0;
  right: 0;
  background: var(--white);
  box-shadow: var(--shadow-md);
  padding: var(--space-md);
  z-index: 999;
}

.navbar__mobile-menu.open {
  display: block;
}

.navbar__mobile-menu a {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--gray-dark);
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--gray-light);
  text-decoration: none;
}

.navbar__mobile-menu a:last-child {
  border-bottom: none;
  color: var(--red);
  margin-top: var(--space-sm);
}

@media (max-width: 900px) {
  .navbar__nav,
  .navbar__cta .btn {
    display: none;
  }
  
  .navbar__hamburger {
    display: flex;
  }
}

/* ── PAGE HEADER HERO ── */
.page-hero {
  padding: calc(var(--nav-height) + 5rem) 0 4rem;
  background: linear-gradient(135deg, var(--gray-dark) 0%, #3a3a3a 100%);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 1;
}

.page-hero__content {
  position: relative;
  z-index: 1;
}

.page-hero h1 {
  color: var(--white);
  margin-bottom: var(--space-sm);
}

.page-hero p {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.80);
  max-width: 560px;
}

/* ── CARDS ── */
.card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border: 1px solid rgba(0,0,0,0.06);
}

.card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.card__icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  background: rgba(192,57,43,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-md);
}

.card__icon svg,
.card__icon i {
  color: var(--red);
  font-size: 1.5rem;
}

.card__title {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--text-primary);
}

.card__body {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.card__link {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--red);
  margin-top: var(--space-md);
  transition: var(--transition);
}

.card__link:hover { gap: 0.5rem; }

/* Service card variant */
.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(0,0,0,0.06);
  transition: var(--transition);
}

.service-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.service-card__img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  background: var(--gray-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  color: var(--red);
}

.service-card__img-placeholder {
  width: 100%;
  height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3.5rem;
}

.service-card__body {
  padding: var(--space-md) var(--space-lg);
}

/* Stat card */
.stat-card {
  text-align: center;
  padding: var(--space-lg);
}

.stat-card__number {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 800;
  color: var(--red);
  display: block;
  line-height: 1;
}

.stat-card__label {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 0.4rem;
  display: block;
}

/* ── FORMS ── */
.form-group {
  margin-bottom: var(--space-md);
}

.form-label {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
}

.form-control {
  width: 100%;
  padding: 0.85rem 1.1rem;
  border: 2px solid #E8E8E8;
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text-primary);
  background: var(--white);
  transition: var(--transition);
  outline: none;
}

.form-control:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(192,57,43,0.1);
}

.form-control::placeholder {
  color: #B0B0B0;
}

textarea.form-control {
  resize: vertical;
  min-height: 120px;
}

select.form-control {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%237A7A7A' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

.form-consent {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.85rem;
  color: var(--text-muted);
  cursor: pointer;
}

.form-consent input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: var(--red);
  cursor: pointer;
  flex-shrink: 0;
  margin-top: 2px;
}

.form-success {
  display: none;
  background: #EAF9F0;
  border: 1px solid var(--green);
  border-radius: var(--radius-md);
  padding: var(--space-md);
  color: var(--green);
  font-weight: 600;
  text-align: center;
  margin-top: var(--space-md);
}

/* ── LEAD CAPTURE BOX ── */
.lead-box {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: var(--space-xl);
  box-shadow: var(--shadow-lg);
  max-width: 540px;
}

.lead-box__title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.lead-box__sub {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: var(--space-md);
}

/* ── STICKY CTA BAR ── */
.sticky-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 990;
  background: var(--gray-dark);
  padding: var(--space-sm) var(--space-md);
  box-shadow: 0 -4px 20px rgba(0,0,0,0.2);
}

.sticky-cta__inner {
  max-width: 1160px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-sm);
}

.sticky-cta__text {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--white);
}

.sticky-cta__text span {
  color: var(--red-light);
}

@media (max-width: 600px) {
  .sticky-cta {
    display: block;
  }
  
  .sticky-cta__inner {
    flex-direction: column;
    text-align: center;
  }
}

/* ── CHATBOT WIDGET ── */
.chatbot-widget {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 1100;
}

.chatbot-bubble {
  width: 60px;
  height: 60px;
  background: var(--red);
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(192,57,43,0.45);
  transition: var(--transition);
  position: relative;
}

.chatbot-bubble:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 28px rgba(192,57,43,0.55);
}

.chatbot-bubble svg {
  color: var(--white);
  width: 28px;
  height: 28px;
}

.chatbot-notification {
  position: absolute;
  top: -2px;
  right: -2px;
  width: 18px;
  height: 18px;
  background: var(--green);
  border-radius: 50%;
  border: 2px solid var(--white);
  display: block;
  animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.15); }
}

.chatbot-panel {
  display: none;
  position: absolute;
  bottom: 76px;
  right: 0;
  width: 340px;
  background: var(--white);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  border: 1px solid rgba(0,0,0,0.08);
}

.chatbot-panel.open {
  display: block;
  animation: slideUp 0.2s ease;
}

@keyframes slideUp {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}

.chatbot-header {
  background: var(--red);
  padding: var(--space-md);
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.chatbot-header__avatar {
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

.chatbot-header__info .name {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--white);
}

.chatbot-header__info .status {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.75);
  display: flex;
  align-items: center;
  gap: 4px;
}

.chatbot-header__info .status::before {
  content: '';
  width: 7px;
  height: 7px;
  background: #2ECC71;
  border-radius: 50%;
  display: inline-block;
}

.chatbot-close {
  margin-left: auto;
  background: none;
  border: none;
  color: rgba(255,255,255,0.8);
  cursor: pointer;
  font-size: 1.2rem;
  padding: 2px;
  transition: var(--transition);
}
.chatbot-close:hover { color: var(--white); }

.chatbot-body {
  padding: var(--space-md);
  max-height: 300px;
  overflow-y: auto;
}

.chatbot-message {
  margin-bottom: var(--space-sm);
}

.chatbot-message--bot .bubble {
  background: var(--gray-light);
  border-radius: 0 var(--radius-md) var(--radius-md) var(--radius-md);
  padding: 0.75rem 1rem;
  font-size: 0.9rem;
  color: var(--text-primary);
  display: inline-block;
  max-width: 88%;
}

.chatbot-message--user .bubble {
  background: var(--red);
  color: var(--white);
  border-radius: var(--radius-md) 0 var(--radius-md) var(--radius-md);
  padding: 0.75rem 1rem;
  font-size: 0.9rem;
  display: inline-block;
  max-width: 88%;
  float: right;
}

.chatbot-message--user { overflow: hidden; }

.chatbot-quick-replies {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  padding: 0 var(--space-md) var(--space-sm);
}

.chatbot-quick-reply {
  background: var(--white);
  border: 1px solid var(--red);
  color: var(--red);
  border-radius: var(--radius-pill);
  padding: 0.4rem 1rem;
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
}
.chatbot-quick-reply:hover {
  background: var(--red);
  color: var(--white);
}

.chatbot-input-area {
  border-top: 1px solid var(--gray-light);
  padding: var(--space-sm) var(--space-md);
  display: flex;
  gap: 0.5rem;
}

.chatbot-input {
  flex: 1;
  border: 1px solid #E8E8E8;
  border-radius: var(--radius-pill);
  padding: 0.5rem 1rem;
  font-family: var(--font-body);
  font-size: 0.85rem;
  outline: none;
}

.chatbot-send {
  width: 36px;
  height: 36px;
  background: var(--red);
  border: none;
  border-radius: 50%;
  color: var(--white);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  flex-shrink: 0;
}
.chatbot-send:hover { background: var(--red-dark); }

/* ── FAQ ACCORDION ── */
.faq-item {
  border-bottom: 1px solid var(--gray-light);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-md) 0;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-primary);
  text-align: left;
  gap: var(--space-sm);
  transition: var(--transition);
}

.faq-question:hover { color: var(--red); }

.faq-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--gray-light);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: var(--transition);
  font-size: 1.1rem;
  color: var(--red);
}

.faq-item.open .faq-icon {
  background: var(--red);
  color: var(--white);
  transform: rotate(45deg);
}

.faq-answer {
  display: none;
  padding-bottom: var(--space-md);
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.75;
  max-width: 760px;
}

.faq-item.open .faq-answer {
  display: block;
  animation: fadeIn 0.2s ease;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-6px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── TRUST BAR ── */
.trust-bar {
  background: var(--white);
  border-top: 1px solid var(--gray-light);
  border-bottom: 1px solid var(--gray-light);
  padding: var(--space-md) 0;
}

.trust-bar__inner {
  display: flex;
  align-items: center;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: var(--space-lg);
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--gray-dark);
  text-transform: uppercase;
}

.trust-item i {
  font-size: 1.4rem;
  color: var(--red);
}

/* ── PROCESS STEPS ── */
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-md);
  counter-reset: step-counter;
}

.process-step {
  position: relative;
  text-align: center;
  padding: var(--space-lg) var(--space-md);
}

.process-step::before {
  counter-increment: step-counter;
  content: counter(step-counter, decimal-leading-zero);
  font-family: var(--font-heading);
  font-size: 3.5rem;
  font-weight: 800;
  color: rgba(192,57,43,0.08);
  position: absolute;
  top: var(--space-sm);
  left: 50%;
  transform: translateX(-50%);
  z-index: 0;
  line-height: 1;
}

.process-step__icon {
  width: 64px;
  height: 64px;
  background: var(--red);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-md);
  position: relative;
  z-index: 1;
}

.process-step__icon i {
  font-size: 1.6rem;
  color: var(--white);
}

.process-step h4 {
  position: relative;
  z-index: 1;
  margin-bottom: 0.5rem;
}

.process-step p {
  font-size: 0.9rem;
  color: var(--text-muted);
  position: relative;
  z-index: 1;
}

@media (max-width: 900px) {
  .process-steps {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .process-steps {
    grid-template-columns: 1fr;
  }
}

/* ── FOOTER ── */
.footer {
  background: var(--gray-dark);
  color: rgba(255,255,255,0.75);
  padding: var(--space-xxl) 0 var(--space-lg);
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: var(--space-xl);
  padding-bottom: var(--space-xl);
  border-bottom: 1px solid rgba(255,255,255,0.1);
  margin-bottom: var(--space-lg);
}

.footer__logo-text .logo-sbfc {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--red);
  letter-spacing: 0.05em;
  display: block;
}

.footer__logo-text .logo-solutions {
  font-family: var(--font-heading);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  display: block;
  margin-bottom: var(--space-md);
}

.footer__tagline {
  font-size: 0.9rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.6);
  max-width: 280px;
  margin-bottom: var(--space-md);
}

.footer__socials {
  display: flex;
  gap: 0.5rem;
}

.footer__social-link {
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.65);
  transition: var(--transition);
  font-size: 0.9rem;
  text-decoration: none;
}

.footer__social-link:hover {
  background: var(--red);
  color: var(--white);
}

.footer__col-title {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: var(--space-md);
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer__links a {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  transition: var(--transition);
}

.footer__links a:hover {
  color: var(--red-light);
}

.footer__contact-item {
  display: flex;
  gap: 0.6rem;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
  margin-bottom: 0.5rem;
}

.footer__contact-item i {
  color: var(--red-light);
  margin-top: 3px;
  flex-shrink: 0;
}

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
  flex-wrap: wrap;
  gap: var(--space-sm);
}

.footer__bottom a {
  color: rgba(255,255,255,0.4);
  text-decoration: none;
  transition: var(--transition);
}

.footer__bottom a:hover { color: rgba(255,255,255,0.7); }

@media (max-width: 900px) {
  .footer__grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 600px) {
  .footer__grid {
    grid-template-columns: 1fr;
  }
}

/* ── BREADCRUMB ── */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.6);
  margin-bottom: var(--space-md);
}

.breadcrumb a {
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  transition: var(--transition);
}

.breadcrumb a:hover { color: var(--white); }

.breadcrumb__sep {
  color: rgba(255,255,255,0.35);
}

/* ── BADGE ── */
.badge {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-pill);
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.badge--red {
  background: rgba(192,57,43,0.1);
  color: var(--red);
}

.badge--green {
  background: rgba(39,174,96,0.1);
  color: var(--green);
}

.badge--dark {
  background: var(--gray-dark);
  color: var(--white);
}

/* ── ALERT INLINE CTA ── */
.inline-cta {
  background: linear-gradient(135deg, rgba(192,57,43,0.05) 0%, rgba(192,57,43,0.1) 100%);
  border: 1px solid rgba(192,57,43,0.2);
  border-radius: var(--radius-lg);
  padding: var(--space-lg) var(--space-xl);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-lg);
  flex-wrap: wrap;
}

.inline-cta__text h3 {
  margin-bottom: 0.25rem;
}

.inline-cta__text p {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin: 0;
}

/* ── TESTIMONIAL ── */
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(0,0,0,0.06);
  position: relative;
}

.testimonial-card::before {
  content: '"';
  font-size: 5rem;
  font-family: Georgia, serif;
  color: rgba(192,57,43,0.12);
  position: absolute;
  top: 0.5rem;
  left: 1.5rem;
  line-height: 1;
}

.testimonial-card__body {
  font-style: italic;
  color: var(--text-secondary);
  margin-bottom: var(--space-md);
  position: relative;
  z-index: 1;
  padding-top: 1.5rem;
}

.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.testimonial-card__avatar {
  width: 44px;
  height: 44px;
  background: var(--gray-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
}

.testimonial-card__name {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-primary);
  display: block;
}

.testimonial-card__company {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* ── TAG LIST ── */
.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: var(--space-sm);
}

.tag {
  background: var(--gray-light);
  padding: 0.3rem 0.8rem;
  border-radius: var(--radius-pill);
  font-size: 0.8rem;
  color: var(--text-muted);
  font-weight: 600;
}

/* ── HIGHLIGHT BOX ── */
.highlight-box {
  background: var(--gray-dark);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
}

.highlight-box h4 {
  color: var(--white);
  margin-bottom: var(--space-sm);
}

.highlight-box p {
  color: rgba(255,255,255,0.75);
  font-size: 0.9rem;
}

/* ── CHECKLIST ── */
.checklist {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.checklist li {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

.checklist li::before {
  content: '✓';
  width: 22px;
  height: 22px;
  background: rgba(192,57,43,0.1);
  color: var(--red);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 800;
  flex-shrink: 0;
  margin-top: 1px;
}

/* ── SCROLL PROGRESS ── */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  background: var(--red);
  z-index: 2000;
  transition: width 0.1s linear;
}
