/* =====================
   TOKENS & BASE
===================== */
:root {
  --orange:       #F47B20;
  --orange-dark:  #C9570A;
  --orange-light: #FFD4A8;
  --orange-xlight:#FFF3E8;
  --white:        #FFFFFF;
  --gray-light:   #F6F6F6;
  --gray-mid:     #E8E8E8;
  --text-dark:    #1A1A1A;
  --text-muted:   #6C6C6C;
  --radius:       14px;
  --shadow:       0 4px 32px rgba(244,123,32,.12);
  --shadow-card:  0 2px 20px rgba(0,0,0,.07);
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
  color: var(--text-dark);
  background: var(--white);
  overflow-x: hidden;
}

a { text-decoration: none; }

/* =====================
   TYPOGRAPHY HELPERS
===================== */
.section-label {
  display: inline-block;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--orange);
  background: var(--orange-xlight);
  padding: .3rem .85rem;
  border-radius: 50px;
  margin-bottom: 1rem;
}

.section-title {
  font-size: clamp(1.75rem, 4vw, 2.6rem);
  font-weight: 800;
  line-height: 1.2;
  color: var(--text-dark);
}

.section-title span { color: var(--orange); }

.section-sub {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 640px;
}

/* =====================
   BUTTONS
===================== */
.btn-orange {
  background: var(--orange);
  color: var(--white);
  border: none;
  padding: .75rem 1.75rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: .95rem;
  transition: background .2s, transform .15s, box-shadow .2s;
  box-shadow: 0 4px 18px rgba(244,123,32,.35);
}
.btn-orange:hover {
  background: var(--orange-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(244,123,32,.45);
}

.btn-outline-orange {
  background: transparent;
  color: var(--orange);
  border: 2px solid var(--orange);
  padding: .72rem 1.75rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: .95rem;
  transition: all .2s;
}
.btn-outline-orange:hover {
  background: var(--orange);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,.6);
  padding: .72rem 1.75rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: .95rem;
  transition: all .2s;
}
.btn-outline-white:hover {
  background: rgba(255,255,255,.15);
  border-color: var(--white);
  color: var(--white);
}

/* =====================
   NAVBAR
===================== */
.navbar {
  padding: .9rem 0;
  background: rgba(255,255,255,.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--gray-mid);
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: box-shadow .3s;
}
.navbar.scrolled { box-shadow: 0 2px 20px rgba(0,0,0,.08); }

.navbar-brand {
  font-size: 1.45rem;
  font-weight: 900;
  color: var(--text-dark) !important;
  letter-spacing: -.02em;
}
.navbar-brand span { color: var(--orange); }

.nav-link {
  color: var(--text-muted) !important;
  font-weight: 600;
  font-size: .9rem;
  padding: .4rem .9rem !important;
  transition: color .2s;
}
.nav-link:hover { color: var(--orange) !important; }

/* =====================
   HERO
===================== */
#hero {
  background: linear-gradient(135deg, #FFF7ED 0%, #FFF3E8 50%, #FDECD5 100%);
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 6rem 0 4rem;
}

#hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 50%, rgba(244,123,32,.28) 0%, transparent 55%),
    radial-gradient(circle at 80% 20%, rgba(244,123,32,.18) 0%, transparent 45%);
}

.hero-label {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: rgba(244,123,32,.1);
  border: 1px solid rgba(244,123,32,.3);
  color: var(--orange-dark);
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: .35rem 1rem;
  border-radius: 50px;
  margin-bottom: 1.5rem;
}
.hero-label .dot {
  width: 6px; height: 6px;
  background: var(--orange);
  border-radius: 50%;
  animation: pulse-dot 1.8s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: .5; transform: scale(1.6); }
}

.hero-title {
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  font-weight: 900;
  color: var(--text-dark);
  line-height: 1.1;
  margin-bottom: 1.5rem;
}
.hero-title .highlight {
  color: var(--orange);
  position: relative;
  display: inline-block;
}
.hero-title .highlight::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0; right: 0;
  height: 3px;
  background: var(--orange);
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: left;
  animation: underline-in 1s .8s forwards;
}
@keyframes underline-in {
  to { transform: scaleX(1); }
}

