:root {
  --accent: #E05C00;
  --accent-dark: #c44f00;
  --bg: #FEFDF9;
  --cream: #F5F2EA;
  --dark: #1C1C1C;
  --text: #2C2C2C;
  --muted: #6B6B6B;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--bg);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
}

[data-lang="bn"] body,
[data-lang="bn"] h1, [data-lang="bn"] h2, [data-lang="bn"] h3,
[data-lang="bn"] h4, [data-lang="bn"] .font-display {
  font-family: 'Hind Siliguri', sans-serif;
}

[data-lang="en"] body,
[data-lang="en"] h1, [data-lang="en"] h2, [data-lang="en"] h3,
[data-lang="en"] h4, [data-lang="en"] .font-display {
  font-family: 'DM Sans', sans-serif;
  letter-spacing: -0.03em;
}

[data-lang="bn"] [data-en-only] { display: none !important; }
[data-lang="en"] [data-bn-only] { display: none !important; }

.animated-gradient-text {
  display: inline-block;
  font-weight: 700;
  font-size: clamp(2.5rem, 8vw, 4.5rem);
  line-height: 1;
  background: linear-gradient(90deg, #E05C00, #F59E0B, #D97706, #E05C00, #F59E0B);
  background-size: 300% 100%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradient-shift 4s ease infinite;
}

@keyframes gradient-shift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

/* Hero wave + particles */
.hero-section {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  background: linear-gradient(160deg, #0f0f0f 0%, #1a1410 40%, #2d1f12 100%);
}

.hero-section::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: url('../assets/backgrounds/bg-coal.png');
  background-size: cover;
  background-position: center;
  opacity: 0.35;
  filter: brightness(0.35) contrast(1.15);
}

#hero-particles {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.hero-wave {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 3;
  line-height: 0;
}

.hero-wave svg {
  width: 100%;
  height: 80px;
}

.hero-video-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-video-wrap video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.35;
}

.hero-section::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(15, 15, 15, 0.55) 0%, rgba(15, 15, 15, 0.35) 45%, rgba(15, 15, 15, 0.65) 100%);
}

.hero-content {
  position: relative;
  z-index: 4;
  z-index: 4;
}

/* ── Clients page ── */
.clients-page {
  background: var(--bg);
}

.clients-hero {
  position: relative;
  min-height: 420px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.clients-hero-bg {
  position: absolute;
  inset: 0;
  background-color: #1a1410;
  background-image: var(--clients-bg, none);
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  transform: scale(1.02);
}

.clients-hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(105deg, rgba(15, 12, 10, 0.92) 0%, rgba(28, 20, 14, 0.78) 45%, rgba(224, 92, 0, 0.35) 100%),
    linear-gradient(180deg, transparent 50%, rgba(254, 253, 249, 0.15) 100%);
}

.clients-hero-content,
.about-hero-content {
  position: relative;
  z-index: 10;
}

.clients-hero-content {
  padding-top: 7rem;
  padding-bottom: 5.5rem;
  text-align: center;
}

.clients-hero-badge {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #f5f2ea;
  background: rgba(224, 92, 0, 0.25);
  border: 1px solid rgba(245, 242, 234, 0.2);
  padding: 0.4rem 1rem;
  border-radius: 9999px;
  margin-bottom: 1.25rem;
}

.clients-hero-title {
  font-size: clamp(2.25rem, 6vw, 3.75rem);
  font-weight: 700;
  color: #f5f2ea;
  line-height: 1.15;
  margin-bottom: 1rem;
}

