/* ── Trusted By ── */
.trusted-bar {
  padding: 28px 0;
  background: var(--color-off-white);
  border-bottom: 1px solid var(--color-border);
}
.trusted-label {
  font-family: var(--font-heading);
  font-size: .75rem; font-weight: 700;
  color: var(--color-muted);
  letter-spacing: .12em; text-transform: uppercase;
  white-space: nowrap;
}
.trusted-scroll {
  display: flex; align-items: center; gap: var(--space-5);
  overflow: hidden;
}
.trusted-scroll .industry-pill {
  display: flex; align-items: center; gap: 8px;
  font-family: var(--font-heading); font-size: .82rem;
  font-weight: 600; color: var(--color-muted);
  white-space: nowrap; padding: 6px 14px;
  border: 1px solid var(--color-border);
  border-radius: 40px; background: #fff;
  transition: var(--transition-fast);
}
.trusted-scroll .industry-pill:hover {
  color: var(--color-navy); border-color: var(--color-navy);
}
.trusted-scroll .industry-pill i { color: var(--color-crimson); font-size: .8rem; }

/* ── Overview ── */
.overview-feature {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 18px 0;
  border-bottom: 1px solid var(--color-border);
}
.overview-feature:last-child { border-bottom: none; }
.ov-icon {
  width: 44px; height: 44px; flex-shrink: 0;
  background: linear-gradient(135deg, rgba(200,16,46,.1), rgba(200,16,46,.05));
  border-radius: var(--border-radius-sm);
  display: flex; align-items: center; justify-content: center;
  color: var(--color-crimson); font-size: 1.1rem;
  border: 1px solid rgba(200,16,46,.15);
}
.ov-text h5 { margin-bottom: 4px; font-size: .95rem; color: var(--color-heading); }
.ov-text p  { font-size: .85rem; color: var(--color-muted); margin: 0; }

.overview-image-wrap { position: relative; }
.overview-image-wrap img {
  border-radius: var(--border-radius-xl);
  box-shadow: var(--shadow-xl);
  width: 100%; object-fit: cover;
  height: 480px;
}
.overview-badge-float {
  position: absolute; bottom: -20px; left: -20px;
  background: var(--color-crimson);
  color: #fff; padding: 20px 24px;
  border-radius: var(--border-radius-md);
  text-align: center; box-shadow: var(--shadow-lg);
}
.overview-badge-float .num {
  display: block; font-family: var(--font-number);
  font-size: 2rem; font-weight: 900; line-height: 1;
}
.overview-badge-float .lbl {
  font-family: var(--font-heading);
  font-size: .72rem; letter-spacing: .08em;
  text-transform: uppercase; opacity: .85;
}

/* ── Product Category Cards ── */
.product-cat-card {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--border-radius-md);
  overflow: hidden;
  transition: var(--transition-base);
  height: 100%;
  display: flex; flex-direction: column;
}
.product-cat-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(200,16,46,.25);
}
.product-cat-img {
  height: 200px; overflow: hidden; position: relative;
}
.product-cat-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .5s ease;
}
.product-cat-card:hover .product-cat-img img { transform: scale(1.06); }
.product-cat-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(10,31,68,.6) 0%, transparent 60%);
}
.product-cat-tag {
  position: absolute; top: 12px; left: 12px;
  background: var(--color-crimson); color: #fff;
  font-family: var(--font-heading); font-size: .7rem;
  font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
  padding: 4px 10px; border-radius: 20px;
}
.product-cat-body {
  padding: 20px; flex: 1; display: flex; flex-direction: column;
}
.product-cat-body h4 {
  font-size: 1rem; margin-bottom: 8px; color: var(--color-heading);
}
.product-cat-body p {
  font-size: .85rem; color: var(--color-muted);
  flex: 1; margin-bottom: 16px; line-height: 1.6;
}
.product-cat-actions {
  display: flex; gap: 10px; flex-wrap: wrap;
}
.btn-card-view {
  flex: 1; padding: 9px 14px;
  background: var(--color-off-white); border: 1.5px solid var(--color-border);
  color: var(--color-navy); font-family: var(--font-heading);
  font-size: .8rem; font-weight: 600;
  border-radius: var(--border-radius-sm);
  cursor: pointer; transition: var(--transition-fast);
  text-align: center;
}
.btn-card-view:hover {
  background: var(--color-navy); color: #fff; border-color: var(--color-navy);
}
.btn-card-quote {
  flex: 1; padding: 9px 14px;
  background: var(--color-crimson); border: none;
  color: #fff; font-family: var(--font-heading);
  font-size: .8rem; font-weight: 600;
  border-radius: var(--border-radius-sm);
  cursor: pointer; transition: var(--transition-fast);
  text-align: center;
}
.btn-card-quote:hover { background: var(--color-crimson-dark); }