.hero-sub {
  font-size: 1.15rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 2.5rem;
  max-width: 540px;
}

.hero-ctas { display: flex; flex-wrap: wrap; gap: 1rem; }

/* ---- Hero background grid ---- */
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(244,123,32,.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(244,123,32,.06) 1px, transparent 1px);
  background-size: 44px 44px;
  animation: grid-drift 18s linear infinite;
  pointer-events: none;
}
@keyframes grid-drift {
  from { background-position: 0 0; }
  to   { background-position: 44px 44px; }
}

/* ---- Cursor glow ---- */
.cursor-glow {
  width: 480px; height: 480px;
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(244,123,32,.13) 0%, transparent 70%);
  pointer-events: none;
  transform: translate(-50%, -50%);
  transition: left .12s ease, top .12s ease;
  z-index: 1;
}

/* ---- Dashboard illustration ---- */
.hero-visual {
  position: relative;
  height: 460px;
  transform-style: preserve-3d;
  transition: transform .08s ease;
}

.dashboard {
  background: rgba(255,255,255,.9);
  border: 1px solid rgba(244,123,32,.22);
  border-radius: 20px;
  padding: 20px;
  width: 100%;
  height: 100%;
  backdrop-filter: blur(8px);
  box-shadow: 0 12px 48px rgba(244,123,32,.12), 0 2px 8px rgba(0,0,0,.06);
  position: relative;
  overflow: hidden;
  transition: box-shadow .3s ease;
}
.dashboard:hover {
  box-shadow: 0 20px 64px rgba(244,123,32,.18), 0 4px 16px rgba(0,0,0,.08);
}

