/* ===========================================================
   Flota Labs — Main Stylesheet
   =========================================================== */

:root {
  --purple-dark: #2e0a52;
  --purple: #6d28d9;
  --purple-light: #c4b5fd;
  --blue: #0ea5e9;
  --navy: #150826;
  --accent: #f0a7a0;
  --accent-dark: #dd8a82;
  --text-dark: #1a1a2e;
  --text-light: #f5f3ff;
  --ink: #111827;
  --gray: #6b7280;
  --gray-light: #f3f4f6;
  --bg-alt: #f8fafc;
  --radius: 10px;
  --radius-lg: 18px;
  --max-width: 1180px;
}

html { scroll-behavior: smooth; }
[id] { scroll-margin-top: 100px; }

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: var(--text-dark);
  line-height: 1.6;
  background: #fff;
}

img { max-width: 100%; height: auto; display: block; }

a { color: var(--purple); text-decoration: none; }
a:hover { color: var(--blue); }

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

h1, h2, h3, h4 {
  line-height: 1.25;
  margin: 0 0 16px;
  font-weight: 700;
}

h1 { font-size: 2.6rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.4rem; }

p { margin: 0 0 16px; }

.btn {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 1rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn {
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  color: var(--navy);
  box-shadow: 0 0 0 rgba(240,167,160,0);
}
.btn-primary:hover {
  color: var(--navy);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(240,167,160,0.45);
}

.btn-accent-outline {
  background: transparent;
  border-color: var(--accent);
  color: var(--accent);
}
.btn-accent-outline:hover { background: var(--accent); color: var(--navy); }

.btn-outline {
  background: transparent;
  border-color: #fff;
  color: #fff;
}
.btn-outline:hover { background: #fff; color: var(--purple-dark); }

.btn-outline-dark {
  background: transparent;
  border-color: var(--purple);
  color: var(--purple);
}
.btn-outline-dark:hover { background: var(--purple); color: #fff; }

.btn .ripple {
  position: absolute;
  border-radius: 50%;
  background: rgba(255,255,255,0.5);
  transform: scale(0);
  animation: ripple-anim 0.6s ease-out;
  pointer-events: none;
}
@keyframes ripple-anim {
  to { transform: scale(3); opacity: 0; }
}

/* ---------------- Header ---------------- */
.site-header {
  background: transparent;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
  transition: background 0.3s ease, box-shadow 0.3s ease, padding 0.3s ease;
}
.site-header.is-scrolled {
  background: linear-gradient(120deg, var(--navy), var(--purple-dark));
  box-shadow: 0 6px 24px rgba(21,8,38,0.25);
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  padding-bottom: 14px;
}

.site-logo img { height: 44px; width: auto; }

.main-nav ul {
  list-style: none;
  display: flex;
  gap: 32px;
  margin: 0;
  padding: 0;
}

.main-nav a {
  color: var(--text-light);
  font-weight: 500;
}
.main-nav a:hover { color: var(--purple-light); }

.header-cta { display: flex; align-items: center; gap: 20px; }

.menu-toggle {
  display: none;
  background: none;
  border: none;
  color: #fff;
  font-size: 1.8rem;
  cursor: pointer;
}

@media (max-width: 860px) {
  .main-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--navy);
    max-height: 0;
    overflow: hidden;
    display: block;
    padding: 0 24px;
    transition: max-height 0.35s ease, padding 0.35s ease;
  }
  .main-nav.is-open { max-height: 400px; padding: 16px 24px; }
  .main-nav ul { flex-direction: column; gap: 16px; }
  .menu-toggle { display: block; }
  .header-cta .btn-primary { display: none; }
}

/* ---------------- Hero ---------------- */
.hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--navy) 0%, var(--purple-dark) 55%, var(--purple) 100%);
  color: #fff;
  padding: 150px 0 90px;
}
.hero::before {
  content: "";
  position: absolute;
  top: -20%;
  right: -10%;
  width: 520px;
  height: 520px;
  background: radial-gradient(circle, rgba(240,167,160,0.28), transparent 70%);
  pointer-events: none;
}
.hero::after {
  content: "";
  position: absolute;
  bottom: -25%;
  left: -10%;
  width: 460px;
  height: 460px;
  background: radial-gradient(circle, rgba(109,40,217,0.4), transparent 70%);
  pointer-events: none;
}
.hero .container {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: center;
}