.clients-hero-title-accent {
  display: block;
  background: linear-gradient(90deg, #f59e0b, #e05c00, #fbbf24);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.clients-hero-desc {
  font-size: 1rem;
  line-height: 1.65;
  color: rgba(245, 242, 234, 0.85);
  max-width: 36rem;
  margin: 0 auto 2rem;
}

.clients-stats {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem 2.5rem;
}

.clients-stat {
  text-align: center;
  padding: 0.75rem 1.25rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(245, 242, 234, 0.15);
  border-radius: 1rem;
  backdrop-filter: blur(8px);
  min-width: 100px;
}

.clients-stat-num {
  display: block;
  font-size: 1.75rem;
  font-weight: 700;
  color: #f59e0b;
  font-family: 'DM Sans', sans-serif;
  line-height: 1.2;
}

.clients-stat-label {
  font-size: 0.75rem;
  color: rgba(245, 242, 234, 0.75);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.clients-hero-wave {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 5;
  line-height: 0;
}

.clients-hero-wave svg {
  width: 100%;
  height: 64px;
}

.clients-main {
  position: relative;
  z-index: 2;
}

.clients-section {
  padding: 4rem 0;
}

.clients-section--partners {
  padding-top: 3rem;
  background: #f8f9fa;
}

.clients-section--grid {
  background: linear-gradient(180deg, #fefdf9 0%, #f5f2ea 50%, #fefdf9 100%);
  padding: 4.5rem 0;
}

.clients-section--cta {
  padding: 2rem 0 5rem;
  background: #fefdf9;
}

.clients-partners-panel {
  background: #ffffff;
  border: 1px solid rgba(44, 44, 44, 0.06);
  border-radius: 1.5rem;
  padding: 2.5rem 1.5rem 2rem;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
}

@media (min-width: 768px) {
  .clients-partners-panel {
    padding: 3rem 2.5rem 2.5rem;
    border-radius: 1.75rem;
  }
}

.clients-section-head {
  margin-bottom: 2rem;
}

.clients-section-head--center {
  text-align: center;
}

.clients-section-desc {
  font-size: 0.9375rem;
  line-height: 1.65;
  color: #6b6b6b;
  max-width: 32rem;
  margin: 0.5rem auto 0;
}

.clients-section-tag {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #e05c00;
  margin-bottom: 0.5rem;
}

.trusted-by-slider--panel {
  margin-top: 0.25rem;
  padding: 0.25rem 0 0.5rem;
}

.trusted-by-slider--panel .trusted-by-logo {
  min-width: 130px;
  height: 76px;
}

.trusted-by-slider--panel .trusted-by-logo-img {
  height: 58px;
}

.clients-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}

@media (min-width: 640px) {
  .clients-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (min-width: 1024px) {
  .clients-grid { grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
}

.client-card-enhanced {
  position: relative;
  border-radius: 1.25rem;
  overflow: hidden;
}

.client-card-enhanced-glow {
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(224, 92, 0, 0.4), rgba(245, 158, 11, 0.2), transparent);
  opacity: 0;
  transition: opacity 0.35s ease;
}

.client-card-enhanced:hover .client-card-enhanced-glow {
  opacity: 1;
}

.client-card-enhanced-inner {
  position: relative;
  z-index: 1;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(44, 44, 44, 0.06);
  border-radius: 1.2rem;
  padding: 1.5rem 1rem;
  text-align: center;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.client-card-enhanced:hover .client-card-enhanced-inner {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(224, 92, 0, 0.12);
}

.client-card-logo-ring {
  width: 100%;
  min-height: 5.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f8f9fa;
  border-radius: 1rem;
  padding: 1rem 0.75rem;
  border: 1px solid rgba(44, 44, 44, 0.06);
}

.client-sector-pill {
  display: inline-block;
  margin-top: 0.5rem;
  font-size: 0.65rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #e05c00;
  background: rgba(224, 92, 0, 0.08);
  padding: 0.25rem 0.65rem;
  border-radius: 9999px;
}

.clients-testimonials-block {
  padding: 4rem 0 4.5rem;
}

.clients-cta-card {
  text-align: center;
  padding: 3.25rem 2rem;
  border-radius: 1.75rem;
  background: linear-gradient(90deg, #e05c00 0%, #f59e0b 52%, #fbbf24 100%);
  box-shadow:
    0 16px 48px rgba(224, 92, 0, 0.28),
    0 4px 16px rgba(224, 92, 0, 0.12);
}

@media (min-width: 768px) {
  .clients-cta-card {
    padding: 3.75rem 3rem;
    border-radius: 2rem;
  }
}

.clients-cta-title {
  font-size: clamp(1.5rem, 4vw, 2rem);
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 0.75rem;
  line-height: 1.25;
}

.clients-cta-desc {
  font-size: 0.9375rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.92);
  max-width: 36rem;
  margin: 0 auto 2rem;
}

.clients-cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  color: #e05c00;
  font-weight: 600;
  font-size: 1rem;
  padding: 0.9rem 2.25rem;
  border-radius: 9999px;
  text-decoration: none;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.clients-cta-btn:hover {
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.18);
  background: #fefdf9;
}

@media (prefers-reduced-motion: reduce) {
  .clients-hero-bg { background-attachment: scroll; transform: none; }
}

/* ── About page ── */
.about-page {
  background: var(--bg);
}

.about-hero {
  position: relative;
  min-height: 400px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.about-hero-bg {
  position: absolute;
  inset: 0;
  background-color: #1a1410;
  background-image: var(--page-bg, none);
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.about-hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(120deg, rgba(12, 10, 8, 0.9) 0%, rgba(30, 22, 16, 0.82) 50%, rgba(224, 92, 0, 0.3) 100%),
    linear-gradient(180deg, transparent 55%, rgba(254, 253, 249, 0.12) 100%);
}

.about-hero-content {
  padding-top: 7rem;
  padding-bottom: 5.5rem;
  text-align: center;
}

.about-hero-badge {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #f5f2ea;
  background: rgba(224, 92, 0, 0.22);
  border: 1px solid rgba(245, 242, 234, 0.2);
  padding: 0.4rem 1rem;
  border-radius: 9999px;
  margin-bottom: 1.25rem;
}

.about-hero-title {
  font-size: clamp(2rem, 5.5vw, 3.5rem);
  font-weight: 700;
  color: #f5f2ea;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.about-hero-title-accent {
  display: block;
  margin-top: 0.15em;
  background: linear-gradient(90deg, #fbbf24, #e05c00, #f59e0b);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.about-hero-desc {
  font-size: 1rem;
  line-height: 1.7;
  color: rgba(245, 242, 234, 0.88);
  max-width: 38rem;
  margin: 0 auto 2rem;
}

.about-hero-stats {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem 2rem;
}

.about-hero-stat {
  padding: 0.65rem 1.15rem;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(245, 242, 234, 0.12);
  border-radius: 0.875rem;
  backdrop-filter: blur(8px);
  min-width: 96px;
}

.about-hero-stat-num {
  display: block;
  font-size: 1.5rem;
  font-weight: 700;
  color: #f59e0b;
  line-height: 1.2;
}

.about-hero-stat-label {
  font-size: 0.7rem;
  color: rgba(245, 242, 234, 0.7);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.about-hero-wave {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 5;
  line-height: 0;
}

.about-hero-wave svg {
  width: 100%;
  height: 64px;
}

.about-main {
  position: relative;
  z-index: 2;
}

/* Founder — two-column (reference layout) */
.about-founder-section {
  padding: 5rem 0;
  background: #ffffff;
}

.about-founder-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .about-founder-grid {
    grid-template-columns: 1fr 1fr;
    gap: 4rem 3rem;
  }
}

.about-founder-tag {
  display: inline-block;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #6b6b6b;
  background: #f0f0f0;
  padding: 0.4rem 0.85rem;
  border-radius: 0.25rem;
  margin-bottom: 1.25rem;
}

.about-founder-title {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  line-height: 1.15;
  margin: 0 0 1.25rem;
  color: #1a1a1a;
}

.about-founder-title-line {
  display: block;
}

.about-founder-title-accent {
  display: block;
  color: #e05c00;
}

.about-founder-desc {
  font-size: 1rem;
  line-height: 1.75;
  color: #6b6b6b;
  margin: 0 0 2rem;
  max-width: 34rem;
}

.about-founder-features {
  list-style: none;
  margin: 0 0 2.25rem;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.85rem 1.5rem;
}

@media (min-width: 640px) {
  .about-founder-features {
    grid-template-columns: 1fr 1fr;
    column-gap: 2rem;
  }
}

.about-founder-feature {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.9375rem;
  font-weight: 500;
  color: #4a4a4a;
}

.about-founder-feature--highlight {
  grid-column: 1 / -1;
  max-width: 20rem;
  padding: 0.85rem 1.1rem;
  background: #ffffff;
  border-radius: 0.5rem;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.08);
  color: #2c2c2c;
  font-weight: 600;
}

@media (min-width: 640px) {
  .about-founder-feature--highlight {
    grid-column: 1;
    max-width: none;
  }
}

.about-founder-check {
  flex-shrink: 0;
  width: 1.35rem;
  height: 1.35rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(224, 92, 0, 0.12);
  color: #e05c00;
}

.about-founder-check svg {
  width: 0.75rem;
  height: 0.75rem;
}

.about-founder-check--solid {
  background: #e05c00;
  color: #ffffff;
}

.about-founder-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.about-founder-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 0.35rem;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.about-founder-btn--primary {
  background: #e05c00;
  color: #ffffff;
  box-shadow: 0 6px 20px rgba(224, 92, 0, 0.35);
}

.about-founder-btn--primary:hover {
  background: #c44f00;
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(224, 92, 0, 0.4);
}

.about-founder-visual {
  display: flex;
  justify-content: center;
}

@media (min-width: 1024px) {
  .about-founder-visual {
    justify-content: flex-end;
  }
}

.about-founder-photo-wrap {
  position: relative;
  width: 100%;
  max-width: 420px;
  line-height: 0;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.about-founder-photo {
  width: 100%;
  height: auto;
  max-height: 520px;
  object-fit: contain;
  object-position: center bottom;
  display: block;
  filter:
    drop-shadow(0 12px 28px rgba(0, 0, 0, 0.12))
    drop-shadow(0 4px 12px rgba(44, 44, 44, 0.08));
  transition: filter 0.35s ease, transform 0.35s ease;
}

.about-founder-visual:hover .about-founder-photo {
  filter:
    drop-shadow(0 18px 40px rgba(0, 0, 0, 0.16))
    drop-shadow(0 6px 16px rgba(224, 92, 0, 0.12));
  transform: translateY(-4px);
}

.about-section {
  padding: 4.5rem 0;
}

/* Our story — website background cover */
.about-story-section {
  position: relative;
  overflow: hidden;
}

.about-story-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-color: #e8e6e2;
  background-image: url('../assets/backgrounds/bg-website.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

.about-story-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(105deg, rgba(254, 253, 249, 0.94) 0%, rgba(254, 253, 249, 0.88) 42%, rgba(254, 253, 249, 0.82) 100%),
    linear-gradient(180deg, rgba(245, 242, 234, 0.75) 0%, rgba(254, 253, 249, 0.9) 100%);
  pointer-events: none;
}

@media (max-width: 1024px) {
  .about-story-bg {
    background-attachment: scroll;
  }
}

@media (prefers-reduced-motion: reduce) {
  .about-story-bg {
    background-attachment: scroll;
  }
}

.about-section--cream {
  background: linear-gradient(180deg, #f5f2ea 0%, #fefdf9 50%, #f5f2ea 100%);
}

.about-section-tag {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #e05c00;
  margin-bottom: 0.75rem;
}

.about-section-head--center {
  text-align: center;
}

.about-heading {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 0.75rem;
}

.about-subhead {
  font-size: 0.9375rem;
  color: var(--muted);
  max-width: 28rem;
  margin: 0 auto;
}

.about-body {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--muted);
  margin-bottom: 1.25rem;
}

.about-story-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .about-story-grid {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }
}

.about-material-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.5rem;
}

.about-chip {
  font-size: 0.8125rem;
  font-weight: 600;
  padding: 0.4rem 0.85rem;
  background: #fff;
  border: 1px solid rgba(224, 92, 0, 0.15);
  border-radius: 9999px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  transition: transform 0.25s ease, border-color 0.25s ease;
}

.about-chip:hover {
  transform: translateY(-2px);
  border-color: rgba(224, 92, 0, 0.4);
}

.about-image-frame {
  position: relative;
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

.about-image-frame::before {
  content: '';
  position: absolute;
  inset: 0;
  border: 3px solid rgba(224, 92, 0, 0.25);
  border-radius: inherit;
  z-index: 2;
  pointer-events: none;
}

.about-story-img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.about-image-frame:hover .about-story-img {
  transform: scale(1.04);
}

.about-image-badge {
  position: absolute;
  bottom: 1.25rem;
  left: 1.25rem;
  z-index: 3;
  background: rgba(28, 28, 28, 0.88);
  backdrop-filter: blur(8px);
  padding: 0.75rem 1.25rem;
  border-radius: 1rem;
  border-left: 4px solid #e05c00;
}

.about-image-badge-num {
  display: block;
  font-size: 1.5rem;
  font-weight: 700;
  color: #f59e0b;
  line-height: 1;
}

.about-image-badge-text {
  font-size: 0.7rem;
  color: rgba(245, 242, 234, 0.8);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.about-mv-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .about-mv-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
}

.about-mv-card {
  border-radius: 1.5rem;
  padding: 2rem;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.about-mv-card--dark {
  background: linear-gradient(145deg, #1c1c1c 0%, #2a2218 100%);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.about-mv-card--light {
  background: #fff;
  border: 1px solid rgba(44, 44, 44, 0.06);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
}

.about-mv-icon {
  width: 3rem;
  height: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(224, 92, 0, 0.2);
  border-radius: 0.75rem;
  color: #e05c00;
  margin-bottom: 1.25rem;
}

.about-mv-icon svg {
  width: 1.5rem;
  height: 1.5rem;
}

.about-mv-icon--light {
  background: rgba(224, 92, 0, 0.1);
}

.about-timeline-wrap {
  position: relative;
  max-width: 100%;
  margin: 0 auto;
  padding-top: 0.5rem;
}

.about-timeline-track {
  display: none;
  pointer-events: none;
}

@media (min-width: 768px) {
  .about-timeline-track {
    display: block;
    position: absolute;
    left: 8%;
    right: 8%;
    top: 4.35rem;
    height: 3rem;
    z-index: 2;
    overflow: hidden;
  }

  .about-timeline-line {
    position: absolute;
    left: 0;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    height: 2px;
    background: linear-gradient(90deg, rgba(224, 92, 0, 0.15), rgba(224, 92, 0, 0.35), rgba(224, 92, 0, 0.15));
    border-radius: 2px;
  }

  .about-timeline-light {
    position: absolute;
    top: 50%;
    left: -25%;
    width: 28%;
    height: 6px;
    transform: translateY(-50%);
    border-radius: 9999px;
    background: linear-gradient(
      90deg,
      transparent 0%,
      rgba(245, 158, 11, 0.35) 25%,
      rgba(255, 255, 255, 0.95) 50%,
      rgba(245, 158, 11, 0.35) 75%,
      transparent 100%
    );
    box-shadow:
      0 0 20px rgba(245, 158, 11, 0.55),
      0 0 40px rgba(224, 92, 0, 0.25);
    animation: timeline-light-sweep 4.5s ease-in-out infinite;
  }
}

.about-timeline {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  max-width: 640px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.about-timeline::before {
  content: '';
  position: absolute;
  left: 1.35rem;
  top: 0.5rem;
  bottom: 0.5rem;
  width: 2px;
  background: linear-gradient(180deg, #e05c00, #f59e0b, rgba(224, 92, 0, 0.2));
}

.about-timeline::after {
  content: '';
  position: absolute;
  left: 1.35rem;
  top: 0.5rem;
  width: 2px;
  height: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(245, 158, 11, 0.85), transparent);
  box-shadow: 0 0 12px rgba(245, 158, 11, 0.6);
  animation: timeline-light-sweep-vertical 4.5s ease-in-out infinite;
  pointer-events: none;
}

@media (min-width: 768px) {
  .about-timeline {
    grid-template-columns: repeat(4, 1fr);
    max-width: none;
    gap: 1rem;
  }

  .about-timeline::before,
  .about-timeline::after {
    display: none;
  }
}

.about-timeline-item {
  position: relative;
  padding: 1.25rem 0 1.25rem 3.5rem;
}

@media (min-width: 768px) {
  .about-timeline-item {
    padding: 1.5rem 1rem;
    text-align: center;
  }
}

.about-timeline-year {
  display: block;
  font-size: 1.25rem;
  font-weight: 700;
  color: #e05c00;
  margin-bottom: 0.5rem;
  transition: color 0.4s ease, text-shadow 0.4s ease;
  animation: timeline-year-glow 4.5s ease-in-out infinite;
  animation-delay: calc(var(--i, 0) * 1.125s);
}

.about-timeline-dot {
  position: absolute;
  left: 0.85rem;
  top: 1.6rem;
  width: 12px;
  height: 12px;
  background: #e05c00;
  border: 2px solid #fefdf9;
  border-radius: 50%;
  z-index: 2;
  animation: timeline-dot-light 4.5s ease-in-out infinite;
  animation-delay: calc(var(--i, 0) * 1.125s);
}

.about-timeline-dot::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  width: 2.5rem;
  height: 2.5rem;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: rgba(224, 92, 0, 0.1);
  z-index: -1;
  transition: background 0.4s ease, box-shadow 0.4s ease;
  animation: timeline-ring-glow 4.5s ease-in-out infinite;
  animation-delay: calc(var(--i, 0) * 1.125s);
}

@media (min-width: 768px) {
  .about-timeline-dot {
    position: relative;
    left: auto;
    top: auto;
    margin: 0 auto 0.75rem;
  }
}

@keyframes timeline-light-sweep {
  0% {
    left: -25%;
    opacity: 0;
  }
  8% {
    opacity: 1;
  }
  92% {
    opacity: 1;
  }
  100% {
    left: 100%;
    opacity: 0;
  }
}

@keyframes timeline-light-sweep-vertical {
  0% {
    top: 5%;
    height: 18%;
    opacity: 0.35;
  }
  50% {
    top: 72%;
    height: 18%;
    opacity: 1;
  }
  100% {
    top: 5%;
    height: 18%;
    opacity: 0.35;
  }
}

@keyframes timeline-dot-light {
  0%, 8%, 100% {
    box-shadow: 0 0 0 0 rgba(224, 92, 0, 0.15);
    transform: scale(1);
  }
  2%, 14% {
    box-shadow:
      0 0 0 8px rgba(245, 158, 11, 0.3),
      0 0 20px rgba(224, 92, 0, 0.5);
    transform: scale(1.2);
  }
}

@keyframes timeline-ring-glow {
  0%, 8%, 100% {
    background: rgba(224, 92, 0, 0.1);
    box-shadow: none;
  }
  2%, 14% {
    background: rgba(224, 92, 0, 0.2);
    box-shadow: 0 0 24px rgba(245, 158, 11, 0.45);
  }
}

@keyframes timeline-year-glow {
  0%, 8%, 100% {
    color: #e05c00;
    text-shadow: none;
  }
  2%, 14% {
    color: #c44f00;
    text-shadow: 0 0 14px rgba(245, 158, 11, 0.5);
  }
}

.about-timeline-text {
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.6;
}

.about-values-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

@media (min-width: 640px) {
  .about-values-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .about-values-grid { grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
}

.about-value-card {
  background: #fff;
  border-radius: 1.25rem;
  padding: 1.75rem 1.25rem;
  text-align: center;
  border: 1px solid rgba(44, 44, 44, 0.06);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.about-value-card:hover {
  transform: translateY(-6px);
  border-color: rgba(224, 92, 0, 0.25);
  box-shadow: 0 16px 40px rgba(224, 92, 0, 0.1);
}

.about-value-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  font-size: 1.25rem;
  background: linear-gradient(135deg, rgba(224, 92, 0, 0.12), rgba(245, 158, 11, 0.08));
  border-radius: 0.75rem;
  margin-bottom: 1rem;
}

.about-certs-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

@media (min-width: 1024px) {
  .about-certs-grid { grid-template-columns: repeat(4, 1fr); gap: 1.25rem; }
}

.about-cert-card {
  background: #fff;
  border: 1px solid rgba(224, 92, 0, 0.1);
  border-radius: 1.25rem;
  padding: 1.5rem 1rem;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-cert-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(224, 92, 0, 0.1);
}

.about-cert-icon {
  display: block;
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
  filter: grayscale(0.2);
}

.about-cta {
  margin: 0 1rem 4rem;
  padding: 3.5rem 1.5rem;
  border-radius: 1.5rem;
  background: linear-gradient(135deg, #e05c00, #f59e0b 55%, #d97706);
  box-shadow: 0 16px 48px rgba(224, 92, 0, 0.3);
}

@media (min-width: 768px) {
  .about-cta { max-width: 900px; margin-left: auto; margin-right: auto; }
}

.about-cta-btn {
  display: inline-block;
  font-weight: 600;
  font-size: 0.9375rem;
  padding: 0.875rem 1.75rem;
  border-radius: 9999px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.about-cta-btn--primary {
  background: #fff;
  color: #e05c00;
}

.about-cta-btn--primary:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.about-cta-btn--outline {
  border: 2px solid rgba(255, 255, 255, 0.85);
  color: #fff;
}

.about-cta-btn--outline:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: scale(1.03);
}

@media (prefers-reduced-motion: reduce) {
  .about-hero-bg { background-attachment: scroll; }
  .about-story-img,
  .about-timeline-dot,
  .about-timeline-dot::before,
  .about-timeline-year,
  .about-timeline-light,
  .about-timeline::after {
    transition: none;
    animation: none;
  }
}

/* ── Shared inner pages (services, gallery) ── */
.page-hero {
  position: relative;
  min-height: 380px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.page-hero-bg,
.about-hero-bg,
.clients-hero-bg {
  position: absolute;
  inset: 0;
  background-color: #1a1410;
  background-image: var(--page-bg, var(--clients-bg, none));
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  transform: scale(1.03);
  transition: transform 8s ease-out;
}

.page-hero:hover .page-hero-bg,
.about-hero:hover .about-hero-bg,
.clients-hero:hover .clients-hero-bg {
  transform: scale(1.06);
}

.page-hero-overlay,
.about-hero-overlay,
.clients-hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(115deg, rgba(10, 8, 6, 0.88) 0%, rgba(26, 20, 14, 0.75) 50%, rgba(224, 92, 0, 0.35) 100%),
    linear-gradient(180deg, transparent 45%, rgba(254, 253, 249, 0.12) 100%);
}

.page-hero-grain {
  position: absolute;
  inset: 0;
  z-index: 2;
  opacity: 0.06;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* Material-specific backgrounds (fallback if JS not loaded) */
.page-hero[data-bg='coal'] .page-hero-bg,
.page-hero[data-bg='coal'] .about-hero-bg,
.page-hero[data-bg='coal'] .clients-hero-bg,
.about-hero[data-bg='coal'] .about-hero-bg,
.clients-hero[data-bg='coal'] .clients-hero-bg {
  background-image: url('../assets/backgrounds/bg-coal.png');
  filter: brightness(0.42) contrast(1.12) saturate(0.85);
}

.page-hero[data-bg='cement'] .page-hero-bg,
.page-hero[data-bg='cement'] .about-hero-bg {
  background-image: url('../assets/backgrounds/bg-cement.png');
  filter: brightness(0.55) contrast(1.05);
}

.page-hero[data-bg='brick'] .page-hero-bg,
.page-hero[data-bg='brick'] .about-hero-bg,
.page-hero[data-bg='brick'] .clients-hero-bg,
.about-hero[data-bg='brick'] .about-hero-bg,
.clients-hero[data-bg='brick'] .clients-hero-bg {
  background-image: url('../assets/backgrounds/bg-brick.png');
  filter: brightness(0.5) contrast(1.08) saturate(1.1);
}

.page-hero[data-bg='sand'] .page-hero-bg {
  background-image: url('../assets/backgrounds/bg-sand.png');
  filter: brightness(0.65) contrast(1.02) saturate(0.9);
}

.page-hero[data-bg='stone'] .page-hero-bg {
  background-image: url('../assets/backgrounds/bg-stone.png');
  filter: brightness(0.48) contrast(1.1);
}

.page-hero[data-bg='coal'] .page-hero-overlay,
.about-hero[data-bg='coal'] .about-hero-overlay {
  background:
    linear-gradient(125deg, rgba(8, 6, 4, 0.92) 0%, rgba(28, 18, 10, 0.85) 45%, rgba(224, 92, 0, 0.4) 100%),
    radial-gradient(ellipse at 70% 30%, rgba(245, 158, 11, 0.15), transparent 50%);
}

.page-hero[data-bg='cement'] .page-hero-overlay,
.about-hero[data-bg='cement'] .about-hero-overlay {
  background:
    linear-gradient(120deg, rgba(18, 18, 22, 0.9) 0%, rgba(40, 38, 36, 0.82) 50%, rgba(224, 92, 0, 0.3) 100%),
    linear-gradient(180deg, transparent 40%, rgba(254, 253, 249, 0.15) 100%);
}

.page-hero[data-bg='brick'] .page-hero-overlay,
.about-hero[data-bg='brick'] .about-hero-overlay,
.clients-hero[data-bg='brick'] .clients-hero-overlay,
.about-hero[data-bg='brick'] .about-hero-overlay {
  background:
    linear-gradient(110deg, rgba(22, 10, 6, 0.9) 0%, rgba(45, 22, 12, 0.8) 55%, rgba(224, 92, 0, 0.38) 100%),
    radial-gradient(ellipse at 20% 80%, rgba(0, 0, 0, 0.25), transparent 55%);
}

.page-hero[data-bg='sand'] .page-hero-overlay {
  background:
    linear-gradient(135deg, rgba(12, 18, 28, 0.88) 0%, rgba(24, 28, 32, 0.78) 50%, rgba(224, 92, 0, 0.28) 100%),
    linear-gradient(180deg, transparent 50%, rgba(254, 253, 249, 0.1) 100%);
}

.page-hero[data-bg='stone'] .page-hero-overlay {
  background:
    linear-gradient(115deg, rgba(14, 14, 16, 0.9) 0%, rgba(30, 28, 26, 0.8) 55%, rgba(224, 92, 0, 0.32) 100%);
}

.page-hero-material {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(245, 242, 234, 0.75);
  margin-top: 1rem;
  padding: 0.35rem 0.75rem;
  border-radius: 9999px;
  background: rgba(0, 0, 0, 0.25);
  border: 1px solid rgba(245, 242, 234, 0.15);
}

.page-hero-material-icon {
  font-size: 0.9rem;
}

.page-hero-content {
  position: relative;
  z-index: 10;
  padding-top: 7rem;
  padding-bottom: 5.5rem;
  text-align: center;
}

.page-hero-badge {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #f5f2ea;
  background: rgba(224, 92, 0, 0.22);
  border: 1px solid rgba(245, 242, 234, 0.18);
  padding: 0.4rem 1rem;
  border-radius: 9999px;
  margin-bottom: 1.25rem;
}

.page-hero-title {
  font-size: clamp(2rem, 5.5vw, 3.5rem);
  font-weight: 700;
  color: #f5f2ea;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.page-hero-title-accent {
  display: block;
  margin-top: 0.12em;
  background: linear-gradient(90deg, #fbbf24, #e05c00, #f59e0b);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.page-hero-desc {
  font-size: 1rem;
  line-height: 1.7;
  color: rgba(245, 242, 234, 0.88);
  max-width: 40rem;
  margin: 0 auto 2rem;
}

.page-hero-stats {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem 2rem;
}

.page-hero-stat {
  padding: 0.65rem 1.15rem;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(245, 242, 234, 0.12);
  border-radius: 0.875rem;
  backdrop-filter: blur(8px);
  min-width: 90px;
}

.page-hero-stat-num {
  display: block;
  font-size: 1.5rem;
  font-weight: 700;
  color: #f59e0b;
  line-height: 1.2;
}

.page-hero-stat-label {
  font-size: 0.7rem;
  color: rgba(245, 242, 234, 0.7);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.page-hero-wave {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 5;
  line-height: 0;
}

.page-hero-wave svg {
  width: 100%;
  height: 64px;
}

.page-main {
  position: relative;
  z-index: 2;
}

.page-section {
  padding: 4rem 0;
}

.page-section--cream {
  background: linear-gradient(180deg, #f5f2ea 0%, #fefdf9 50%, #f5f2ea 100%);
}

.page-section-tag {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #e05c00;
  margin-bottom: 0.5rem;
}

.page-section-head--center {
  text-align: center;
}

.page-heading {
  font-size: clamp(1.65rem, 3.5vw, 2.35rem);
  font-weight: 700;
  line-height: 1.25;
}

.page-subhead {
  font-size: 0.9375rem;
  color: var(--muted);
  max-width: 32rem;
  margin: 0.5rem auto 0;
}

.page-cta {
  margin: 0 1rem 4rem;
  padding: 3.5rem 1.5rem;
  border-radius: 1.5rem;
  background: linear-gradient(135deg, #e05c00, #f59e0b 55%, #d97706);
  box-shadow: 0 16px 48px rgba(224, 92, 0, 0.3);
}

.page-cta--compact {
  padding: 2.5rem 1.5rem;
  margin-bottom: 3rem;
}

@media (min-width: 768px) {
  .page-cta { max-width: 900px; margin-left: auto; margin-right: auto; }
}

.page-cta-btn {
  display: inline-block;
  font-weight: 600;
  font-size: 0.9375rem;
  padding: 0.875rem 2rem;
  border-radius: 9999px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.page-cta-btn--primary {
  background: #fff;
  color: #e05c00;
}

.page-cta-btn--primary:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

/* Services page */
.services-highlights {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-top: -1.5rem;
}

@media (min-width: 640px) {
  .services-highlights { grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
}

.services-highlight {
  background: #fff;
  border: 1px solid rgba(224, 92, 0, 0.12);
  border-radius: 1.25rem;
  padding: 1.5rem 1.25rem;
  text-align: center;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.services-highlight:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 36px rgba(224, 92, 0, 0.1);
}

.services-highlight-icon {
  font-size: 1.75rem;
  display: block;
  margin-bottom: 0.5rem;
}

.services-page-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .services-page-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .services-page-grid { grid-template-columns: repeat(3, 1fr); gap: 1.75rem; }
}

.service-page-card {
  position: relative;
  border-radius: 1.35rem;
  overflow: hidden;
}

.service-page-card-glow {
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(224, 92, 0, 0.35), transparent 60%);
  opacity: 0;
  transition: opacity 0.35s ease;
}

.service-page-card:hover .service-page-card-glow {
  opacity: 1;
}

.service-page-card-inner {
  position: relative;
  z-index: 1;
  background: #fff;
  border: 1px solid rgba(44, 44, 44, 0.06);
  border-radius: 1.3rem;
  padding: 2rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.service-page-card:hover .service-page-card-inner {
  transform: translateY(-6px);
  box-shadow: 0 20px 48px rgba(224, 92, 0, 0.12);
}

.service-page-card-num {
  position: absolute;
  top: 1rem;
  right: 1.25rem;
  font-size: 2.5rem;
  font-weight: 800;
  color: rgba(224, 92, 0, 0.08);
  line-height: 1;
  pointer-events: none;
}

.service-page-card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: #e05c00;
  margin-top: auto;
  padding: 0.5rem 1rem;
  background: rgba(224, 92, 0, 0.08);
  border-radius: 9999px;
  transition: background 0.25s ease, gap 0.25s ease;
}

.service-page-card-link:hover {
  background: rgba(224, 92, 0, 0.15);
  gap: 0.55rem;
}

.services-process {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  max-width: 900px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .services-process { grid-template-columns: repeat(4, 1fr); gap: 1.25rem; }
}

.services-step {
  text-align: center;
  padding: 1.5rem 1rem;
  background: #fff;
  border-radius: 1.25rem;
  border: 1px dashed rgba(224, 92, 0, 0.2);
  transition: border-color 0.3s ease, transform 0.3s ease;
}

.services-step:hover {
  border-color: rgba(224, 92, 0, 0.45);
  transform: translateY(-4px);
}

.services-step-num {
  display: block;
  font-size: 1.5rem;
  font-weight: 800;
  color: #e05c00;
  margin-bottom: 0.75rem;
}

.services-step-text {
  font-size: 0.8125rem;
  color: var(--muted);
  line-height: 1.55;
}

/* Gallery page */
.gallery-video-section {
  background: linear-gradient(180deg, #fefdf9 0%, #f5f2ea 100%);
}

.gallery-video-featured {
  max-width: 900px;
  margin: 0 auto 2.5rem;
}

.gallery-video-player {
  position: relative;
  aspect-ratio: 16 / 9;
  border-radius: 1.25rem;
  overflow: hidden;
  background: #1c1c1c;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.12);
}

.gallery-video-player--featured {
  border-radius: 1.5rem;
  box-shadow: 0 20px 56px rgba(224, 92, 0, 0.15);
}

.gallery-video-player video,
.gallery-video-player iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  object-fit: cover;
}

.gallery-video-caption {
  text-align: center;
  font-size: 0.9375rem;
  font-weight: 600;
  color: #2c2c2c;
  margin: 1rem 0 0;
}

.gallery-video-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

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

@media (min-width: 1024px) {
  .gallery-video-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.75rem;
  }
}

.gallery-video-card {
  background: #fff;
  border-radius: 1.25rem;
  overflow: hidden;
  border: 1px solid rgba(44, 44, 44, 0.06);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.06);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.gallery-video-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(224, 92, 0, 0.12);
}

.gallery-video-card-title {
  font-size: 0.9375rem;
  font-weight: 600;
  color: #2c2c2c;
  padding: 1rem 1.15rem 1.15rem;
  margin: 0;
  text-align: center;
}

.gallery-panel {
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 1.5rem;
  padding: 2rem 1.25rem;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.06);
  margin-top: -1rem;
}

@media (min-width: 768px) {
  .gallery-panel { padding: 2.5rem 2rem; }
}

.gallery-filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
}

.gallery-filter {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.5rem 1.1rem;
  font-size: 0.8125rem;
  font-weight: 600;
  border-radius: 9999px;
  border: 1px solid rgba(44, 44, 44, 0.1);
  background: #f5f2ea;
  color: var(--muted);
  transition: all 0.25s ease;
}

.gallery-filter:hover {
  border-color: rgba(224, 92, 0, 0.35);
  color: #e05c00;
}

.gallery-filter--active {
  background: linear-gradient(135deg, #e05c00, #f59e0b);
  color: #fff;
  border-color: transparent;
  box-shadow: 0 4px 16px rgba(224, 92, 0, 0.35);
}

.gallery-filter-icon {
  font-size: 0.9rem;
}

.gallery-count {
  text-align: center;
  font-size: 0.8125rem;
  color: var(--muted);
  margin-bottom: 1.5rem;
}

.gallery-page-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
}

@media (min-width: 640px) {
  .gallery-page-grid { grid-template-columns: repeat(3, 1fr); gap: 1rem; }
}

@media (min-width: 1024px) {
  .gallery-page-grid { grid-template-columns: repeat(4, 1fr); gap: 1.25rem; }
}

.gallery-card {
  position: relative;
  aspect-ratio: 1;
  border-radius: 1rem;
  overflow: hidden;
  border: none;
  padding: 0;
  cursor: pointer;
  background: #1c1c1c;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.gallery-card:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.18);
}

.gallery-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.gallery-card:hover .gallery-card-img {
  transform: scale(1.08);
}

.gallery-card-category {
  position: absolute;
  top: 0.65rem;
  left: 0.65rem;
  z-index: 2;
  font-size: 0.6rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 0.2rem 0.5rem;
  background: rgba(224, 92, 0, 0.9);
  color: #fff;
  border-radius: 0.35rem;
}

.gallery-card-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  padding: 1rem;
  background: linear-gradient(180deg, transparent 30%, rgba(0, 0, 0, 0.75) 100%);
  opacity: 0;
  transition: opacity 0.35s ease;
}

.gallery-card:hover .gallery-card-overlay {
  opacity: 1;
}

.gallery-card-zoom {
  font-size: 1.5rem;
  color: #fff;
  margin-bottom: auto;
  margin-top: 1rem;
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid rgba(255, 255, 255, 0.6);
  border-radius: 50%;
}

.gallery-card-title {
  font-size: 0.75rem;
  font-weight: 600;
  color: #fff;
  text-align: center;
  line-height: 1.35;
  width: 100%;
}

/* Gallery lightbox */
.gallery-lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.gallery-lightbox.hidden {
  display: none;
}

.gallery-lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.92);
  backdrop-filter: blur(8px);
}

.gallery-lightbox-inner {
  position: relative;
  z-index: 10;
  max-width: 92vw;
  max-height: 88vh;
  text-align: center;
}

.gallery-lightbox-img {
  max-width: 100%;
  max-height: 78vh;
  object-fit: contain;
  border-radius: 0.75rem;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.5);
}

.gallery-lightbox-caption {
  color: #fff;
  font-size: 0.9375rem;
  font-weight: 600;
  margin-top: 1rem;
}

.gallery-lightbox-category {
  display: inline-block;
  margin-top: 0.5rem;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #f59e0b;
  background: rgba(224, 92, 0, 0.2);
  padding: 0.25rem 0.65rem;
  border-radius: 9999px;
}

.gallery-lightbox-btn {
  position: absolute;
  z-index: 11;
  width: 2.75rem;
  height: 2.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  color: #fff;
  font-size: 1.25rem;
  transition: background 0.2s ease, transform 0.2s ease;
}

.gallery-lightbox-btn:hover {
  background: rgba(224, 92, 0, 0.5);
  transform: scale(1.08);
}

.gallery-lightbox-btn--close {
  top: 1rem;
  right: 1rem;
}

.gallery-lightbox-btn--prev {
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
}

.gallery-lightbox-btn--prev:hover {
  transform: translateY(-50%) scale(1.08);
}

.gallery-lightbox-btn--next {
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
}

.gallery-lightbox-btn--next:hover {
  transform: translateY(-50%) scale(1.08);
}

@media (prefers-reduced-motion: reduce) {
  .page-hero-bg { background-attachment: scroll; }
  .gallery-card:hover,
  .gallery-card-img { transform: none; }
}

/* Services wave background (home + services page) */
.services-waves-section {
  position: relative;
  overflow: hidden;
}

.home-services-section {
  min-height: 520px;
}

.services-page-waves {
  padding: 0;
}

.services-waves-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-color: #f5f5f5;
  background-image: url('../assets/backgrounds/bg-services-waves-hd.png');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

.services-waves-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(254, 253, 249, 0.55) 0%, rgba(254, 253, 249, 0.72) 45%, rgba(254, 253, 249, 0.88) 100%),
    linear-gradient(105deg, rgba(255, 255, 255, 0.35) 0%, transparent 50%);
  pointer-events: none;
}

.services-waves-inner {
  position: relative;
  z-index: 2;
}

.services-page-waves .page-section--cream {
  background: transparent;
}

@media (max-width: 1024px) {
  .services-waves-bg {
    background-attachment: scroll;
    background-position: center bottom;
  }
}

@media (prefers-reduced-motion: reduce) {
  .services-waves-bg {
    background-attachment: scroll;
  }
}

/* Trusted by — flat corporate logo strip */
.trusted-by-section {
  padding: 4rem 0;
  background: #f8f9fa;
}

.trusted-by-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.trusted-by-label {
  text-align: center;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #888;
  margin: 0 0 2.75rem;
}

.trusted-by-slider {
  overflow: hidden;
  width: 100%;
  padding: 0.5rem 0 1rem;
  mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
}

.trusted-by-slider--panel {
  margin-top: 0.5rem;
}

.trusted-by-logos--track {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 4rem;
  width: max-content;
  padding: 0.75rem 1rem;
  animation: trusted-logo-slide 36s linear infinite;
}

.trusted-by-logos--track:hover {
  animation-play-state: paused;
}

@keyframes trusted-logo-slide {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.trusted-by-logo {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 140px;
  max-width: 220px;
  height: 80px;
  padding: 0 0.5rem;
  transition: transform 0.3s ease;
}

.trusted-by-logo:hover {
  transform: scale(1.05);
}

.trusted-by-logo-img {
  display: block;
  width: auto;
  height: 64px;
  max-width: 200px;
  min-height: 48px;
  object-fit: contain;
  object-position: center;
  filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.12));
  transition: filter 0.3s ease;
}

.trusted-by-logo:hover .trusted-by-logo-img {
  filter: drop-shadow(0 4px 14px rgba(0, 0, 0, 0.18));
}

.trusted-by-logo-fallback {
  display: none;
  font-size: 2rem;
  font-weight: 700;
  color: #1a1a1a;
  letter-spacing: -0.02em;
  filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.1));
}