.db-topbar {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 18px;
}
.db-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
}
.db-dot:nth-child(1) { background: #FF5F57; }
.db-dot:nth-child(2) { background: #FFBD2E; }
.db-dot:nth-child(3) { background: #28CA41; }
.db-topbar-title {
  margin-left: 10px;
  font-size: .75rem;
  color: var(--text-muted);
  font-weight: 600;
}

.db-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 10px;
  margin-bottom: 12px;
}

.db-stat {
  background: var(--orange-xlight);
  border: 1px solid rgba(244,123,32,.15);
  border-radius: 10px;
  padding: 12px 14px;
  animation: stat-in .6s ease both;
}
.db-stat:nth-child(1) { animation-delay: .3s; }
.db-stat:nth-child(2) { animation-delay: .5s; }
.db-stat:nth-child(3) { animation-delay: .7s; }

@keyframes stat-in {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}

.db-stat-label {
  font-size: .65rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 4px;
}
.db-stat-value {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--text-dark);
}
.db-stat-sub { font-size: .65rem; color: #4CAF50; font-weight: 600; }

.db-chart-row {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 10px;
  margin-bottom: 12px;
}

.db-chart {
  background: var(--orange-xlight);
  border: 1px solid rgba(244,123,32,.12);
  border-radius: 10px;
  padding: 12px;
}
.db-chart-label {
  font-size: .65rem;
  color: var(--text-muted);
  margin-bottom: 8px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .08em;
}

/* Bar chart */
.bars { display: flex; align-items: flex-end; gap: 5px; height: 60px; }
.bar {
  flex: 1;
  background: var(--orange);
  border-radius: 4px 4px 0 0;
  opacity: .7;
  transform-origin: bottom;
  animation: bar-grow .8s ease both;
}
.bar:nth-child(1) { height: 40%; animation-delay: .4s; }
.bar:nth-child(2) { height: 65%; animation-delay: .5s; opacity: .85; }
.bar:nth-child(3) { height: 50%; animation-delay: .6s; }
.bar:nth-child(4) { height: 80%; animation-delay: .7s; opacity: 1; }
.bar:nth-child(5) { height: 60%; animation-delay: .8s; opacity: .85; }
.bar:nth-child(6) { height: 90%; animation-delay: .9s; }
.bar:nth-child(7) { height: 70%; animation-delay: 1s; opacity: .9; }

@keyframes bar-grow {
  from { transform: scaleY(0); opacity: 0; }
  to   { transform: scaleY(1); opacity: inherit; }
}

/* Donut placeholder */
.donut-wrap { display: flex; align-items: center; justify-content: center; height: 80px; }
.donut {
  width: 60px; height: 60px;
  border-radius: 50%;
  background: conic-gradient(var(--orange) 0% 58%, rgba(244,123,32,.15) 58%);
  display: flex; align-items: center; justify-content: center;
  animation: donut-in .9s ease .6s both;
}
.donut-inner {
  width: 36px; height: 36px;
  background: #FFF7ED;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: .6rem; font-weight: 800; color: var(--orange);
}
@keyframes donut-in {
  from { transform: rotate(-180deg) scale(.5); opacity: 0; }
  to   { transform: rotate(0) scale(1); opacity: 1; }
}

/* Flow nodes */
.db-flow {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px;
  background: var(--orange-xlight);
  border: 1px solid rgba(244,123,32,.12);
  border-radius: 10px;
}
.flow-node {
  background: rgba(244,123,32,.15);
  border: 1px solid var(--orange);
  border-radius: 6px;
  padding: 5px 10px;
  font-size: .6rem;
  color: var(--orange-dark);
  font-weight: 700;
  white-space: nowrap;
  animation: node-pop .4s ease both;
  transition: background .25s ease, color .25s ease, box-shadow .25s ease, transform .25s ease;
}
.flow-node.active {
  background: var(--orange);
  color: var(--white);
  box-shadow: 0 0 14px rgba(244,123,32,.55);
  transform: scale(1.08);
}
.flow-node:nth-child(1) { animation-delay: 1.0s; }
.flow-node:nth-child(3) { animation-delay: 1.2s; }
.flow-node:nth-child(5) { animation-delay: 1.4s; }
.flow-node:nth-child(7) { animation-delay: 1.6s; }
.flow-node:nth-child(9) { animation-delay: 1.8s; }

@keyframes node-pop {
  from { transform: scale(0); opacity: 0; }
  to   { transform: scale(1); opacity: 1; }
}

.flow-arrow {
  color: rgba(201,87,10,.4);
  font-size: .8rem;
  animation: arrow-in .3s ease both;
}
.flow-arrow:nth-child(2) { animation-delay: 1.1s; }
.flow-arrow:nth-child(4) { animation-delay: 1.3s; }
.flow-arrow:nth-child(6) { animation-delay: 1.5s; }
.flow-arrow:nth-child(8) { animation-delay: 1.7s; }

@keyframes arrow-in {
  from { opacity: 0; transform: translateX(-4px); }
  to   { opacity: 1; transform: translateX(0); }
}

/* Floating badge */
.hero-badge {
  position: absolute;
  bottom: -18px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--orange);
  color: var(--white);
  padding: .5rem 1.4rem;
  border-radius: 50px;
  font-size: .8rem;
  font-weight: 700;
  white-space: nowrap;
  box-shadow: 0 8px 24px rgba(244,123,32,.5);
  animation: badge-float 3s ease-in-out infinite;
}
@keyframes badge-float {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(-6px); }
}

/* =====================
   SOCIAL PROOF BAR
===================== */
.proof-bar {
  background: var(--gray-light);
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--gray-mid);
}
.proof-bar .item {
  display: flex;
  align-items: center;
  gap: .6rem;
  color: var(--text-muted);
  font-size: .9rem;
  font-weight: 600;
}
.proof-bar .item i { color: var(--orange); font-size: 1.1rem; }

/* =====================
   PROBLEM
===================== */
#probleme { padding: 6rem 0; background: var(--white); }

.problem-card {
  background: var(--white);
  border: 1.5px solid var(--gray-mid);
  border-radius: var(--radius);
  padding: 2rem;
  height: 100%;
  transition: border-color .3s, box-shadow .3s, transform .3s;
}
.problem-card:hover {
  border-color: var(--orange-light);
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}
.problem-card .card-icon {
  width: 52px; height: 52px;
  background: var(--orange-xlight);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.25rem;
}
.problem-card .card-icon i { font-size: 1.4rem; color: var(--orange); }
.problem-card h4 { font-size: 1.1rem; font-weight: 800; margin-bottom: .75rem; }
.problem-card ul {
  padding-left: 0;
  list-style: none;
  margin: 0;
}
.problem-card ul li {
  padding: .35rem 0;
  font-size: .9rem;
  color: var(--text-muted);
  display: flex;
  align-items: flex-start;
  gap: .6rem;
}
.problem-card ul li::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--orange);
  border-radius: 50%;
  margin-top: .45em;
  flex-shrink: 0;
}