.hero h1 { font-size: 3rem; }
.hero p.lead { font-size: 1.15rem; color: var(--purple-light); max-width: 520px; }

.hero-cta { display: flex; gap: 16px; margin-top: 28px; flex-wrap: wrap; }

.hero-badge {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--radius);
  padding: 24px;
}

.stat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 16px;
}
.stat-grid .stat-num { font-size: 1.8rem; font-weight: 700; color: #fff; }
.stat-grid .stat-label { font-size: 0.85rem; color: var(--purple-light); }

@media (max-width: 860px) {
  .hero .container { grid-template-columns: 1fr; }
  .hero { padding: 120px 0 60px; }
  .hero h1 { font-size: 2.2rem; }
}

/* ---------------- Sections ---------------- */
.section { padding: 80px 0; }
.section-alt { background: var(--bg-alt); }
.section-title { text-align: center; max-width: 700px; margin: 0 auto 48px; }
.section-title p { color: var(--gray); }

.eyebrow {
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--purple);
  background: rgba(109,40,217,0.08);
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 14px;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.card {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.04);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 30px rgba(46,10,82,0.12);
}

.card h3 { color: var(--purple-dark); }

.icon-badge {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--purple), var(--blue));
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 18px;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.step-num {
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--purple-light);
  margin-bottom: 8px;
}

.spec-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 12px;
}
.spec-table td, .spec-table th {
  border-bottom: 1px solid #e5e7eb;
  padding: 12px 8px;
  text-align: left;
}
.spec-table th { color: var(--purple-dark); width: 40%; }

@media (max-width: 860px) {
  .card-grid, .steps-grid { grid-template-columns: 1fr; }
}

/* ---------------- Advertising format galleries ---------------- */
.format-block { margin-bottom: 64px; }
.format-block:last-child { margin-bottom: 0; }

.format-header {
  max-width: 720px;
  margin-bottom: 32px;
}
.format-header h3 { font-size: 1.7rem; color: var(--purple-dark); margin-bottom: 10px; }
.format-header p { color: var(--gray); margin-bottom: 0; }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.gallery-grid.gallery-2col { grid-template-columns: repeat(2, 1fr); }

.gallery-item {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0,0,0,0.04);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.gallery-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 30px rgba(46,10,82,0.12);
}

.gallery-item-image {
  background: var(--gray-light);
  height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 16px;
}
.gallery-item-image img {
  max-height: 100%;
  max-width: 100%;
  width: auto;
  object-fit: contain;
  transition: transform 0.3s ease;
}
.gallery-item:hover .gallery-item-image img { transform: scale(1.05); }

.gallery-item-caption { padding: 18px 20px; }
.gallery-item-caption h4 {
  margin: 0 0 6px;
  font-size: 1.05rem;
  color: var(--purple-dark);
}
.gallery-item-caption p {
  margin: 0;
  font-size: 0.92rem;
  color: var(--gray);
}

@media (max-width: 960px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .gallery-grid, .gallery-grid.gallery-2col { grid-template-columns: 1fr; }
}