/* ── Services ── */
.service-card {
  background: #fff; border: 1px solid var(--color-border);
  border-radius: var(--border-radius-md);
  padding: var(--space-4); height: 100%;
  transition: var(--transition-base);
  position: relative; overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--color-crimson), var(--color-gold));
  transform: scaleX(0); transition: transform .3s ease;
}
.service-card:hover::before { transform: scaleX(1); }
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.service-icon {
  width: 60px; height: 60px;
  background: linear-gradient(135deg, rgba(10,31,68,.08), rgba(10,31,68,.04));
  border-radius: var(--border-radius-md);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem; margin-bottom: var(--space-3);
  border: 1px solid rgba(10,31,68,.08);
  transition: var(--transition-base);
}
.service-card:hover .service-icon {
  background: linear-gradient(135deg, var(--color-crimson), var(--color-crimson-dark));
  color: #fff; border-color: transparent;
}
.service-card h4 { font-size: 1rem; margin-bottom: 8px; }
.service-card p { font-size: .87rem; color: var(--color-muted); margin: 0; line-height: 1.65; }

/* ── Industries ── */
.industry-card {
  background: #fff; border: 1px solid var(--color-border);
  border-radius: var(--border-radius-md);
  padding: var(--space-4) var(--space-3);
  text-align: center; transition: var(--transition-base);
  cursor: pointer;
}
.industry-card:hover {
  transform: translateY(-4px); box-shadow: var(--shadow-lg);
  border-color: var(--color-crimson);
}
.industry-icon-wrap {
  width: 72px; height: 72px; margin: 0 auto var(--space-2);
  background: var(--color-off-white);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 2rem; transition: var(--transition-base);
  border: 2px solid var(--color-border);
}
.industry-card:hover .industry-icon-wrap {
  background: var(--color-crimson); color: #fff; border-color: var(--color-crimson);
}
.industry-card h5 { font-size: .95rem; margin-bottom: 6px; }
.industry-card p  { font-size: .82rem; color: var(--color-muted); margin: 0; }

/* ── Why Choose ── */
.why-section { background: linear-gradient(155deg, var(--color-navy-dark), var(--color-navy)); }
.why-card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--border-radius-md);
  padding: var(--space-4) var(--space-3);
  transition: var(--transition-base);
  height: 100%;
}
.why-card:hover {
  background: rgba(255,255,255,.1);
  transform: translateY(-4px);
  border-color: rgba(200,16,46,.4);
}
.why-icon {
  width: 56px; height: 56px;
  background: linear-gradient(135deg, var(--color-crimson), var(--color-crimson-dark));
  border-radius: var(--border-radius-sm);
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 1.4rem;
  margin-bottom: var(--space-3);
}
.why-card h4 { color: #fff; font-size: 1rem; margin-bottom: 8px; }
.why-card p  { color: rgba(255,255,255,.6); font-size: .87rem; margin: 0; line-height: 1.65; }

/* ── Stats ── */
.stats-section {
  background: var(--color-crimson);
  padding: var(--space-10) 0;
  position: relative; overflow: hidden;
}
.stats-section::before {
  content: '';
  position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Ccircle cx='20' cy='20' r='2'/%3E%3C/g%3E%3C/svg%3E");
}
.stat-block { text-align: center; position: relative; }
.stat-number {
  font-family: var(--font-number);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 900; color: #fff;
  line-height: 1; display: block;
  text-shadow: 0 2px 12px rgba(0,0,0,.2);
}
.stat-label {
  font-family: var(--font-heading);
  font-size: .85rem; color: rgba(255,255,255,.8);
  text-transform: uppercase; letter-spacing: .1em;
  margin-top: 8px; display: block;
}
.stat-sep {
  width: 1px; background: rgba(255,255,255,.2);
  margin: 0 auto;
}

/* ── How We Work ── */
.process-step {
  display: flex; gap: var(--space-3); align-items: flex-start;
  position: relative;
}
.process-step:not(:last-child)::after {
  content: '';
  position: absolute; left: 23px; top: 48px; bottom: -24px;
  width: 2px;
  background: linear-gradient(to bottom, var(--color-crimson), transparent);
}
.step-number {
  width: 48px; height: 48px; flex-shrink: 0;
  background: linear-gradient(135deg, var(--color-crimson), var(--color-crimson-dark));
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-family: var(--font-number); font-size: 1rem; font-weight: 800;
  color: #fff; box-shadow: 0 4px 16px rgba(200,16,46,.4);
}
.step-content h4 { font-size: 1rem; margin-bottom: 6px; }
.step-content p  { font-size: .87rem; color: var(--color-muted); margin: 0; }

/* ── Testimonials ── */
.testimonial-card {
  background: #fff; border: 1px solid var(--color-border);
  border-radius: var(--border-radius-md);
  padding: var(--space-4);
  height: 100%; position: relative;
  transition: var(--transition-base);
}
.testimonial-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); }
.testimonial-card::before {
  content: '\201C';
  position: absolute; top: 16px; right: 20px;
  font-size: 5rem; font-family: Georgia, serif;
  color: rgba(200,16,46,.08); line-height: 1;
}
.stars { color: var(--color-gold); font-size: .9rem; margin-bottom: var(--space-2); }
.testimonial-text {
  font-size: .9rem; color: var(--color-body);
  line-height: 1.75; margin-bottom: var(--space-3);
  font-style: italic;
}
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.author-avatar {
  width: 44px; height: 44px; border-radius: 50%; flex-shrink: 0;
  background: var(--color-light);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-heading); font-weight: 700;
  color: var(--color-navy); font-size: 1rem;
  overflow: hidden;
}
.author-avatar img { width: 100%; height: 100%; object-fit: cover; }
.author-name { font-family: var(--font-heading); font-size: .9rem; font-weight: 700; color: var(--color-heading); }
.author-role { font-size: .78rem; color: var(--color-muted); }