.result-box {
  background: linear-gradient(135deg, #FFF3E8, #FFE0C0);
  border: 1.5px solid var(--orange-light);
  border-radius: var(--radius);
  padding: 2rem;
  text-align: center;
}
.result-box h4 { font-weight: 800; color: var(--orange-dark); font-size: 1.2rem; }

/* =====================
   SOLUTION
===================== */
#solution {
  padding: 6rem 0;
  background: linear-gradient(180deg, var(--gray-light) 0%, var(--white) 100%);
}

.solution-feature {
  display: flex;
  gap: 1.25rem;
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--gray-mid);
}
.solution-feature:last-child { border-bottom: none; }
.solution-feature .icon-wrap {
  width: 44px; height: 44px;
  min-width: 44px;
  background: var(--orange-xlight);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
}
.solution-feature .icon-wrap i { color: var(--orange); font-size: 1.2rem; }
.solution-feature h5 { font-size: .95rem; font-weight: 800; margin-bottom: .2rem; }
.solution-feature p { font-size: .87rem; color: var(--text-muted); margin: 0; }

.solution-visual {
  background: var(--white);
  border: 1.5px solid var(--gray-mid);
  border-radius: 20px;
  padding: 2rem;
  box-shadow: var(--shadow-card);
}

/* =====================
   SERVICES
===================== */
#services { padding: 6rem 0; background: var(--white); }

.service-card {
  background: var(--white);
  border: 1.5px solid var(--gray-mid);
  border-radius: var(--radius);
  padding: 2rem;
  height: 100%;
  position: relative;
  overflow: hidden;
  transition: all .3s;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--orange);
  transform: scaleX(0);
  transition: transform .3s;
}
.service-card:hover { border-color: var(--orange-light); box-shadow: var(--shadow); transform: translateY(-5px); }
.service-card:hover::before { transform: scaleX(1); }

.service-card .icon-box {
  width: 56px; height: 56px;
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.25rem;
  box-shadow: 0 6px 18px rgba(244,123,32,.35);
}
.service-card .icon-box i { font-size: 1.5rem; color: var(--white); }
.service-card h4 { font-size: 1.05rem; font-weight: 800; margin-bottom: .6rem; }
.service-card p { font-size: .88rem; color: var(--text-muted); margin: 0; line-height: 1.6; }
.service-tag {
  display: inline-block;
  font-size: .7rem;
  font-weight: 700;
  background: var(--orange-xlight);
  color: var(--orange);
  padding: .2rem .6rem;
  border-radius: 50px;
  margin-top: .75rem;
}

/* =====================
   PROCESS
===================== */
#process {
  padding: 6rem 0;
  background: linear-gradient(135deg, #1A1A1A 0%, #2D1A0A 100%);
  position: relative;
  overflow: hidden;
}
#process::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(circle at 50% 50%, rgba(244,123,32,.08) 0%, transparent 70%);
}

.process-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
}
.process-step::after {
  content: '';
  position: absolute;
  top: 28px;
  left: calc(50% + 34px);
  right: calc(-50% + 34px);
  height: 2px;
  background: linear-gradient(to right, var(--orange), rgba(244,123,32,.2));
}
.process-step:last-child::after { display: none; }

.step-num {
  width: 56px; height: 56px;
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
  font-weight: 900;
  color: var(--white);
  margin-bottom: 1rem;
  box-shadow: 0 6px 20px rgba(244,123,32,.4);
  position: relative;
  z-index: 1;
  flex-shrink: 0;
}
.process-step h5 {
  color: var(--white);
  font-size: .95rem;
  font-weight: 800;
  margin-bottom: .4rem;
}
.process-step p {
  color: rgba(255,255,255,.5);
  font-size: .82rem;
  margin: 0;
}