/* ---------------- "Our Work" home teaser tiles ---------------- */
.work-tiles {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}
.work-tile {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  display: block;
  height: 280px;
  background: var(--navy);
}
.work-tile img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.work-tile:hover img { transform: scale(1.08); }
.work-tile-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(21,8,38,0.88) 0%, rgba(21,8,38,0.15) 55%, rgba(21,8,38,0.05) 100%);
  display: flex;
  align-items: flex-end;
  padding: 24px;
}
.work-tile-overlay .eyebrow { background: rgba(255,255,255,0.15); color: #fff; }
.work-tile-text h3 { color: #fff; margin-bottom: 4px; }
.work-tile-text p { color: var(--purple-light); margin-bottom: 0; font-size: 0.9rem; }

@media (max-width: 720px) {
  .work-tiles { grid-template-columns: 1fr; }
}

/* ---------------- Contact map ---------------- */
.map-embed {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid #e5e7eb;
  margin-top: 24px;
}
.map-embed img { width: 100%; display: block; }
.map-caption {
  font-size: 0.85rem;
  color: var(--gray);
  margin-top: 10px;
}

/* ---------------- CTA band ---------------- */
.cta-band {
  background: linear-gradient(120deg, var(--purple), var(--blue));
  color: #fff;
  text-align: center;
  padding: 64px 0;
}
.cta-band h2 { color: #fff; }
.cta-band .btn-outline { border-color: #fff; }

/* ---------------- Contact ---------------- */
.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 48px;
}
.contact-info-item { margin-bottom: 24px; }
.contact-info-item .label { color: var(--gray); font-size: 0.9rem; text-transform: uppercase; letter-spacing: 0.05em; }
.contact-info-item .value { font-size: 1.15rem; font-weight: 600; color: var(--text-dark); }

.form-group { margin-bottom: 20px; }
.form-group label { display: block; margin-bottom: 6px; font-weight: 600; font-size: 0.9rem; }
.form-group input, .form-group textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #d1d5db;
  border-radius: 8px;
  font-size: 1rem;
  font-family: inherit;
}
.form-group textarea { min-height: 140px; resize: vertical; }
.form-group input:focus, .form-group textarea:focus {
  outline: none;
  border-color: var(--purple);
}

.form-notice {
  padding: 14px 18px;
  border-radius: 8px;
  margin-bottom: 20px;
  font-weight: 600;
}
.form-notice.success { background: #dcfce7; color: #166534; }
.form-notice.error { background: #fee2e2; color: #991b1b; }

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

/* ---------------- Footer ---------------- */
.site-footer {
  background: var(--navy);
  color: var(--purple-light);
  padding: 56px 0 24px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 32px;
  margin-bottom: 40px;
}
.footer-logo img { height: 40px; margin-bottom: 16px; }
.footer-grid h4 { color: #fff; font-size: 1rem; }
.footer-grid ul { list-style: none; margin: 0; padding: 0; }
.footer-grid li { margin-bottom: 10px; }
.footer-grid a { color: var(--purple-light); }
.footer-grid a:hover { color: #fff; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 20px;
  text-align: center;
  font-size: 0.85rem;
  color: rgba(245,243,255,0.6);
}

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

/* ===========================================================
   Redesign: motion system, icons, and new homepage sections
   =========================================================== */

/* ---------------- Scroll progress bar ---------------- */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0%;
  background: linear-gradient(90deg, var(--accent), var(--purple));
  z-index: 1100;
  transition: width 0.1s ease-out;
}

/* ---------------- Reveal-on-scroll ---------------- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1.is-visible { transition-delay: 0.08s; }
.reveal-delay-2.is-visible { transition-delay: 0.16s; }
.reveal-delay-3.is-visible { transition-delay: 0.24s; }
.reveal-delay-4.is-visible { transition-delay: 0.32s; }

/* ---------------- Icons ---------------- */
.icon {
  width: 26px;
  height: 26px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
  display: block;
}
.icon-circle {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--purple), var(--accent));
  color: #fff;
  margin-bottom: 18px;
}
.icon-circle.outline {
  background: rgba(109,40,217,0.08);
  color: var(--purple);
}

/* ---------------- Trust bar ---------------- */
.trust-bar {
  background: var(--bg-alt);
  padding: 36px 0;
  border-bottom: 1px solid #e5e7eb;
  border-top: 1px solid #e5e7eb;
}
.trust-bar .container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.trust-statement {
  font-size: 1rem;
  color: var(--gray);
  font-weight: 500;
  margin: 0;
}
.trust-points {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
}
.trust-point {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--purple-dark);
}
.trust-point .icon { width: 18px; height: 18px; }

/* ---------------- Problem grid ---------------- */
.problem-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.problem-item {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: var(--radius);
  padding: 28px 24px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.problem-item:hover { transform: translateY(-4px); box-shadow: 0 14px 30px rgba(46,10,82,0.1); }
.problem-item h4 { color: var(--purple-dark); font-size: 1.05rem; margin-bottom: 8px; }
.problem-item p { font-size: 0.92rem; color: var(--gray); margin: 0; }

@media (max-width: 960px) {
  .problem-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .problem-grid { grid-template-columns: 1fr; }
}

/* ---------------- Solution grid ---------------- */
.solution-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.solution-item {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: var(--radius);
  padding: 30px 26px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.solution-item:hover { transform: translateY(-4px); box-shadow: 0 14px 30px rgba(46,10,82,0.1); }
.solution-item h4 { color: var(--purple-dark); margin-bottom: 8px; }
.solution-item p { font-size: 0.92rem; color: var(--gray); margin: 0; }

@media (max-width: 960px) {
  .solution-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .solution-grid { grid-template-columns: 1fr; }
}

/* ---------------- Steps timeline ---------------- */
.steps-timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.steps-timeline::before {
  content: "";
  position: absolute;
  top: 27px;
  left: 12%;
  right: 12%;
  height: 2px;
  background: repeating-linear-gradient(90deg, var(--purple-light) 0, var(--purple-light) 8px, transparent 8px, transparent 16px);
  z-index: 0;
}
.timeline-step {
  position: relative;
  z-index: 1;
  text-align: center;
}
.timeline-num {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--purple), var(--accent));
  color: #fff;
  font-weight: 700;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  box-shadow: 0 8px 20px rgba(109,40,217,0.25);
}
.timeline-step h4 { font-size: 1.02rem; color: var(--purple-dark); margin-bottom: 6px; }
.timeline-step p { font-size: 0.88rem; color: var(--gray); margin: 0; }

@media (max-width: 860px) {
  .steps-timeline { grid-template-columns: repeat(2, 1fr); }
  .steps-timeline::before { display: none; }
}
@media (max-width: 600px) {
  .steps-timeline { grid-template-columns: 1fr; }
}

/* ---------------- Product cards ---------------- */
.product-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}
.product-card {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.product-card:hover { transform: translateY(-6px); box-shadow: 0 18px 40px rgba(46,10,82,0.14); }
.product-card-image {
  height: 220px;
  background: var(--bg-alt);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 20px;
}
.product-card-image img { max-height: 100%; width: auto; object-fit: contain; }
.product-card-body { padding: 26px; }
.product-card-body h3 { color: var(--purple-dark); font-size: 1.25rem; margin-bottom: 8px; }
.product-card-body p { font-size: 0.94rem; color: var(--gray); }
.product-card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
  color: var(--purple);
}
.product-card-link .icon { width: 16px; height: 16px; }
.product-card:hover .product-card-link .icon { transform: translateX(3px); }
.product-card-link .icon { transition: transform 0.2s ease; }

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