.trusted-by-logo-fallback.is-visible {
  display: block;
}

.trusted-by-logo--grid {
  min-width: 120px;
  max-width: 180px;
  height: 64px;
}

.trusted-by-logo--grid .trusted-by-logo-img {
  height: 52px;
}

.client-logo-wrap--grid {
  display: flex;
  justify-content: center;
}

.category-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

/* Service cards — light theme (home + services page) */
.service-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
}

/* Animated service icon scene */
.service-icon-scene {
  position: relative;
  width: 4.5rem;
  height: 4.5rem;
  margin-bottom: 1.25rem;
  flex-shrink: 0;
}

.service-icon-orbit {
  position: absolute;
  inset: -6px;
  border-radius: 1.15rem;
  border: 2px dashed rgba(224, 92, 0, 0.22);
  animation: service-orbit-spin 14s linear infinite;
  pointer-events: none;
}

.service-icon-glow {
  position: absolute;
  inset: 4px;
  border-radius: 0.85rem;
  background: radial-gradient(circle at 30% 30%, rgba(224, 92, 0, 0.12), transparent 65%);
  opacity: 0.8;
  animation: service-glow-pulse 3s ease-in-out infinite;
  pointer-events: none;
}

.service-icon-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 1rem;
  background: linear-gradient(145deg, #fff 0%, #F5F2EA 100%);
  box-shadow:
    0 4px 14px rgba(224, 92, 0, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(224, 92, 0, 0.12);
  transition: background 0.35s ease, box-shadow 0.35s ease, transform 0.35s ease;
}

.service-card:hover .service-icon-inner {
  background: linear-gradient(145deg, #E05C00 0%, #F59E0B 100%);
  box-shadow: 0 8px 24px rgba(224, 92, 0, 0.35);
  transform: scale(1.05);
}

.service-icon-svg {
  width: 1.85rem;
  height: 1.85rem;
  color: #E05C00;
  transition: color 0.35s ease;
}

.service-card:hover .service-icon-svg {
  color: #fff;
}

/* Per-icon motion */
.service-icon-scene--truck .service-icon-svg {
  animation: service-truck-drive 2.4s ease-in-out infinite;
}

.service-icon-scene--truck .wheel {
  transform-origin: center;
  animation: service-wheel-spin 1.2s linear infinite;
}

.service-icon-scene--factory .service-icon-svg {
  animation: service-factory-pulse 2.6s ease-in-out infinite;
}

.service-icon-scene--package .service-icon-svg {
  animation: service-package-float 3.2s ease-in-out infinite;
}

.service-icon-scene--certificate .service-icon-svg {
  animation: service-cert-pop 2.8s ease-in-out infinite;
}

.service-icon-scene--certificate .cert-check {
  stroke-dasharray: 24;
  stroke-dashoffset: 24;
  animation: service-check-draw 2.8s ease-in-out infinite;
}

.service-icon-scene--search .service-icon-svg {
  animation: service-search-sway 3s ease-in-out infinite;
  transform-origin: 60% 60%;
}

.service-icon-scene--clipboard .service-icon-svg {
  animation: service-clipboard-tilt 3.5s ease-in-out infinite;
  transform-origin: center bottom;
}

/* Stagger orbit speed per card */
.service-card:nth-child(1) .service-icon-orbit { animation-duration: 12s; }
.service-card:nth-child(2) .service-icon-orbit { animation-duration: 16s; animation-direction: reverse; }
.service-card:nth-child(3) .service-icon-orbit { animation-duration: 14s; }
.service-card:nth-child(4) .service-icon-orbit { animation-duration: 13s; animation-direction: reverse; }
.service-card:nth-child(5) .service-icon-orbit { animation-duration: 17s; }
.service-card:nth-child(6) .service-icon-orbit { animation-duration: 15s; animation-direction: reverse; }

@keyframes service-orbit-spin {
  to { transform: rotate(360deg); }
}

@keyframes service-glow-pulse {
  0%, 100% { opacity: 0.5; transform: scale(0.95); }
  50% { opacity: 1; transform: scale(1); }
}

@keyframes service-truck-drive {
  0%, 100% { transform: translateX(0); }
  50% { transform: translateX(5px); }
}

@keyframes service-wheel-spin {
  to { transform: rotate(360deg); }
}

@keyframes service-factory-pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.08); }
}