/* =====================
   BENEFITS
===================== */
#benefices { padding: 6rem 0; background: var(--white); }

.benefit-tab-nav {
  display: flex;
  gap: .5rem;
  background: var(--gray-light);
  padding: .35rem;
  border-radius: 50px;
  margin-bottom: 3rem;
  width: fit-content;
}
.benefit-tab-btn {
  border: none;
  background: transparent;
  padding: .6rem 1.5rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: .9rem;
  color: var(--text-muted);
  cursor: pointer;
  transition: all .25s;
}
.benefit-tab-btn.active {
  background: var(--orange);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(244,123,32,.4);
}

.benefit-content { display: none; }
.benefit-content.active { display: block; }

.benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.25rem;
  border-radius: var(--radius);
  background: var(--white);
  border: 1.5px solid var(--gray-mid);
  height: 100%;
  transition: all .25s;
}
.benefit-item:hover {
  border-color: var(--orange-light);
  box-shadow: var(--shadow-card);
  transform: translateY(-2px);
}
.benefit-item .bi-num {
  width: 40px; height: 40px; min-width: 40px;
  background: var(--orange-xlight);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-weight: 900;
  color: var(--orange);
  font-size: 1rem;
}
.benefit-item h5 { font-size: .95rem; font-weight: 800; margin-bottom: .25rem; }
.benefit-item p { font-size: .85rem; color: var(--text-muted); margin: 0; }

/* =====================
   CASE STUDY
===================== */
#cas-concret {
  padding: 6rem 0;
  background: var(--gray-light);
}

.case-screen {
  background: var(--white);
  border: 1.5px solid var(--gray-mid);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-card);
}
.case-screen-bar {
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  padding: .9rem 1.5rem;
  display: flex;
  align-items: center;
  gap: .6rem;
}
.case-screen-bar span {
  color: var(--white);
  font-weight: 700;
  font-size: .9rem;
}
.case-screen-body { padding: 1.5rem; }

.case-step {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: .9rem 1rem;
  border-radius: 10px;
  background: var(--gray-light);
  margin-bottom: .75rem;
  position: relative;
  overflow: hidden;
}
.case-step::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  background: var(--orange);
  border-radius: 0 2px 2px 0;
}
.case-step-num {
  width: 28px; height: 28px; min-width: 28px;
  background: var(--orange);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  font-size: .75rem;
  font-weight: 800;
}
.case-step h6 { font-size: .85rem; font-weight: 800; margin-bottom: .15rem; }
.case-step p { font-size: .8rem; color: var(--text-muted); margin: 0; }

.case-stat-box {
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  border-radius: var(--radius);
  padding: 1.5rem;
  color: var(--white);
  text-align: center;
  height: 100%;
}
.case-stat-box .stat-val {
  font-size: 2.4rem;
  font-weight: 900;
  line-height: 1;
  margin-bottom: .35rem;
}
.case-stat-box .stat-label {
  font-size: .82rem;
  opacity: .85;
}

/* =====================
   TESTIMONIALS
===================== */
#temoignages { padding: 6rem 0; background: var(--white); }

.testimonial-card {
  background: var(--white);
  border: 1.5px solid var(--gray-mid);
  border-radius: var(--radius);
  padding: 2rem;
  height: 100%;
  transition: all .3s;
  position: relative;
}
.testimonial-card:hover {
  border-color: var(--orange-light);
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}
.testimonial-card .quote {
  font-size: 2.5rem;
  color: var(--orange);
  line-height: 1;
  margin-bottom: .5rem;
  font-family: Georgia, serif;
}
.testimonial-card p {
  font-size: .92rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 1.25rem;
  font-style: italic;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: .9rem;
}
.author-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 900;
  font-size: 1rem;
  color: var(--white);
  flex-shrink: 0;
}
.author-name { font-weight: 800; font-size: .9rem; margin-bottom: .1rem; }
.author-role { font-size: .78rem; color: var(--text-muted); }
.stars { color: var(--orange); font-size: .85rem; margin-bottom: .75rem; }