/* ---------------- Why grid ---------------- */
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.why-item {
  text-align: center;
  padding: 22px 14px;
}
.why-item .icon-circle { margin-left: auto; margin-right: auto; }
.why-item h4 { font-size: 0.98rem; color: var(--purple-dark); margin-bottom: 4px; }
.why-item p { font-size: 0.85rem; color: var(--gray); margin: 0; }

@media (max-width: 860px) {
  .why-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 500px) {
  .why-grid { grid-template-columns: 1fr; }
}

/* ---------------- Animated stats ---------------- */
.stats-band {
  background: linear-gradient(120deg, var(--navy), var(--purple-dark));
  color: #fff;
  padding: 70px 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
}
.stat-big {
  font-size: 2.6rem;
  font-weight: 800;
  background: linear-gradient(135deg, #fff, var(--accent));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.stat-big-label {
  font-size: 0.9rem;
  color: var(--purple-light);
  margin-top: 6px;
}

@media (max-width: 860px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 36px 20px; }
}

/* ---------------- Dashboard mockup ---------------- */
.dashboard-mockup {
  background: #fff;
  border-radius: var(--radius-lg);
  border: 1px solid #e5e7eb;
  box-shadow: 0 20px 50px rgba(46,10,82,0.12);
  overflow: hidden;
}
.dashboard-topbar {
  background: var(--navy);
  padding: 14px 20px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.dashboard-dot { width: 10px; height: 10px; border-radius: 50%; background: rgba(255,255,255,0.25); }
.dashboard-dot:nth-child(1) { background: var(--accent); }
.dashboard-title { margin-left: 12px; color: rgba(255,255,255,0.7); font-size: 0.82rem; }

.dashboard-body { padding: 28px; }
.dashboard-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 28px;
}
.dashboard-stat {
  background: var(--bg-alt);
  border-radius: var(--radius);
  padding: 16px;
}
.dashboard-stat .label { font-size: 0.78rem; color: var(--gray); text-transform: uppercase; letter-spacing: 0.04em; }
.dashboard-stat .value { font-size: 1.4rem; font-weight: 700; color: var(--purple-dark); margin-top: 4px; }