/* ── Blog Cards ── */
.blog-card {
  background: #fff; border: 1px solid var(--color-border);
  border-radius: var(--border-radius-md);
  overflow: hidden; transition: var(--transition-base);
  height: 100%; display: flex; flex-direction: column;
}
.blog-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.blog-img {
  height: 200px; overflow: hidden;
}
.blog-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.blog-card:hover .blog-img img { transform: scale(1.05); }
.blog-body { padding: 20px; flex: 1; display: flex; flex-direction: column; }
.blog-category {
  display: inline-block; background: rgba(200,16,46,.08);
  color: var(--color-crimson); font-family: var(--font-heading);
  font-size: .72rem; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase;
  padding: 4px 10px; border-radius: 20px; margin-bottom: 10px;
}
.blog-title { font-size: 1rem; margin-bottom: 8px; line-height: 1.45; }
.blog-title a { color: var(--color-heading); }
.blog-title a:hover { color: var(--color-crimson); }
.blog-date { font-size: .78rem; color: var(--color-muted); margin-bottom: 10px; }
.blog-excerpt { font-size: .87rem; color: var(--color-muted); flex: 1; margin-bottom: var(--space-2); line-height: 1.65; }
.blog-read-more {
  font-family: var(--font-heading); font-size: .85rem;
  font-weight: 700; color: var(--color-crimson);
  display: flex; align-items: center; gap: 6px; margin-top: auto;
  transition: var(--transition-fast);
}
.blog-read-more:hover { gap: 10px; color: var(--color-crimson-dark); }

/* ── FAQ Preview ── */
.faq-item {
  border: 1px solid var(--color-border);
  border-radius: var(--border-radius-md);
  margin-bottom: 12px; overflow: hidden;
  transition: var(--transition-fast);
}
.faq-item.open { border-color: rgba(200,16,46,.3); box-shadow: 0 4px 16px rgba(200,16,46,.08); }
.faq-question {
  display: flex; justify-content: space-between; align-items: center;
  padding: 18px var(--space-3); cursor: pointer;
  background: #fff; user-select: none;
}
.faq-question:hover { background: var(--color-off-white); }
.faq-q-text {
  font-family: var(--font-heading); font-size: .95rem;
  font-weight: 600; color: var(--color-heading);
  padding-right: 12px;
}
.faq-icon {
  width: 28px; height: 28px; flex-shrink: 0;
  background: var(--color-light); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--color-navy); font-size: .8rem;
  transition: var(--transition-base);
}
.faq-item.open .faq-icon {
  background: var(--color-crimson); color: #fff; transform: rotate(45deg);
}
.faq-answer {
  max-height: 0; overflow: hidden;
  transition: max-height .4s cubic-bezier(.4,0,.2,1), padding .3s ease;
  background: var(--color-off-white);
}
.faq-item.open .faq-answer { max-height: 500px; padding: 0 var(--space-3) var(--space-2); }
.faq-answer p { font-size: .9rem; color: var(--color-body); margin: 0; padding-top: var(--space-2); line-height: 1.7; }

/* ── CTA ── */
.cta-section {
  background: linear-gradient(135deg, var(--color-navy-dark) 0%, var(--color-navy) 100%);
  padding: var(--space-12) 0;
  position: relative; overflow: hidden;
  text-align: center;
}
.cta-section::before {
  content: '';
  position: absolute; top: -100px; right: -100px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(200,16,46,.15), transparent 70%);
  border-radius: 50%;
}
.cta-section::after {
  content: '';
  position: absolute; bottom: -80px; left: -80px;
  width: 320px; height: 320px;
  background: radial-gradient(circle, rgba(212,160,23,.08), transparent 70%);
  border-radius: 50%;
}
.cta-section h2 { color: #fff; position: relative; z-index: 1; }
.cta-section p  { color: rgba(255,255,255,.7); position: relative; z-index: 1; }
.cta-actions { position: relative; z-index: 1; }