/* =====================
   FAQ
===================== */
#faq {
  padding: 6rem 0;
  background: var(--gray-light);
}

.accordion-button {
  font-weight: 700;
  font-size: .95rem;
  background: var(--white) !important;
  color: var(--text-dark) !important;
  box-shadow: none !important;
  border-radius: var(--radius) !important;
}
.accordion-button::after {
  filter: invert(55%) sepia(100%) saturate(400%) hue-rotate(5deg);
}
.accordion-button:not(.collapsed) {
  color: var(--orange) !important;
  background: var(--white) !important;
}
.accordion-item {
  border: 1.5px solid var(--gray-mid) !important;
  border-radius: var(--radius) !important;
  margin-bottom: .75rem;
  overflow: hidden;
  background: var(--white);
}
.accordion-body {
  font-size: .9rem;
  color: var(--text-muted);
  line-height: 1.7;
  padding: 0 1.5rem 1.25rem;
}

/* =====================
   CTA SECTION
===================== */
#cta {
  padding: 7rem 0;
  background: linear-gradient(135deg, var(--orange) 0%, var(--orange-dark) 100%);
  position: relative;
  overflow: hidden;
}
#cta::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 20% 50%, rgba(255,255,255,.08) 0%, transparent 50%),
    radial-gradient(circle at 80% 50%, rgba(0,0,0,.1) 0%, transparent 50%);
}
#cta .cta-title {
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 900;
  color: var(--white);
  margin-bottom: 1rem;
}
#cta .cta-sub {
  color: rgba(255,255,255,.8);
  font-size: 1.1rem;
  margin-bottom: 2.5rem;
}
.btn-white {
  background: var(--white);
  color: var(--orange);
  border: none;
  padding: .85rem 2rem;
  border-radius: 50px;
  font-weight: 800;
  font-size: 1rem;
  transition: all .2s;
  box-shadow: 0 6px 24px rgba(0,0,0,.15);
}
.btn-white:hover {
  background: var(--white);
  color: var(--orange-dark);
  transform: translateY(-3px);
  box-shadow: 0 10px 32px rgba(0,0,0,.2);
}

/* =====================
   FOOTER
===================== */
footer {
  background: #111;
  padding: 4rem 0 2rem;
}
.footer-brand {
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--white);
  letter-spacing: -.02em;
  margin-bottom: .5rem;
}
.footer-brand span { color: var(--orange); }
footer p { color: rgba(255,255,255,.45); font-size: .87rem; }
.footer-link {
  color: rgba(255,255,255,.5);
  font-size: .87rem;
  font-weight: 600;
  display: block;
  padding: .3rem 0;
  transition: color .2s;
}
.footer-link:hover { color: var(--orange); }
.footer-heading {
  color: rgba(255,255,255,.25);
  font-size: .7rem;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-weight: 700;
  margin-bottom: .75rem;
}
.footer-divider { border-color: rgba(255,255,255,.08); margin: 2rem 0 1.5rem; }
.footer-bottom { color: rgba(255,255,255,.25); font-size: .8rem; }
.social-link {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,.08);
  display: inline-flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.5);
  font-size: 1rem;
  transition: all .2s;
  margin-right: .4rem;
}
.social-link:hover {
  background: var(--orange);
  color: var(--white);
}

/* =====================
   RESPONSIVE
===================== */
@media (max-width: 991.98px) {
  .hero-visual { height: 320px; margin-top: 3rem; }
  .process-step::after { display: none; }
}

@media (max-width: 575.98px) {
  .hero-ctas { flex-direction: column; }
  .hero-ctas .btn-orange,
  .hero-ctas .btn-outline-orange { text-align: center; }
  .hero-visual { height: 260px; }
  .db-grid { grid-template-columns: 1fr 1fr; }
  .db-chart-row { grid-template-columns: 1fr; }
}

/* =====================
   UTILITIES
===================== */
.bg-orange-xlight { background: var(--orange-xlight); }
.text-orange { color: var(--orange); }

/* scroll reveal default */
[data-aos] { transition-duration: 600ms !important; }