@keyframes service-package-float {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-7px) rotate(-4deg); }
}

@keyframes service-cert-pop {
  0%, 100% { transform: scale(1); }
  40% { transform: scale(1.06); }
}

@keyframes service-check-draw {
  0%, 30% { stroke-dashoffset: 24; }
  50%, 100% { stroke-dashoffset: 0; }
}

@keyframes service-search-sway {
  0%, 100% { transform: rotate(-8deg); }
  50% { transform: rotate(8deg); }
}

@keyframes service-clipboard-tilt {
  0%, 100% { transform: rotate(-4deg); }
  50% { transform: rotate(4deg); }
}

@media (prefers-reduced-motion: reduce) {
  .service-icon-orbit,
  .service-icon-glow,
  .service-icon-svg,
  .wheel,
  .cert-check {
    animation: none !important;
  }
  .service-card:hover .service-icon-inner {
    transform: none;
  }
}

/* Navbar — link colors follow hero vs scrolled state */
.site-nav .nav-link {
  color: #2c2c2c;
}

.site-nav .nav-link:hover {
  color: #e05c00;
}

.site-nav .nav-link-active {
  color: #e05c00 !important;
}

.site-nav.nav-on-hero .nav-link:not(.nav-link-active) {
  color: #f5f2ea;
}