.dashboard-chart {
  display: flex;
  align-items: flex-end;
  gap: 10px;
  height: 120px;
  padding: 16px;
  background: var(--bg-alt);
  border-radius: var(--radius);
  margin-bottom: 20px;
}
.dashboard-bar {
  flex: 1;
  background: linear-gradient(180deg, var(--accent), var(--purple));
  border-radius: 6px 6px 0 0;
  transition: transform 0.3s ease;
}
.dashboard-bar:hover { transform: scaleY(1.05); }

.dashboard-progress-row { margin-bottom: 14px; }
.dashboard-progress-row .row-label {
  display: flex;
  justify-content: space-between;
  font-size: 0.85rem;
  color: var(--text-dark);
  margin-bottom: 6px;
}
.dashboard-progress-track {
  height: 8px;
  border-radius: 999px;
  background: #e5e7eb;
  overflow: hidden;
}
.dashboard-progress-fill {
  height: 100%;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--purple), var(--accent));
}

.dashboard-caption {
  text-align: center;
  font-size: 0.82rem;
  color: var(--gray);
  margin-top: 14px;
}

@media (max-width: 760px) {
  .dashboard-stats { grid-template-columns: repeat(2, 1fr); }
}

/* ---------------- Industries grid ---------------- */
.industries-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
}
.industry-card {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: var(--radius);
  padding: 22px 16px;
  text-align: center;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.industry-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 30px rgba(46,10,82,0.1);
  border-color: var(--accent);
}
.industry-card .icon-circle { width: 44px; height: 44px; border-radius: 12px; margin: 0 auto 12px; }
.industry-card .icon { width: 20px; height: 20px; }
.industry-card span { font-size: 0.86rem; font-weight: 600; color: var(--purple-dark); }

@media (max-width: 960px) {
  .industries-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 600px) {
  .industries-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ---------------- FAQ accordion ---------------- */
.faq-list { max-width: 760px; margin: 0 auto; }
.faq-item {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: var(--radius);
  margin-bottom: 14px;
  overflow: hidden;
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 20px 24px;
  font-weight: 600;
  color: var(--purple-dark);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary .icon { width: 20px; height: 20px; flex-shrink: 0; transition: transform 0.25s ease; color: var(--purple); }
.faq-item[open] summary .icon { transform: rotate(45deg); }
.faq-item-body { padding: 0 24px 22px; color: var(--gray); font-size: 0.95rem; }

/* ---------------- Final CTA (dark banner) ---------------- */
.final-cta {
  background: linear-gradient(120deg, var(--navy), var(--purple-dark) 60%, var(--purple));
  color: #fff;
  text-align: center;
  padding: 90px 0;
  position: relative;
  overflow: hidden;
}
.final-cta::before {
  content: "";
  position: absolute;
  top: -30%;
  right: -5%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(240,167,160,0.25), transparent 70%);
}
.final-cta .container { position: relative; z-index: 1; }
.final-cta h2 { font-size: 2.4rem; color: #fff; max-width: 700px; margin: 0 auto 28px; }

/* ---------------- Hero photo + floating stat cards ---------------- */
.hero-photo-wrap {
  position: relative;
}
.hero-photo-wrap img {
  border-radius: var(--radius-lg);
  box-shadow: 0 24px 60px rgba(0,0,0,0.35);
}
.floating-card {
  position: absolute;
  background: #fff;
  border-radius: 14px;
  padding: 14px 18px;
  box-shadow: 0 14px 34px rgba(0,0,0,0.25);
  display: flex;
  align-items: center;
  gap: 10px;
  animation: float-bob 4s ease-in-out infinite;
}
.floating-card .fc-num { font-weight: 800; font-size: 1.15rem; color: var(--purple-dark); line-height: 1; }
.floating-card .fc-label { font-size: 0.72rem; color: var(--gray); }
.floating-card.fc-1 { top: -18px; left: -18px; animation-delay: 0s; }
.floating-card.fc-2 { bottom: 30px; right: -22px; animation-delay: 1.3s; }
.floating-card.fc-3 { bottom: -20px; left: 40px; animation-delay: 2.1s; }

@keyframes float-bob {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

@media (max-width: 860px) {
  .floating-card { position: static; margin: 10px auto; width: fit-content; animation: none; }
}

/* ---------------- Mobile menu slide animation ---------------- */
/* consolidated into the .main-nav rules earlier in this file */