.site-nav.nav-on-hero .nav-link:not(.nav-link-active):hover {
  color: #e05c00;
}

.site-nav .nav-lang-btn {
  border-color: rgba(44, 44, 44, 0.2);
  color: #2c2c2c;
}

.site-nav .nav-lang-btn:hover {
  border-color: #e05c00;
  color: #e05c00;
}

.site-nav.nav-on-hero .nav-lang-btn {
  border-color: rgba(245, 242, 234, 0.35);
  color: #f5f2ea;
}

.site-nav.nav-on-hero .nav-lang-btn:hover {
  border-color: #e05c00;
  color: #e05c00;
}

/* Section fade-in */
.fade-section {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-section.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── PowerPoint-style scroll transitions ── */
.ppt-reveal {
  opacity: 0;
  will-change: transform, opacity, filter, clip-path;
}

.ppt-reveal.ppt-visible {
  animation-duration: 0.85s;
  animation-timing-function: cubic-bezier(0.22, 1, 0.36, 1);
  animation-fill-mode: forwards;
  animation-delay: var(--ppt-delay, 0ms);
}

.ppt-visible.ppt-fade { animation-name: ppt-fade; }
.ppt-visible.ppt-push-left { animation-name: ppt-push-left; }
.ppt-visible.ppt-push-up { animation-name: ppt-push-up; }
.ppt-visible.ppt-wipe-left { animation-name: ppt-wipe-left; }
.ppt-visible.ppt-wipe-right { animation-name: ppt-wipe-right; }
.ppt-visible.ppt-zoom { animation-name: ppt-zoom; }
.ppt-visible.ppt-fly-bl { animation-name: ppt-fly-bl; }
.ppt-visible.ppt-fly-br { animation-name: ppt-fly-br; }
.ppt-visible.ppt-flip { animation-name: ppt-flip; }
.ppt-visible.ppt-dissolve { animation-name: ppt-dissolve; }
.ppt-visible.ppt-split { animation-name: ppt-split; }

@keyframes ppt-fade {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes ppt-push-left {
  from { opacity: 0; transform: translateX(calc(-1 * var(--ppt-x, 80px))); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes ppt-push-up {
  from { opacity: 0; transform: translateY(var(--ppt-y, 60px)); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes ppt-wipe-left {
  from { opacity: 0; clip-path: inset(0 100% 0 0); transform: translateX(-12px); }
  to { opacity: 1; clip-path: inset(0 0 0 0); transform: translateX(0); }
}

@keyframes ppt-wipe-right {
  from { opacity: 0; clip-path: inset(0 0 0 100%); transform: translateX(12px); }
  to { opacity: 1; clip-path: inset(0 0 0 0); transform: translateX(0); }
}

@keyframes ppt-zoom {
  from { opacity: 0; transform: scale(0.72); }
  to { opacity: 1; transform: scale(1); }
}

@keyframes ppt-fly-bl {
  from { opacity: 0; transform: translate(-48px, 48px) scale(0.9); }
  to { opacity: 1; transform: translate(0, 0) scale(1); }
}

@keyframes ppt-fly-br {
  from { opacity: 0; transform: translate(48px, 48px) scale(0.9); }
  to { opacity: 1; transform: translate(0, 0) scale(1); }
}

@keyframes ppt-flip {
  from { opacity: 0; transform: perspective(800px) rotateY(-75deg); }
  to { opacity: 1; transform: perspective(800px) rotateY(0); }
}

@keyframes ppt-dissolve {
  from { opacity: 0; filter: blur(10px); transform: scale(1.02); }
  to { opacity: 1; filter: blur(0); transform: scale(1); }
}

@keyframes ppt-split {
  from { opacity: 0; transform: scaleX(0.3); transform-origin: center; }
  to { opacity: 1; transform: scaleX(1); }
}

/* Testimonials section */
.testimonials-section {
  position: relative;
  overflow: hidden;
}

.testimonials-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 50% at 10% 20%, rgba(224, 92, 0, 0.06), transparent),
    radial-gradient(ellipse 60% 40% at 90% 80%, rgba(245, 158, 11, 0.08), transparent);
  pointer-events: none;
}

/* Testimonials section — background image, no outer card */
.testimonials-section--slider {
  background-color: #ebebeb;
}

.testimonials-section-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-color: #ececec;
  background-image:
    url('../assets/backgrounds/bg-testimonial-waves.png'),
    url('../assets/backgrounds/bg-testimonial-rings.png');
  background-size: cover, min(520px, 55vw) auto;
  background-position: center, left 8% center;
  background-repeat: no-repeat, no-repeat;
  background-attachment: fixed, scroll;
}

.testimonials-section-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(
      105deg,
      rgba(254, 253, 249, 0.25) 0%,
      rgba(254, 253, 249, 0.45) 38%,
      rgba(254, 253, 249, 0.88) 58%,
      rgba(254, 253, 249, 0.94) 100%
    );
  pointer-events: none;
}

.testimonials-section--slider::before {
  display: none;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .testimonials-grid { grid-template-columns: repeat(3, 1fr); }
}

.testimonials-grid--full {
  grid-template-columns: 1fr;
}

@media (min-width: 768px) {
  .testimonials-grid--full { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .testimonials-grid--full { grid-template-columns: repeat(3, 1fr); }
}

.testimonial-card {
  position: relative;
  border-radius: 1.25rem;
  overflow: hidden;
  min-height: 100%;
}

.testimonial-card-accent {
  position: absolute;
  inset: 0;
  opacity: 0.5;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.testimonial-card.theme-orange .testimonial-card-accent {
  background: linear-gradient(135deg, rgba(224, 92, 0, 0.08) 0%, transparent 55%);
  border-left: 4px solid #E05C00;
}

.testimonial-card.theme-amber .testimonial-card-accent {
  background: linear-gradient(160deg, rgba(245, 158, 11, 0.12) 0%, transparent 50%);
  border-top: 4px solid #F59E0B;
}

.testimonial-card.theme-cream .testimonial-card-accent {
  background: linear-gradient(180deg, transparent 0%, rgba(245, 242, 234, 0.9) 100%);
  box-shadow: inset 0 -3px 0 #E05C00;
}

.testimonial-card-inner {
  position: relative;
  z-index: 1;
  background: #fff;
  margin: 3px;
  border-radius: 1.1rem;
  padding: 1.75rem 1.5rem;
  height: calc(100% - 6px);
  display: flex;
  flex-direction: column;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(44, 44, 44, 0.06);
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.4s ease;
}

.testimonial-card:hover .testimonial-card-inner {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 16px 48px rgba(224, 92, 0, 0.12);
}

.testimonial-card:hover .testimonial-card-accent {
  opacity: 0.85;
}

.testimonial-quote-icon {
  width: 2.5rem;
  height: 2.5rem;
  color: rgba(224, 92, 0, 0.2);
  margin-bottom: 0.5rem;
  animation: testimonial-quote-float 4s ease-in-out infinite;
}

.testimonial-card:nth-child(2) .testimonial-quote-icon {
  animation-delay: -1.3s;
  color: rgba(245, 158, 11, 0.35);
}

.testimonial-card:nth-child(3) .testimonial-quote-icon {
  animation-delay: -2.6s;
}

@keyframes testimonial-quote-float {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-4px) scale(1.05); }
}

.testimonial-stars {
  display: flex;
  gap: 2px;
  margin-bottom: 0.75rem;
}

.testimonial-star {
  color: #F59E0B;
  font-size: 0.75rem;
  animation: testimonial-star-pop 0.5s ease backwards;
}

.testimonial-card.ppt-visible .testimonial-star:nth-child(1) { animation-delay: 0.35s; }
.testimonial-card.ppt-visible .testimonial-star:nth-child(2) { animation-delay: 0.42s; }
.testimonial-card.ppt-visible .testimonial-star:nth-child(3) { animation-delay: 0.49s; }
.testimonial-card.ppt-visible .testimonial-star:nth-child(4) { animation-delay: 0.56s; }
.testimonial-card.ppt-visible .testimonial-star:nth-child(5) { animation-delay: 0.63s; }

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

.testimonial-quote {
  flex: 1;
  margin: 0 0 1.25rem;
}

.testimonial-quote p {
  font-size: 0.9375rem;
  line-height: 1.65;
  color: #2C2C2C;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding-top: 1rem;
  border-top: 1px dashed rgba(44, 44, 44, 0.1);
}

.testimonial-avatar {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(135deg, #E05C00, #F59E0B);
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(224, 92, 0, 0.35);
  transition: transform 0.35s ease;
}

.testimonial-card:hover .testimonial-avatar {
  transform: rotate(-8deg) scale(1.08);
}

.testimonial-card.theme-amber .testimonial-avatar {
  background: linear-gradient(135deg, #F59E0B, #E05C00);
}

.testimonial-card.theme-cream .testimonial-avatar {
  background: linear-gradient(135deg, #2C2C2C, #6B6B6B);
}

.testimonial-name {
  font-style: normal;
  font-weight: 700;
  font-size: 0.875rem;
  display: block;
  color: #2C2C2C;
}

.testimonial-company {
  font-size: 0.75rem;
  color: #E05C00;
  margin-top: 2px;
}

.testimonials-cta {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.testimonials-section.visible .testimonials-cta {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.5s;
}

.testimonials-cta-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  transition: background 0.25s ease, transform 0.25s ease;
}

.testimonials-cta-link:hover {
  background: rgba(224, 92, 0, 0.08);
  transform: translateX(4px);
}

.testimonials-cta-link span:last-child {
  transition: transform 0.25s ease;
}

.testimonials-cta-link:hover span:last-child {
  transform: translateX(4px);
}

/* ── Industry CTA (merged bg + visuals) ── */
.industry-cta {
  position: relative;
  overflow: hidden;
  margin: 0;
  min-height: 420px;
  display: flex;
  align-items: center;
}

.industry-cta-bg {
  position: absolute;
  inset: 0;
  background-color: #1a1410;
  background-image: url('../website-background.png');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  transform: scale(1.02);
}

.industry-cta-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(105deg, rgba(8, 10, 14, 0.94) 0%, rgba(12, 16, 22, 0.82) 42%, rgba(18, 24, 32, 0.55) 68%, rgba(10, 14, 20, 0.35) 100%),
    linear-gradient(180deg, transparent 60%, rgba(224, 92, 0, 0.12) 100%);
}

.industry-cta-topography {
  position: absolute;
  top: -8%;
  right: -4%;
  width: min(52vw, 520px);
  height: auto;
  max-height: 85%;
  object-fit: contain;
  object-position: top right;
  opacity: 0.92;
  pointer-events: none;
  z-index: 2;
  mix-blend-mode: screen;
}

.industry-cta-inner {
  position: relative;
  z-index: 3;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 4rem 1.5rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
}

@media (min-width: 900px) {
  .industry-cta-inner {
    grid-template-columns: 1.05fr 0.95fr;
    gap: 1rem;
    padding: 5rem 2rem;
    min-height: 440px;
  }
}

.industry-cta-content {
  color: #f5f2ea;
  max-width: 34rem;
}

.industry-cta-badge {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #f59e0b;
  margin-bottom: 1rem;
  padding: 0.35rem 0.85rem;
  border: 1px solid rgba(245, 158, 11, 0.35);
  border-radius: 9999px;
  background: rgba(224, 92, 0, 0.12);
}

.industry-cta-title {
  font-size: clamp(1.75rem, 4.5vw, 2.75rem);
  font-weight: 700;
  line-height: 1.15;
  margin: 0 0 1rem;
  letter-spacing: -0.02em;
}

.industry-cta-desc {
  font-size: 1.0625rem;
  line-height: 1.7;
  color: rgba(245, 242, 234, 0.82);
  margin: 0 0 1.75rem;
}

.industry-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.industry-cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9375rem;
  font-weight: 600;
  padding: 0.875rem 1.75rem;
  border-radius: 9999px;
  text-decoration: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.industry-cta-btn--primary {
  background: linear-gradient(135deg, #e05c00, #f59e0b);
  color: #fff;
  box-shadow: 0 8px 28px rgba(224, 92, 0, 0.4);
}

.industry-cta-btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 36px rgba(224, 92, 0, 0.5);
}

.industry-cta-btn--ghost {
  color: #f5f2ea;
  border: 1.5px solid rgba(245, 242, 234, 0.35);
  background: rgba(255, 255, 255, 0.06);
}

.industry-cta-btn--ghost:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(245, 242, 234, 0.55);
}

.industry-cta-features {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.25rem;
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 0.8125rem;
  color: rgba(245, 242, 234, 0.65);
}

.industry-cta-features li::before {
  content: '✓ ';
  color: #f59e0b;
  font-weight: 700;
}

.industry-cta-visual {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  position: relative;
  min-height: 220px;
}

@media (min-width: 900px) {
  .industry-cta-visual {
    justify-content: flex-end;
    min-height: 320px;
  }
}

.industry-cta-phone {
  width: min(100%, 340px);
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 24px 48px rgba(0, 0, 0, 0.35));
  transform: rotate(-8deg) translateY(8px);
  transition: transform 0.5s ease;
}

.industry-cta:hover .industry-cta-phone {
  transform: rotate(-6deg) translateY(0);
}

@media (max-width: 899px) {
  .industry-cta-topography {
    width: 70vw;
    top: -5%;
    right: -15%;
    opacity: 0.55;
  }
  .industry-cta-bg {
    background-attachment: scroll;
  }
}

/* Testimonial arc slider */
.testimonial-slider-wrap {
  outline: none;
}

.testimonial-slider {
  width: 100%;
}

.testimonial-slider-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
  background: transparent;
  border: none;
  border-radius: 0;
  padding: 0.5rem 0;
  box-shadow: none;
}

@media (min-width: 900px) {
  .testimonial-slider-layout {
    grid-template-columns: minmax(260px, 320px) 1fr;
    gap: 3.5rem;
    padding: 1rem 0;
    min-height: 320px;
  }
}

.testimonial-slider-rail {
  position: relative;
  width: 100%;
  max-width: 320px;
  min-height: 300px;
  margin: 0 auto;
}

@media (min-width: 900px) {
  .testimonial-slider-rail {
    margin: 0;
    max-width: 300px;
  }
}

.testimonial-slider-arc {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  height: 100%;
  width: 200px;
  color: rgba(224, 92, 0, 0.22);
  pointer-events: none;
  animation: testimonial-arc-glow 3.5s ease-in-out infinite;
}

.testimonial-slider-arc path {
  stroke-dasharray: 420;
  stroke-dashoffset: 420;
  transition: stroke-dashoffset 0.05s ease;
}

.testimonial-slider-arc.is-drawn path,
.testimonials-section.is-inview .testimonial-slider-arc path {
  animation: testimonial-arc-draw 1.4s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

@keyframes testimonial-arc-draw {
  to {
    stroke-dashoffset: 0;
  }
}

@keyframes testimonial-arc-glow {
  0%,
  100% {
    color: rgba(224, 92, 0, 0.18);
  }
  50% {
    color: rgba(224, 92, 0, 0.38);
  }
}

.testimonial-slider-nav {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 300px;
  max-width: 280px;
  margin: 0 auto;
}

/* Three clients along a half-circle arc */
.testimonial-slider-item {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.45rem 0.6rem;
  border: none;
  background: transparent;
  cursor: pointer;
  text-align: left;
  border-radius: 0.85rem;
  transition:
    top 0.5s cubic-bezier(0.22, 1, 0.36, 1),
    bottom 0.5s cubic-bezier(0.22, 1, 0.36, 1),
    left 0.5s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.5s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.45s ease,
    background 0.25s ease;
  width: max-content;
  max-width: 240px;
}

.testimonial-slider-item[data-slot='prev'] {
  top: 6%;
  left: 4px;
  opacity: 0.55;
  transform: scale(0.88);
}

.testimonial-slider-item[data-slot='active'] {
  top: 50%;
  left: 52%;
  transform: translate(-20%, -50%) scale(1);
  opacity: 1;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 6px 28px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(224, 92, 0, 0.12);
  padding: 0.65rem 0.85rem;
  z-index: 3;
  animation: testimonial-active-pulse 2.5s ease-in-out infinite;
}

@keyframes testimonial-active-pulse {
  0%,
  100% {
    box-shadow: 0 6px 28px rgba(0, 0, 0, 0.08);
  }
  50% {
    box-shadow: 0 10px 36px rgba(224, 92, 0, 0.15);
  }
}

.testimonial-slider-item[data-slot='next'] {
  bottom: 6%;
  left: 4px;
  top: auto;
  opacity: 0.55;
  transform: scale(0.88);
}

.testimonial-slider-item[data-slot='prev']:hover,
.testimonial-slider-item[data-slot='next']:hover {
  opacity: 0.8;
  background: rgba(44, 44, 44, 0.04);
}

.testimonial-slider-item.is-active {
  opacity: 1;
}

.testimonial-slider-avatar {
  flex-shrink: 0;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  color: #fff;
  background: var(--avatar-color, #e05c00);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.12);
  transition: width 0.45s ease, height 0.45s ease, font-size 0.45s ease;
}

.testimonial-slider-item.is-active .testimonial-slider-avatar {
  width: 4.5rem;
  height: 4.5rem;
  font-size: 1rem;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.testimonial-slider-info {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  min-width: 0;
}

.testimonial-slider-name {
  font-size: 0.8125rem;
  font-weight: 600;
  color: #2c2c2c;
  transition: font-size 0.45s ease, color 0.45s ease;
}

.testimonial-slider-item.is-active .testimonial-slider-name {
  font-size: 1.125rem;
  font-weight: 700;
  color: #1a1a1a;
}

.testimonial-slider-rating {
  font-size: 0.7rem;
  color: #6b6b6b;
  display: flex;
  align-items: center;
  gap: 0.25rem;
  line-height: 1.3;
}

.testimonial-slider-item.is-active .testimonial-slider-rating {
  font-size: 0.75rem;
}

.testimonial-slider-star-icon {
  color: #22c55e;
  font-size: 0.65rem;
}

@media (max-width: 899px) {
  .testimonial-slider-rail {
    min-height: 280px;
  }
  .testimonial-slider-nav {
    height: 280px;
  }
  .testimonial-slider-item[data-slot='active'] {
    left: 48%;
  }
}

.testimonial-slider-panel {
  position: relative;
  padding: 0.5rem 0;
}

.testimonials-section.is-inview .testimonial-slider-layout,
.testimonial-slider.is-ready .testimonial-slider-layout {
  animation: testimonial-layout-in 0.85s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

@keyframes testimonial-layout-in {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.testimonial-slider-quote-wrap {
  position: relative;
  overflow: hidden;
}

.testimonial-slider-quote-wrap.is-changing .testimonial-slider-text,
.testimonial-slider-quote-wrap.is-changing .testimonial-slider-company {
  opacity: 0;
  transform: translateX(32px);
  transition:
    opacity 0.28s ease,
    transform 0.32s cubic-bezier(0.4, 0, 0.2, 1);
}

.testimonial-slider-quote-wrap.is-changing.is-back .testimonial-slider-text,
.testimonial-slider-quote-wrap.is-changing.is-back .testimonial-slider-company {
  transform: translateX(-32px);
}

.testimonial-slider-quote-wrap.is-entering .testimonial-slider-text,
.testimonial-slider-quote-wrap.is-entering .testimonial-slider-company {
  animation: testimonial-quote-in 0.55s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.testimonial-slider-quote-wrap.is-entering.is-back .testimonial-slider-text,
.testimonial-slider-quote-wrap.is-entering.is-back .testimonial-slider-company {
  animation-name: testimonial-quote-in-back;
}

@keyframes testimonial-quote-in {
  from {
    opacity: 0;
    transform: translateX(36px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes testimonial-quote-in-back {
  from {
    opacity: 0;
    transform: translateX(-36px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.testimonial-slider-mark {
  display: block;
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(4rem, 10vw, 6rem);
  line-height: 0.75;
  color: rgba(44, 44, 44, 0.12);
  margin-bottom: 0.5rem;
  user-select: none;
  animation: testimonial-mark-float 5s ease-in-out infinite;
}

@keyframes testimonial-mark-float {
  0%,
  100% {
    transform: translateY(0);
    opacity: 0.85;
  }
  50% {
    transform: translateY(-6px);
    opacity: 1;
  }
}

.testimonial-slider-quote {
  margin: 0;
  padding: 0;
}

.testimonial-slider-text {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(1.125rem, 2.5vw, 1.5rem);
  font-style: italic;
  line-height: 1.65;
  color: #2c2c2c;
  margin: 0;
}

[data-lang='bn'] .testimonial-slider-text {
  font-family: 'Hind Siliguri', serif;
  font-style: italic;
}

.testimonial-slider-text::first-letter {
  float: left;
  font-size: 3.8em;
  line-height: 0.8;
  padding-right: 0.12em;
  padding-top: 0.05em;
  font-weight: 700;
  color: #1a1a1a;
  font-style: normal;
}

.testimonial-slider-quote-wrap.is-entering .testimonial-slider-text::first-letter {
  animation: testimonial-dropcap 0.65s cubic-bezier(0.22, 1, 0.36, 1) 0.12s backwards;
}

@keyframes testimonial-dropcap {
  from {
    opacity: 0;
    transform: translateY(12px) scale(0.85);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.testimonial-slider.is-transitioning .testimonial-slider-item[data-slot='active'] {
  animation: none;
}

.testimonial-slider-meta {
  margin-top: 1.75rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(44, 44, 44, 0.08);
}

.testimonial-slider-company {
  font-size: 0.8125rem;
  font-weight: 500;
  color: #6b6b6b;
  margin: 0;
}

@media (prefers-reduced-motion: reduce) {
  .testimonials-section-bg {
    background-attachment: scroll;
  }
  .testimonial-slider-item,
  .testimonial-slider-avatar {
    transition: none;
  }
  .testimonial-slider-arc,
  .testimonial-slider-arc path,
  .testimonial-slider-mark,
  .testimonial-slider-item[data-slot='active'],
  .testimonial-slider-layout {
    animation: none !important;
  }
  .testimonial-slider-quote-wrap.is-changing .testimonial-slider-text,
  .testimonial-slider-quote-wrap.is-changing .testimonial-slider-company {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .testimonial-slider-quote-wrap.is-entering .testimonial-slider-text,
  .testimonial-slider-quote-wrap.is-entering .testimonial-slider-company,
  .testimonial-slider-quote-wrap.is-entering .testimonial-slider-text::first-letter {
    animation: none;
  }
}

/* Wave divider */
.wave-divider {
  line-height: 0;
  margin-top: -1px;
}

.wave-divider svg {
  width: 100%;
  height: 48px;
}

/* WhatsApp */
.whatsapp-btn {
  animation: whatsapp-pulse 2s ease infinite;
}

@keyframes whatsapp-pulse {
  0%, 100% { transform: scale(1); box-shadow: 0 4px 16px rgba(0,0,0,0.2); }
  50% { transform: scale(1.08); box-shadow: 0 6px 24px rgba(37,211,102,0.4); }
}

/* Cards */
.card-hover {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card-hover:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.1);
}

/* Products listing — card actions */
.product-card-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem;
}

.product-card-link {
  font-size: 0.875rem;
  font-weight: 500;
  color: #E05C00;
  text-decoration: none;
}

.product-card-link:hover {
  text-decoration: underline;
}

.product-call-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.875rem;
  font-weight: 700;
  padding: 0.5rem 1.15rem;
  border-radius: 9999px;
  color: #fff;
  text-decoration: none;
  background: linear-gradient(135deg, #16a34a 0%, #22c55e 50%, #4ade80 100%);
  box-shadow:
    0 0 0 2px rgba(34, 197, 94, 0.35),
    0 4px 18px rgba(34, 197, 94, 0.45);
  animation: product-call-highlight 2.2s ease-in-out infinite;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.product-call-btn:hover {
  transform: translateY(-1px);
  box-shadow:
    0 0 0 3px rgba(34, 197, 94, 0.5),
    0 6px 22px rgba(34, 197, 94, 0.55);
  color: #fff;
}

.product-call-icon {
  width: 1rem;
  height: 1rem;
  flex-shrink: 0;
}

.product-order-btn {
  font-size: 0.875rem;
  font-weight: 600;
  background: #E05C00;
  color: #fff;
  padding: 0.5rem 1.15rem;
  border-radius: 9999px;
  text-decoration: none;
  transition: background 0.2s ease;
}

.product-order-btn:hover {
  background: #c44f00;
  color: #fff;
}

@keyframes product-call-highlight {
  0%, 100% {
    box-shadow:
      0 0 0 2px rgba(34, 197, 94, 0.35),
      0 4px 18px rgba(34, 197, 94, 0.45);
  }
  50% {
    box-shadow:
      0 0 0 4px rgba(74, 222, 128, 0.55),
      0 6px 24px rgba(34, 197, 94, 0.6);
  }
}

.product-detail-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem;
}

.product-detail-call {
  padding: 0.875rem 1.35rem;
}

.line-clamp-2 {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.modal-open { overflow: hidden; }

/* ── Footer (Medtech-style layout) ── */
.site-footer {
  position: relative;
  overflow: hidden;
  margin-top: 0;
  color: #1a1a1a;
  min-height: 520px;
}

@media (min-width: 900px) {
  .site-footer {
    min-height: 640px;
  }
}

.site-footer-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(180deg, #f2f4fc 0%, #e4eaf6 42%, #d4dcf0 72%, #c8d2ec 100%);
}

.site-footer-watermark {
  position: absolute;
  left: 50%;
  bottom: -0.06em;
  transform: translateX(-50%);
  z-index: 1;
  margin: 0;
  font-size: clamp(8rem, 26vw, 18rem);
  font-weight: 800;
  line-height: 0.85;
  letter-spacing: -0.04em;
  color: rgba(26, 26, 26, 0.06);
  pointer-events: none;
  user-select: none;
  white-space: nowrap;
}

.site-footer-inner {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 5rem 1.5rem 3.5rem;
  min-height: inherit;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

@media (min-width: 900px) {
  .site-footer-inner {
    padding: 6.5rem 2rem 4.5rem;
  }
}

.site-footer-main {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
  padding-bottom: 3.5rem;
  flex: 1;
}

@media (min-width: 900px) {
  .site-footer-main {
    grid-template-columns: 1fr 1.4fr 1fr;
    gap: 3rem;
    padding-bottom: 5rem;
    align-items: center;
    min-height: 380px;
  }
}

.site-footer-col--left {
  text-align: left;
}

.site-footer-social {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 2.25rem;
}

.site-footer-social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  color: #1a1a1a;
  border: 1.5px solid rgba(26, 26, 26, 0.35);
  border-radius: 50%;
  transition: border-color 0.2s ease, transform 0.2s ease, background 0.2s ease;
}

.site-footer-social-link svg {
  width: 1rem;
  height: 1rem;
}

.site-footer-social-link:hover {
  border-color: #1a1a1a;
  background: rgba(255, 255, 255, 0.5);
  transform: translateY(-2px);
}

.site-footer-email {
  display: block;
  font-size: clamp(1.35rem, 3.5vw, 2rem);
  font-weight: 700;
  color: #1a1a1a;
  text-decoration: none;
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}

.site-footer-email:hover {
  color: #e05c00;
}

.site-footer-address {
  font-style: normal;
  font-size: 1rem;
  line-height: 1.75;
  color: rgba(26, 26, 26, 0.75);
  max-width: 16rem;
}

.site-footer-col--center {
  display: flex;
  justify-content: center;
}

.site-footer-cta-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  width: 100%;
  max-width: 420px;
}

.footer-dots {
  flex-shrink: 0;
  width: 36px;
  height: 56px;
  background-image: radial-gradient(circle, rgba(255, 255, 255, 0.85) 2px, transparent 2px);
  background-size: 12px 14px;
  opacity: 0.65;
}

.footer-cta-line {
  flex: 1;
  min-width: 28px;
  max-width: 72px;
  height: 32px;
  border: 1.5px solid rgba(255, 255, 255, 0.75);
  border-top: none;
  border-radius: 0 0 14px 14px;
  margin-top: 6px;
}

.footer-cta-line--left {
  border-right: none;
  border-bottom-left-radius: 14px;
}

.footer-cta-line--right {
  border-left: none;
  border-bottom-right-radius: 14px;
}

.site-footer-cta-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  padding: 1rem 1.5rem 1rem 1.65rem;
  background: #2c2c2c;
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 0.65rem;
  white-space: nowrap;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
  flex-shrink: 0;
}

.site-footer-cta-pill:hover {
  background: #e05c00;
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(224, 92, 0, 0.25);
}

.site-footer-cta-badge {
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 0.25rem 0.5rem;
  background: #1e3a5f;
  color: #a8c4f0;
  border-radius: 9999px;
}

.site-footer-col--right {
  display: flex;
  justify-content: flex-end;
}

.site-footer-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  text-align: right;
}

.site-footer-nav li {
  margin-bottom: 1rem;
}

.site-footer-nav a {
  font-size: 1.125rem;
  font-weight: 600;
  color: #1a1a1a;
  text-decoration: none;
  transition: color 0.2s ease;
}

.site-footer-nav a:hover {
  color: #e05c00;
}

.site-footer-bar {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  align-items: center;
  text-align: center;
  padding-top: 2.5rem;
  margin-top: auto;
  border-top: 1px solid rgba(26, 26, 26, 0.08);
}

@media (min-width: 900px) {
  .site-footer-bar {
    padding-top: 3rem;
  }
}

@media (min-width: 768px) {
  .site-footer-bar {
    grid-template-columns: 1fr auto 1fr;
    text-align: left;
  }
  .site-footer-bar-copy {
    text-align: center;
  }
  .site-footer-bar-link:last-child {
    text-align: right;
    justify-self: end;
  }
}

.site-footer-bar-link {
  font-size: 0.8125rem;
  color: rgba(26, 26, 26, 0.7);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.2s ease;
}

.site-footer-bar-link:hover {
  color: #1a1a1a;
}

.site-footer-bar-copy {
  font-size: 0.8125rem;
  color: rgba(26, 26, 26, 0.65);
  margin: 0;
}

@media (max-width: 899px) {
  .site-footer-col--right {
    justify-content: flex-start;
  }
  .site-footer-nav ul {
    text-align: left;
  }
  .site-footer-cta-wrap {
    flex-wrap: wrap;
    max-width: 100%;
  }
  .footer-dots {
    display: none;
  }
  .footer-cta-line {
    display: none;
  }
}

::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--cream); }
::-webkit-scrollbar-thumb { background: var(--accent); border-radius: 4px; }

@media (prefers-reduced-motion: reduce) {
  .animated-gradient-text, .whatsapp-btn, .trusted-by-logos--track { animation: none; }
  html { scroll-behavior: auto; }
  .fade-section { opacity: 1; transform: none; }
  .ppt-reveal { opacity: 1; animation: none !important; transform: none !important; filter: none !important; clip-path: none !important; }
  .testimonial-quote-icon, .testimonial-star { animation: none; }
  .testimonial-card:hover .testimonial-card-inner { transform: none; }
  .site-footer-cta-pill:hover { transform: none; }
  .industry-cta:hover .industry-cta-phone { transform: rotate(-8deg) translateY(8px); }
  .industry-cta-btn--primary:hover { transform: none; }
}
