/* =============================================
   NAKODA TRADERS — FULL STYLESHEET
   Industrial machinery landing page
   ============================================= */

/* ========== RESET & BASE ========== */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --color-primary: #21201e;
  --color-primary-dark: #21201e;
  --color-primary-light: #21201e;
  --color-accent: #f9612b;
  --color-accent-dark: #e5551f;
  --color-accent-light: #ff7a4d;
  --color-success: #059669;
  --color-whatsapp: #25D366;
  --color-text: #21201e;
  --color-text-light: #646463;
  --color-text-muted: #646463;
  --color-bg: #ffffff;
  --color-bg-alt: #f5f4f0;
  --color-bg-dark: #0f1117;
  --color-border: rgba(33, 32, 30, 0.08);
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.1);
  --shadow-lg: 0 8px 32px rgba(0,0,0,0.12);
  --shadow-xl: 0 16px 48px rgba(0,0,0,0.15);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.7;
  color: var(--color-text);
  background: var(--color-bg);
  overflow-x: hidden;
}

body.nav-open {
  overflow: hidden;
}

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

img[loading="lazy"] {
  background: linear-gradient(145deg, #e8e7e0 0%, #d5d4cc 50%, #cac9c1 100%);
}

.navbar__logo-img {
  height: 32px;
  width: auto;
  display: block;
}

.ft2-logo-img {
  max-width: 140px;
  height: auto;
}

a {
  color: var(--color-primary-light);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover {
  color: var(--color-accent);
}

ul {
  list-style: none;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 100px 0;
}

.section__title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  line-height: 1.25;
  color: var(--color-primary-dark);
  text-align: center;
  margin-bottom: 16px;
}

.section__subtitle {
  text-align: center;
  color: var(--color-text-light);
  font-size: 1.1rem;
  max-width: 640px;
  margin: 0 auto 48px;
}

/* ========== BUTTONS ========== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  font-family: var(--font);
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: var(--radius-sm);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  text-align: center;
  justify-content: center;
  white-space: nowrap;
}

.btn--primary {
  background: var(--color-accent);
  color: #fff;
  border-color: var(--color-accent);
}

.btn--primary:hover {
  background: var(--color-accent-dark);
  border-color: var(--color-accent-dark);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn--outline {
  background: transparent;
  color: var(--color-primary);
  border-color: var(--color-primary);
}

.btn--outline:hover {
  background: var(--color-primary);
  color: #fff;
  transform: translateY(-2px);
}

.btn--whatsapp {
  background: var(--color-whatsapp);
  color: #fff;
  border-color: var(--color-whatsapp);
}

.btn--whatsapp:hover {
  background: #1da851;
  border-color: #1da851;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn--lg {
  padding: 16px 36px;
  font-size: 1.05rem;
}

.btn--full {
  width: 100%;
}

.btn--nav {
  padding: 10px 24px;
  background: var(--color-accent);
  color: #fff;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 0.9rem;
}

.btn--nav:hover {
  background: var(--color-accent-dark);
  color: #fff;
}

/* ========== NAVBAR ========== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: transparent;
  transition: all var(--transition);
  padding: 16px 0;
}

.navbar--scrolled {
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow-sm);
  padding: 10px 0;
}

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

.navbar__logo {
  font-size: 1.35rem;
  font-weight: 800;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 6px;
}

.navbar--scrolled .navbar__logo {
  color: var(--color-primary-dark);
}

.logo-icon {
  font-size: 1.5rem;
}

.navbar__links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.navbar__links a {
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
  font-size: 0.95rem;
  transition: color var(--transition);
}

.navbar__links a:hover,
.navbar__links a.active {
  color: var(--color-accent);
}

.navbar--scrolled .navbar__links a {
  color: var(--color-text);
}

.navbar--scrolled .navbar__links a:hover,
.navbar--scrolled .navbar__links a.active {
  color: var(--color-accent-dark);
}

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

.navbar__toggle span {
  display: block;
  width: 26px;
  height: 2.5px;
  background: #fff;
  border-radius: 2px;
  transition: all var(--transition);
}

.navbar--scrolled .navbar__toggle span {
  background: var(--color-text);
}

.navbar__toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.navbar__toggle.active span:nth-child(2) {
  opacity: 0;
}

.navbar__toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ========== HERO — VIDEO BACKGROUND + SPLIT LAYOUT ========== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #0a0f1a;
}

/* ---- Video background ---- */
.hero__video-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Dark overlay on video */
.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    135deg,
    rgba(10, 15, 26, 0.82) 0%,
    rgba(10, 15, 26, 0.65) 50%,
    rgba(10, 15, 26, 0.75) 100%
  );
  pointer-events: none;
}

/* ---- Split content layout ---- */
.hero__content-split {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 60px;
  width: 100%;
  max-width: 1300px;
  margin: 0 auto;
  padding: 140px 60px 100px;
}

/* ---- LEFT: text content ---- */
.hero__left {
  flex: 1;
  max-width: 600px;
}

/* Tagline pill */
.hero__tagline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 28px;
  text-transform: uppercase;
  opacity: 0;
  animation: heroFadeUp 0.8s 0.2s ease-out forwards;
}

.hero__tagline-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--color-accent);
  animation: pulseDot 2s ease-in-out infinite;
}

@keyframes pulseDot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(1.3); }
}

/* Main headline */
.hero__title-main {
  font-family: 'Archivo', 'Inter', sans-serif;
  font-size: clamp(2.8rem, 5.5vw, 4.2rem);
  font-weight: 800;
  line-height: 1.08;
  color: #fff;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
  opacity: 0;
  transform: translateY(30px);
  animation: heroFadeUp 1s 0.4s ease-out forwards;
}

.hero__title-accent {
  color: var(--color-accent);
  position: relative;
}

/* Description */
.hero__desc {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.75;
  max-width: 480px;
  margin-bottom: 36px;
  opacity: 0;
  animation: heroFadeUp 0.8s 0.6s ease-out forwards;
}

/* CTA Buttons */
.hero__actions {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  opacity: 0;
  animation: heroFadeUp 0.8s 0.8s ease-out forwards;
}

.hero__btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  background: var(--color-accent);
  color: #fff;
  font-weight: 700;
  font-size: 0.95rem;
  border-radius: 50px;
  text-decoration: none;
  transition: all var(--transition);
}

.hero__btn-primary:hover {
  background: #fff;
  color: #21201e;
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(249, 97, 43, 0.3);
}

.hero__btn-play {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: #fff;
  font-weight: 600;
  font-size: 0.9rem;
  transition: color var(--transition);
}

.hero__btn-play:hover {
  color: var(--color-accent);
}

.hero__btn-play-circle {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid rgba(255, 255, 255, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: all var(--transition);
}

.hero__btn-play:hover .hero__btn-play-circle {
  background: var(--color-accent);
  border-color: var(--color-accent);
  color: #fff;
}

/* ---- RIGHT: Expandable image panels (Aleric style) ---- */
.hero__right {
  flex: 0 0 480px;
  height: 480px;
  opacity: 0;
  animation: heroFadeIn 1s 1s ease-out forwards;
}

.hero__panels {
  display: flex;
  gap: 12px;
  height: 100%;
}

/* Individual panel */
.hero__panel {
  position: relative;
  flex: 0 0 80px;
  height: 100%;
  border-radius: 24px;
  overflow: hidden;
  cursor: pointer;
  transition: flex 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero__panel.active {
  flex: 1 1 0;
}

/* Panel background (placeholder gradient — replace with images) */
.hero__panel-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, #2a3a52 0%, #1a2a40 50%, #0f1926 100%);
  transition: all 0.5s ease;
}

/* Industry-themed panel backgrounds */
.hero__panel-bg--food {
  background: linear-gradient(160deg, #c0392b 0%, #7b241c 40%, #1a1d26 100%) !important;
}
.hero__panel-bg--fmcg {
  background: linear-gradient(160deg, #2980b9 0%, #1a5276 40%, #1a1d26 100%) !important;
}
.hero__panel-bg--medical {
  background: linear-gradient(160deg, #27ae60 0%, #1e8449 40%, #1a1d26 100%) !important;
}
.hero__panel-bg--textile {
  background: linear-gradient(160deg, #8e44ad 0%, #6c3483 40%, #1a1d26 100%) !important;
}

/* Panel background image */
.hero__panel-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Gradient overlay at bottom */
.hero__panel-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(17, 17, 18, 0) 50%, rgba(2, 2, 6, 0.85) 100%);
  z-index: 1;
  border-radius: 24px;
}

/* Content at bottom */
.hero__panel-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2;
  padding: 0 24px 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.4s ease 0.15s, transform 0.4s ease 0.15s;
}

.hero__panel.active .hero__panel-content {
  opacity: 1;
  transform: translateY(0);
}

.hero__panel-title {
  font-family: 'Archivo', sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.hero__panel-meta {
  text-align: left;
}

.hero__panel-desc {
  font-family: 'Oxygen', sans-serif;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.5;
  margin: 0;
}

/* ---- Scroll indicator ---- */
.hero__scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: #fff;
  opacity: 0;
  animation: heroFadeIn 0.8s 1.4s ease-out forwards;
}

.hero__scroll-text {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
}

.hero__scroll-circle {
  width: 40px;
  height: 40px;
  border: 1.5px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.5);
  transition: all var(--transition);
}

.hero__scroll:hover .hero__scroll-circle {
  border-color: var(--color-accent);
  color: var(--color-accent);
}

.hero__scroll-circle svg {
  animation: scrollBounce 2s ease-in-out infinite;
}

@keyframes scrollBounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(4px); }
}

/* ---- Animations ---- */
@keyframes heroFadeUp {
  to { opacity: 1; transform: translateY(0); }
}

@keyframes heroFadeIn {
  to { opacity: 1; }
}

/* ========== PAGE HERO (Services page) ========== */
.page-hero {
  background: linear-gradient(135deg, #0f1117 0%, #1a1d26 100%);
  padding: 140px 0 80px;
  text-align: center;
}

.page-hero__title {
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 900;
  color: #fff;
  margin-bottom: 16px;
}

.page-hero__subtitle {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.15rem;
  margin-bottom: 32px;
}

.quick-jump {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.quick-jump__link {
  padding: 10px 24px;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9rem;
  border: 1px solid rgba(255, 255, 255, 0.15);
  transition: all var(--transition);
}

.quick-jump__link:hover {
  background: var(--color-accent);
  color: #fff;
  border-color: var(--color-accent);
}

/* ========== ABOUT — MINT/ORGANIC STYLE ========== */
/* ========== ABOUT SECTION — DARK BENTO GRID ========== */
.abt2 {
  background: #0f1117;
  position: relative;
  z-index: 10;
  padding-bottom: 80px;
}

/* ---- Large centered headline ---- */
.abt2__hero {
  padding: 100px 0 60px;
  text-align: center;
}

.abt2__headline {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 400;
  font-style: italic;
  line-height: 1.3;
  color: #fff;
  max-width: 800px;
  margin: 0 auto;
}

.abt2__headline-accent {
  color: #f9612b;
}

/* ---- Bento grid layout ---- */
.abt2__bento {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

.abt2__card {
  background: #1a1d26;
  border-radius: 20px;
  padding: 36px 32px;
}

/* ---- LEFT: Services list card ---- */
.abt2__card--services {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.abt2__services-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin-bottom: 32px;
}

.abt2__service-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.abt2__service-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(249, 97, 43, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #f9612b;
}

.abt2__service-title {
  font-family: 'Archivo', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 4px;
}

.abt2__service-text {
  font-family: 'Oxygen', sans-serif;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.5;
}

.abt2__services-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.85rem;
  font-weight: 500;
  text-decoration: none;
  transition: color var(--transition);
}

.abt2__services-link:hover {
  color: #f9612b;
}

/* ---- CENTER: Feature card (amber/gold) ---- */
.abt2__card--feature {
  background: #f9612b;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
}

.abt2__feature-text {
  font-family: 'Oxygen', sans-serif;
  font-size: 1.05rem;
  line-height: 1.7;
  color: #1a1d26;
  font-weight: 400;
  position: relative;
  z-index: 1;
}

.abt2__feature-wave {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 80px;
  background: radial-gradient(ellipse at 50% 100%, rgba(26, 29, 38, 0.12) 0%, transparent 70%);
  border-radius: 50% 50% 0 0 / 100% 100% 0 0;
}

.abt2__feature-btn {
  display: inline-block;
  padding: 10px 24px;
  border: 1.5px solid #1a1d26;
  border-radius: 50px;
  color: #1a1d26;
  font-size: 0.85rem;
  font-weight: 600;
  text-decoration: none;
  text-align: center;
  align-self: flex-start;
  position: relative;
  z-index: 1;
  transition: all var(--transition);
  margin-top: 24px;
}

.abt2__feature-btn:hover {
  background: #1a1d26;
  color: #f9612b;
}

/* ---- RIGHT: Stacked stat cards ---- */
.abt2__stats-col {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.abt2__card--stat {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.abt2__stat-num {
  display: block;
  font-family: 'Archivo', sans-serif;
  font-size: clamp(2.2rem, 3.5vw, 3rem);
  font-weight: 800;
  color: #fff;
  line-height: 1;
  margin-bottom: 8px;
}

.abt2__stat-title {
  font-family: 'Archivo', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 6px;
}

.abt2__stat-desc {
  font-family: 'Oxygen', sans-serif;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.5;
}

/* ---- Vision & Mission cards ---- */
.abt2__vm-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.abt2__vm-card {
  background: #1a1d26;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 20px;
  padding: 44px 36px;
  transition: all var(--transition);
}

.abt2__vm-card:hover {
  transform: translateY(-4px);
  border-color: rgba(249, 97, 43, 0.2);
}

.abt2__vm-card h3 {
  font-family: 'Archivo', sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 14px;
  position: relative;
  padding-bottom: 14px;
}

.abt2__vm-card h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 32px;
  height: 3px;
  background: #f9612b;
  border-radius: 2px;
}

.abt2__vm-card p {
  font-family: 'Oxygen', sans-serif;
  font-size: 0.92rem;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.55);
}

/* ========== HOW WE WORK — ELEMENTRA STYLE ========== */
.hww-section {
  background: #fff;
  padding: 100px 0 120px;
}

.hww-tagline {
  display: block;
  font-family: 'Oxygen', sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #f9612b;
  text-align: center;
  margin-bottom: 14px;
}

.hww-title {
  font-family: 'Archivo', sans-serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  color: #21201e;
  text-align: center;
  line-height: 1.2;
  margin-bottom: 16px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.hww-subtitle {
  font-family: 'Oxygen', sans-serif;
  font-size: 1.05rem;
  color: #646463;
  text-align: center;
  line-height: 1.7;
  max-width: 600px;
  margin: 0 auto 56px;
}

.hww-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px 32px;
}

/* ---- Individual step card ---- */
.hww-card {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.hww-card:hover {
  transform: translateY(-6px);
  color: inherit;
}

/* Image placeholder with step number */
.hww-card__img {
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 16px;
  background: linear-gradient(145deg, #e8e7e0 0%, #d5d4cc 50%, #cac9c1 100%);
  margin-bottom: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
  transition: box-shadow 0.35s ease;
}

.hww-card:hover .hww-card__img {
  box-shadow: 0 12px 40px rgba(33, 32, 30, 0.1);
}

/* Step number overlay */
.hww-card__step {
  position: absolute;
  top: 16px;
  left: 20px;
  font-family: 'Archivo', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  color: rgba(33, 32, 30, 0.25);
  letter-spacing: 0.04em;
  z-index: 1;
}

.hww-card__svg {
  width: 50%;
  height: 50%;
  opacity: 0.5;
  transition: opacity 0.3s ease;
}

.hww-card:hover .hww-card__svg {
  opacity: 0.8;
}

/* Title */
.hww-card__title {
  font-family: 'Archivo', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: #21201e;
  margin-bottom: 8px;
  line-height: 1.3;
}

/* Description */
.hww-card__desc {
  font-family: 'Oxygen', sans-serif;
  font-size: 0.9rem;
  color: #646463;
  line-height: 1.65;
  margin-bottom: 16px;
  flex-grow: 1;
}

/* Link */
.hww-card__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: 'Oxygen', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  color: #f9612b;
  transition: gap 0.25s ease;
}

.hww-card:hover .hww-card__link {
  gap: 10px;
}

.hww-card__link svg {
  transition: transform 0.25s ease;
}

.hww-card:hover .hww-card__link svg {
  transform: translateX(3px);
}

/* ========== INDUSTRIES — ELEMENTRA STYLE ========== */
.ind-section {
  background: #f6f5ef;
  padding: 100px 0 120px;
}

.ind-tagline {
  display: block;
  font-family: 'Oxygen', sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #f9612b;
  text-align: center;
  margin-bottom: 14px;
}

.ind-title {
  font-family: 'Archivo', sans-serif;
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 700;
  color: #21201e;
  text-align: center;
  line-height: 1.15;
  margin-bottom: 16px;
}

.ind-subtitle {
  font-family: 'Oxygen', sans-serif;
  font-size: 1.05rem;
  color: #646463;
  text-align: center;
  line-height: 1.7;
  max-width: 580px;
  margin: 0 auto 56px;
}

.ind-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

/* ---- Individual industry card ---- */
.ind-card {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.ind-card:hover {
  transform: translateY(-6px);
  color: inherit;
}

/* Image placeholder */
.ind-card__img {
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 16px;
  background: linear-gradient(145deg, #e8e7e0 0%, #d5d4cc 50%, #cac9c1 100%);
  margin-bottom: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
  transition: box-shadow 0.35s ease;
}

.ind-card:hover .ind-card__img {
  box-shadow: 0 12px 40px rgba(33, 32, 30, 0.1);
}

.ind-card__svg {
  width: 60%;
  height: 60%;
  opacity: 0.5;
  transition: opacity 0.3s ease;
}

.ind-card:hover .ind-card__svg {
  opacity: 0.8;
}

/* Title */
.ind-card__title {
  font-family: 'Archivo', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: #21201e;
  margin-bottom: 8px;
  line-height: 1.3;
}

/* Description */
.ind-card__desc {
  font-family: 'Oxygen', sans-serif;
  font-size: 0.9rem;
  color: #646463;
  line-height: 1.65;
  margin-bottom: 16px;
  flex-grow: 1;
}

/* Link */
.ind-card__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: 'Oxygen', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  color: #f9612b;
  transition: gap 0.25s ease;
}

.ind-card:hover .ind-card__link {
  gap: 10px;
}

.ind-card__link svg {
  transition: transform 0.25s ease;
}

.ind-card:hover .ind-card__link svg {
  transform: translateX(3px);
}

/* ========== WHY US — SPLIT FEATURE GRID ========== */
.whyus {
  background: #f5f4f0;
  padding: 120px 0;
}

.whyus__inner {
  display: flex;
  gap: 80px;
  align-items: flex-start;
}

/* ---- Left: big headline ---- */
.whyus__left {
  flex: 0 0 42%;
  max-width: 42%;
  position: sticky;
  top: 120px;
}

.whyus__tagline {
  display: inline-block;
  font-family: 'Oxygen', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #f9612b;
  margin-bottom: 20px;
}

.whyus__title {
  font-family: 'Archivo', sans-serif;
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 900;
  line-height: 1.05;
  color: #21201e;
  text-transform: uppercase;
  letter-spacing: -0.02em;
}

.whyus__accent {
  color: #f9612b;
}

/* ---- Right: 2-col feature grid ---- */
.whyus__grid {
  flex: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px 40px;
}

.whyus__item {
  display: flex;
  flex-direction: column;
}

/* Circular icon */
.whyus__icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(249, 97, 43, 0.06);
  border: 1px solid rgba(249, 97, 43, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #f9612b;
  margin-bottom: 18px;
  transition: all var(--transition);
}

.whyus__item:hover .whyus__icon {
  background: #f9612b;
  color: #fff;
  border-color: #f9612b;
  transform: scale(1.05);
}

.whyus__item h3 {
  font-family: 'Archivo', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: #21201e;
  margin-bottom: 8px;
  line-height: 1.3;
}

.whyus__item p {
  font-family: 'Oxygen', sans-serif;
  font-size: 0.88rem;
  color: #646463;
  line-height: 1.65;
}

/* ========== TESTIMONIALS ========== */
.testimonials {
  background: var(--color-bg-alt);
}

.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
  margin-top: 48px;
}

.testimonial-card {
  background: #fff;
  padding: 36px 32px;
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border);
  transition: all var(--transition);
}

.testimonial-card:hover {
  box-shadow: var(--shadow-md);
}

.testimonial-card__stars {
  color: var(--color-accent);
  font-size: 1.2rem;
  margin-bottom: 16px;
  letter-spacing: 2px;
}

.testimonial-card blockquote {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--color-text);
  margin-bottom: 20px;
  font-style: italic;
}

.testimonial-card blockquote strong {
  color: var(--color-primary);
  font-style: normal;
}

.testimonial-card__author {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.testimonial-card__name {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--color-primary-dark);
}

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

/* ========== GLOBAL SOURCING — TEAM-CARD STYLE ========== */
.gsrc {
  background: #eef5f0;
  padding: 100px 0 120px;
}

.gsrc__inner {
  display: flex;
  gap: 60px;
  align-items: flex-start;
}

/* ---- Left column ---- */
.gsrc__left {
  flex: 0 0 38%;
  max-width: 38%;
  position: sticky;
  top: 120px;
}

.gsrc__tagline {
  display: inline-block;
  font-family: 'Oxygen', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #21201e;
  margin-bottom: 14px;
}

.gsrc__title {
  font-family: 'Archivo', sans-serif;
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  font-weight: 700;
  color: #21201e;
  line-height: 1.2;
  margin-bottom: 20px;
}

/* Tabs */
.gsrc__tabs {
  display: flex;
  gap: 4px;
  margin-bottom: 20px;
}

.gsrc__tab {
  font-family: 'Oxygen', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 6px 14px;
  border-radius: 4px;
  color: #646463;
  cursor: pointer;
  transition: all var(--transition);
}

.gsrc__tab--active {
  color: #21201e;
  border-bottom: 2px solid #21201e;
}

.gsrc__tab:hover {
  color: #21201e;
}

.gsrc__desc {
  font-family: 'Oxygen', sans-serif;
  font-size: 0.92rem;
  color: #646463;
  line-height: 1.7;
  margin-bottom: 28px;
}

/* CTA button */
.gsrc__cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: #21201e;
  font-family: 'Oxygen', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 36px;
  transition: color var(--transition);
}

.gsrc__cta:hover {
  color: #f9612b;
}

.gsrc__cta-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #21201e;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition);
}

.gsrc__cta:hover .gsrc__cta-icon {
  background: #f9612b;
}

/* Image placeholder */
.gsrc__image {
  width: 100%;
  aspect-ratio: 16 / 10;
  border-radius: 16px;
  background: linear-gradient(145deg, #d9ece0 0%, #c2dcc8 50%, #b0cfb8 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

/* ---- Right: Country cards grid ---- */
.gsrc__grid {
  flex: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

/* Individual country card */
.gsrc__card {
  background: #fff;
  border-radius: 16px;
  padding: 32px 28px;
  border: 1px solid rgba(33, 32, 30, 0.06);
  transition: all var(--transition);
}

.gsrc__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(33, 32, 30, 0.06);
  border-color: rgba(33, 32, 30, 0.1);
}

.gsrc__card-flag {
  font-size: 2.5rem;
  line-height: 1;
  margin-bottom: 16px;
}

.gsrc__card-name {
  font-family: 'Archivo', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: #21201e;
  margin-bottom: 4px;
}

.gsrc__card-role {
  font-family: 'Oxygen', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #646463;
  margin-bottom: 10px;
}

.gsrc__card-desc {
  font-family: 'Oxygen', sans-serif;
  font-size: 0.85rem;
  color: #646463;
  line-height: 1.5;
  margin-bottom: 14px;
}

/* Brand tags */
.gsrc__card-brands {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.gsrc__card-brands span {
  font-size: 0.72rem;
  font-weight: 600;
  color: #21201e;
  background: #eef5f0;
  padding: 4px 10px;
  border-radius: 4px;
  letter-spacing: 0.02em;
}

/* ========== SERVICES GRID (Services page) ========== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 48px;
}

.service-card {
  position: relative;
  background: #fff;
  padding: 36px 28px;
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border);
  transition: all var(--transition);
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--color-accent);
}

.service-card__num {
  display: inline-block;
  background: var(--color-accent);
  color: #fff;
  padding: 4px 14px;
  border-radius: 50px;
  font-weight: 800;
  font-size: 0.85rem;
  margin-bottom: 16px;
}

.service-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--color-primary-dark);
  margin-bottom: 12px;
}

.service-card__problem {
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 8px;
  font-size: 0.95rem;
}

.service-card p {
  color: var(--color-text-light);
  font-size: 0.9rem;
}

/* ========== INDUSTRY DEEP DIVE (Services page) ========== */
.industry-deep {
  background: var(--color-bg-alt);
}

.industry-block {
  background: #fff;
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
  margin-bottom: 32px;
  overflow: hidden;
  transition: all var(--transition);
}

.industry-block:hover {
  box-shadow: var(--shadow-md);
}

.industry-block__header {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 32px;
  background: linear-gradient(135deg, #0f1117, #1a1d26);
  color: #fff;
}

.industry-block__icon {
  font-size: 3rem;
  flex-shrink: 0;
}

.industry-block__header h3 {
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.4;
}

.industry-block__tag {
  display: inline-block;
  margin-top: 8px;
  padding: 4px 16px;
  background: rgba(249, 97, 43, 0.2);
  color: var(--color-accent-light);
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
}

.industry-block__content {
  padding: 32px;
}

.machine-list {
  margin-bottom: 24px;
}

.machine-list h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-primary-dark);
  margin-bottom: 12px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--color-accent);
  display: inline-block;
}

.machine-list ul {
  columns: 2;
  column-gap: 40px;
}

.machine-list li {
  position: relative;
  padding: 4px 0 4px 20px;
  font-size: 0.9rem;
  color: var(--color-text-light);
  break-inside: avoid;
}

.machine-list li::before {
  content: '▸';
  position: absolute;
  left: 0;
  color: var(--color-accent);
  font-weight: 700;
}

.source-info {
  margin: 24px 0;
}

.source-info h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--color-primary-dark);
  margin-bottom: 12px;
}

.source-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.source-tag {
  padding: 8px 16px;
  background: var(--color-bg-alt);
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--color-text);
  border: 1px solid var(--color-border);
}

.source-info__note {
  margin-top: 12px;
  font-size: 0.85rem;
  color: var(--color-success);
  font-weight: 600;
}

/* ========== AMC PLANS ========== */
.amc-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  margin-top: 48px;
}

.amc-card {
  position: relative;
  background: #fff;
  padding: 36px 28px;
  border-radius: var(--radius-md);
  border: 2px solid var(--color-border);
  transition: all var(--transition);
}

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

.amc-card--featured {
  border-color: var(--color-accent);
  box-shadow: var(--shadow-md);
  background: linear-gradient(180deg, #fff5f0 0%, #fff 30%);
}

.amc-card__badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--color-accent);
  color: #fff;
  padding: 6px 20px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 700;
  white-space: nowrap;
}

.amc-card h3 {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--color-primary-dark);
  margin-bottom: 4px;
}

.amc-card__type {
  color: var(--color-accent-dark);
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 20px;
}

.amc-card ul {
  margin-bottom: 20px;
}

.amc-card li {
  padding: 6px 0 6px 24px;
  position: relative;
  font-size: 0.9rem;
  color: var(--color-text-light);
}

.amc-card li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--color-success);
  font-weight: 700;
}

.amc-card__note {
  font-size: 0.8rem;
  color: var(--color-text-muted);
  font-style: italic;
  margin-bottom: 8px;
}

.amc-card__best {
  font-size: 0.85rem;
  color: var(--color-primary);
  font-weight: 600;
  margin-bottom: 20px;
}

.amc-pricing {
  text-align: center;
  margin-top: 32px;
  color: var(--color-text-light);
  font-size: 0.95rem;
}

.amc-pricing a {
  color: var(--color-accent-dark);
  font-weight: 600;
}

/* ========== FAQ ========== */
.faq {
  background: var(--color-bg-alt);
}

.faq-list {
  max-width: 780px;
  margin: 48px auto 0;
}

.faq-item {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  margin-bottom: 12px;
  overflow: hidden;
  transition: all var(--transition);
}

.faq-item:hover {
  border-color: var(--color-accent);
}

.faq-item summary {
  padding: 20px 24px;
  font-weight: 600;
  cursor: pointer;
  font-size: 1rem;
  color: var(--color-primary-dark);
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: '+';
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--color-accent);
  flex-shrink: 0;
  transition: transform var(--transition);
}

.faq-item[open] summary::after {
  content: '−';
}

.faq-item p {
  padding: 0 24px 20px;
  color: var(--color-text-light);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* ========== CTA BANNER ========== */
.cta-banner {
  background: linear-gradient(135deg, #0f1117 0%, #1a1d26 100%);
  color: #fff;
}

.cta-banner__inner {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.cta-banner h2 {
  font-size: clamp(1.5rem, 3.5vw, 2.2rem);
  font-weight: 800;
  line-height: 1.3;
  margin-bottom: 32px;
  color: #fff;
}

.cta-banner__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  margin-bottom: 16px;
}

.cta-banner__or {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.9rem;
  margin-bottom: 32px;
}

/* ========== CONTACT FORM ========== */
.contact-form {
  text-align: left;
  max-width: 640px;
  margin: 0 auto;
}

.contact-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group label {
  font-size: 0.85rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.8);
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  font-family: var(--font);
  font-size: 0.95rem;
  transition: all var(--transition);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(255, 255, 255, 0.35);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-accent);
  background: rgba(255, 255, 255, 0.12);
}

.form-group select {
  cursor: pointer;
}

.form-group select option {
  background: var(--color-primary-dark);
  color: #fff;
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

.contact-form .form-group:last-of-type {
  margin-bottom: 24px;
}

/* ========== FOOTER v2 — MINIMAL WHITE ========== */
.ft2-footer {
  background: #fff;
  color: #21201e;
}

.ft2-divider {
  border: none;
  border-top: 1px solid rgba(33, 32, 30, 0.08);
  margin: 0;
}

/* Footer grid: 3 link columns + logo */
.ft2-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 160px;
  gap: 40px;
  padding: 48px 0 40px;
  align-items: start;
}

/* Flat link lists — no headings */
.ft2-links {
  list-style: none;
  margin: 0;
  padding: 0;
}

.ft2-links li {
  margin-bottom: 12px;
}

.ft2-links a {
  color: #646463;
  font-family: 'Oxygen', sans-serif;
  font-size: 0.88rem;
  text-decoration: none;
  transition: color 0.2s ease;
}

.ft2-links a:hover {
  color: #21201e;
}

/* Logo/image placeholder */
.ft2-image {
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
}

.ft2-logo-text {
  font-family: 'Archivo', sans-serif;
  font-weight: 800;
  font-size: 1.1rem;
  color: #21201e;
  line-height: 1.3;
  display: flex;
  align-items: center;
  gap: 6px;
}

.ft2-logo-text .logo-icon {
  font-size: 1.4rem;
}

/* Bottom bar */
.ft2-bottom {
  border-top: 1px solid rgba(33, 32, 30, 0.08);
  padding: 18px 0;
}

.ft2-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.ft2-copyright {
  font-family: 'Oxygen', sans-serif;
  font-size: 0.8rem;
  color: #646463;
  margin: 0;
}

.ft2-copyright strong {
  color: #21201e;
}

.ft2-bottom-right {
  display: flex;
  align-items: center;
  gap: 24px;
}

/* Small inline social icons */
.ft2-socials {
  display: flex;
  align-items: center;
  gap: 14px;
}

.ft2-socials a {
  color: #646463;
  display: inline-flex;
  align-items: center;
  transition: color 0.2s ease;
}

.ft2-socials a:hover {
  color: #21201e;
}

/* Back to top circle */
.ft2-back-top {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(33, 32, 30, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #646463;
  text-decoration: none;
  transition: all 0.2s ease;
}

.ft2-back-top:hover {
  background: #21201e;
  border-color: #21201e;
  color: #fff;
}

/* ========== WHATSAPP FLOAT ========== */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  width: 60px;
  height: 60px;
  background: var(--color-whatsapp);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  transition: all var(--transition);
  animation: pulse-wa 2s infinite;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(37, 211, 102, 0.5);
  color: #fff;
}

@keyframes pulse-wa {
  0%, 100% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4); }
  50% { box-shadow: 0 4px 32px rgba(37, 211, 102, 0.6); }
}

/* ========== SCROLL REVEAL ANIMATION ========== */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger children */
.trust-bar__item.reveal:nth-child(2) { transition-delay: 0.1s; }
.trust-bar__item.reveal:nth-child(3) { transition-delay: 0.2s; }
.trust-bar__item.reveal:nth-child(4) { transition-delay: 0.3s; }

.pain-card.reveal:nth-child(2) { transition-delay: 0.05s; }
.pain-card.reveal:nth-child(3) { transition-delay: 0.1s; }
.pain-card.reveal:nth-child(4) { transition-delay: 0.15s; }
.pain-card.reveal:nth-child(5) { transition-delay: 0.2s; }
.pain-card.reveal:nth-child(6) { transition-delay: 0.25s; }
.pain-card.reveal:nth-child(7) { transition-delay: 0.3s; }

/* hww card stagger (scroll-reveal) */

.industry-card.reveal:nth-child(2) { transition-delay: 0.1s; }
.industry-card.reveal:nth-child(3) { transition-delay: 0.2s; }
.industry-card.reveal:nth-child(4) { transition-delay: 0.3s; }

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
  .ft2-grid {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 32px;
  }
  .ft2-image {
    grid-column: 1 / -1;
    justify-content: flex-start;
  }

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

  .machine-list ul {
    columns: 1;
  }

  .hero__content-split {
    padding: 120px 40px 80px;
    gap: 40px;
  }

  .hero__right {
    flex: 0 0 380px;
    height: 420px;
  }

  .hww-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .abt2__bento {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 16px;
  }

  .abt2__vm-grid {
    gap: 16px;
  }
}

@media (max-width: 768px) {
  .section {
    padding: 72px 0;
  }

  /* ---- Navbar mobile polish ---- */
  .navbar {
    padding: 12px 0;
    padding-top: env(safe-area-inset-top);
  }

  .navbar--scrolled {
    padding: 10px 0;
    padding-top: env(safe-area-inset-top);
  }

  .navbar__toggle {
    display: flex;
  }

  .navbar__links {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    flex-direction: column;
    background: var(--color-primary-dark);
    justify-content: center;
    align-items: center;
    gap: 24px;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition);
  }

  .navbar__links.active {
    opacity: 1;
    visibility: visible;
  }

  .navbar__links a {
    color: #fff !important;
    font-size: 1.2rem;
  }

  .navbar__links .btn--nav {
    width: 100%;
    padding: 14px 28px;
    text-align: center;
    display: block;
  }

  /* ---- Hero mobile layout ---- */
  .hero__content-split {
    flex-direction: column;
    padding: 100px 20px 80px;
    gap: 48px;
    text-align: left;
  }

  .hero__left {
    max-width: 100%;
  }

  .hero__title-main {
    font-size: clamp(1.8rem, 7vw, 2.4rem);
    overflow-wrap: break-word;
    word-break: break-word;
  }

  .hero__desc {
    font-size: 0.9rem;
  }

  .hero__actions {
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
  }

  .hero__btn-primary {
    width: 100%;
    text-align: center;
    justify-content: center;
  }

  .hero__btn-play {
    justify-content: center;
  }

  .hero__right {
    flex: none;
    width: 100%;
    height: auto;
    min-height: 200px;
  }

  /* Hero panels — horizontal swipable row */
  .hero__panels {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    gap: 12px;
    padding-bottom: 8px;
    scrollbar-width: none;
  }

  .hero__panels::-webkit-scrollbar {
    display: none;
  }

  .hero__panel {
    flex: 0 0 200px;
    scroll-snap-align: start;
    height: 240px;
  }

  .hero__panel.active {
    flex: 0 0 200px;
  }

  .hero__panel-content {
    opacity: 1;
    transform: none;
  }

  .hero__panel-title {
    font-size: 1rem;
  }

  .hero__panel-num {
    font-size: 1.6rem;
  }

  .hero__scroll {
    display: none;
  }

  /* ---- About dark bento mobile ---- */
  .abt2__hero {
    padding: 48px 0 32px;
  }

  .abt2__headline {
    font-size: 1.5rem;
    padding: 48px 0 32px;
  }

  .abt2__bento {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .abt2__card--services,
  .abt2__card--feature,
  .abt2__card--stats {
    width: 100%;
  }

  .abt2__stats-col {
    gap: 16px;
  }

  .abt2__vm-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .abt2 {
    padding-bottom: 48px;
  }

  /* Industries mobile — horizontal swipe */
  .ind-section {
    padding: 64px 0 80px;
  }

  .ind-title {
    font-size: 1.6rem;
  }

  .ind-subtitle {
    font-size: 0.9rem;
    margin-bottom: 32px;
  }

  .ind-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 20px;
    padding-bottom: 12px;
    scrollbar-width: none;
  }

  .ind-grid::-webkit-scrollbar {
    display: none;
  }

  .ind-card {
    flex: 0 0 280px;
    scroll-snap-align: start;
  }

  /* How We Work mobile — horizontal swipe */
  .hww-section {
    padding: 64px 0 80px;
  }

  .hww-title {
    font-size: 1.5rem;
  }

  .hww-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 20px;
    padding-bottom: 12px;
    scrollbar-width: none;
  }

  .hww-grid::-webkit-scrollbar {
    display: none;
  }

  .hww-card {
    flex: 0 0 300px;
    scroll-snap-align: start;
  }

  /* Global Sourcing mobile — horizontal swipe */
  .gsrc__inner {
    flex-direction: column;
    gap: 40px;
  }

  .gsrc__left {
    flex: none;
    max-width: 100%;
    position: static;
  }

  .gsrc__image {
    display: none;
  }

  .gsrc__tabs {
    flex-wrap: wrap;
  }

  .gsrc__grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 16px;
    scrollbar-width: none;
  }

  .gsrc__grid::-webkit-scrollbar {
    display: none;
  }

  .gsrc__card {
    flex: 0 0 260px;
    scroll-snap-align: start;
  }

  .contact-form__row {
    grid-template-columns: 1fr;
  }

  .ft2-grid {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }
  .ft2-image {
    grid-column: 1 / -1;
  }
  .ft2-bottom-inner {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }

  .cta-banner__actions {
    flex-direction: column;
    align-items: center;
  }

  .industry-block__header {
    flex-direction: column;
    text-align: center;
    gap: 12px;
  }

  /* Why Us mobile */
  .whyus {
    padding: 64px 0;
  }

  .whyus__inner {
    flex-direction: column;
    gap: 40px;
  }

  .whyus__left {
    flex: none;
    max-width: 100%;
    position: static;
  }

  .whyus__title {
    font-size: 1.8rem;
  }

  .whyus__grid {
    grid-template-columns: 1fr 1fr;
    gap: 28px 20px;
  }

  .whyus__icon {
    width: 44px;
    height: 44px;
  }

  /* Testimonials mobile — horizontal swipe */
  .testimonials__grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 20px;
    padding: 0 0 12px;
    scrollbar-width: none;
  }

  .testimonials__grid::-webkit-scrollbar {
    display: none;
  }

  .testimonial-card {
    flex: 0 0 320px;
    scroll-snap-align: start;
  }

  /* General padding */
  .container {
    padding: 0 20px;
  }

  /* AMC Plans — horizontal swipable */
  .amc-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 16px;
    scrollbar-width: none;
  }
  .amc-grid::-webkit-scrollbar {
    display: none;
  }
  .amc-card {
    flex: 0 0 300px;
    scroll-snap-align: start;
  }

  .quick-jump {
    flex-direction: column;
    align-items: center;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }

  .ft2-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .ft2-links {
    margin-bottom: 8px;
  }

  .ft2-socials a {
    padding: 8px;
  }

  /* AMC cards at 480px */
  .amc-card {
    flex: 0 0 85vw;
  }

  /* Industries — wider cards on small screens */
  .ind-card {
    flex: 0 0 85vw;
  }

  /* How We Work — wider cards on small screens */
  .hww-card {
    flex: 0 0 85vw;
  }

  /* Why Us — swipable on small screens */
  .whyus__grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 20px;
    scrollbar-width: none;
  }

  .whyus__grid::-webkit-scrollbar {
    display: none;
  }

  .whyus__item {
    flex: 0 0 280px;
    scroll-snap-align: start;
  }

  .whyus__title {
    font-size: 2rem;
  }

  /* Testimonials — wider cards on small screens */
  .testimonial-card {
    flex: 0 0 85vw;
  }

  /* Hero 480px refinements */
  .hero__content-split {
    padding: 90px 16px 60px;
  }

  .hero__title-main {
    font-size: 1.8rem;
  }

  .hero__panel {
    flex: 0 0 180px;
    height: 220px;
  }

  .hero__panel.active {
    flex: 0 0 180px;
  }

  .hero__panel-content {
    padding: 0 16px 16px;
  }

  .hero__panel-title {
    font-size: 0.85rem;
  }

  .hero__panel-num {
    font-size: 1.3rem;
  }

  .section__title {
    font-size: 1.5rem;
  }

  .trust-bar__number {
    font-size: 2rem;
  }

  /* Global Sourcing — wider cards on small screens */
  .gsrc__card {
    flex: 0 0 85vw;
  }

  .gsrc {
    padding: 64px 0 80px;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  /* About bento — horizontal swipable on small screens */
  .abt2__bento {
    display: flex;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    gap: 16px;
    padding-bottom: 12px;
    scrollbar-width: none;
  }

  .abt2__bento::-webkit-scrollbar {
    display: none;
  }

  .abt2__bento > * {
    flex: 0 0 85vw;
    scroll-snap-align: start;
  }

  .abt2__stats-col {
    flex: 0 0 85vw;
    scroll-snap-align: start;
  }
}

/* ========== CONTACT FORM — CLEAN MINIMAL (ctf-) ========== */
.ctf-section {
  background: #ffffff;
  padding: 100px 0 80px;
}

.ctf-headline {
  font-family: 'DM Serif Display', Georgia, serif;
  font-style: italic;
  font-weight: 400;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  line-height: 1.25;
  color: #21201e;
  max-width: 640px;
  margin-bottom: 48px;
}

.ctf-card {
  border: 1px solid rgba(33, 32, 30, 0.08);
  border-radius: 20px;
  padding: 48px;
}

.ctf-form {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.ctf-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.ctf-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.ctf-field label {
  font-family: 'Oxygen', 'Inter', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #646463;
}

.ctf-field input,
.ctf-field select,
.ctf-field textarea {
  font-family: 'Oxygen', 'Inter', sans-serif;
  font-size: 1rem;
  color: #21201e;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(33, 32, 30, 0.15);
  padding: 12px 0;
  outline: none;
  transition: border-color 0.3s ease;
  border-radius: 0;
  -webkit-appearance: none;
}

.ctf-field input::placeholder,
.ctf-field textarea::placeholder {
  color: rgba(33, 32, 30, 0.3);
}

.ctf-field input:focus,
.ctf-field select:focus,
.ctf-field textarea:focus {
  border-bottom-color: #f9612b;
}

.ctf-field select {
  cursor: pointer;
  background: transparent url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%23646463' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") no-repeat right 0 center;
}

.ctf-field textarea {
  resize: vertical;
  min-height: 80px;
}

.ctf-submit {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  align-self: flex-start;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  font-family: 'Archivo', 'Inter', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #21201e;
  transition: opacity 0.3s ease;
}

.ctf-submit:hover {
  opacity: 0.7;
}

.ctf-submit-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #21201e;
  color: #ffffff;
  flex-shrink: 0;
}

/* ========== FAQ SECTION (faq2-) ========== */
.faq2-section {
  background: #f5f4f0;
  padding: 80px 0 100px;
}

.faq2-header {
  display: flex;
  justify-content: center;
  margin-bottom: 56px;
}

.faq2-pill {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  background: #ffffff;
  border-radius: 60px;
  padding: 12px 28px 12px 14px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.faq2-pill-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, #f9612b 0%, #ff8a5c 100%);
  flex-shrink: 0;
}

.faq2-pill-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.faq2-pill-title {
  font-family: 'Archivo', 'Inter', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  color: #21201e;
}

.faq2-pill-sub {
  font-family: 'Oxygen', 'Inter', sans-serif;
  font-size: 0.8rem;
  color: #646463;
}

.faq2-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq2-item {
  border-bottom: 1px solid rgba(33, 32, 30, 0.1);
}

.faq2-item:first-child {
  border-top: 1px solid rgba(33, 32, 30, 0.1);
}

.faq2-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
  cursor: pointer;
  list-style: none;
  font-family: 'Archivo', 'Inter', sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: #21201e;
  line-height: 1.4;
  transition: color 0.3s ease;
}

.faq2-question::-webkit-details-marker {
  display: none;
}

.faq2-question::after {
  content: '+';
  flex-shrink: 0;
  margin-left: 20px;
  font-size: 1.4rem;
  font-weight: 300;
  color: #646463;
  transition: transform 0.3s ease;
}

.faq2-item[open] .faq2-question::after {
  content: '\2212';
}

.faq2-question:hover {
  color: #f9612b;
}

.faq2-answer {
  font-family: 'Oxygen', 'Inter', sans-serif;
  font-size: 0.95rem;
  line-height: 1.7;
  color: #646463;
  padding: 0 0 24px;
  max-width: 680px;
}

/* ========== PRE-FOOTER CTA (pfcta-) ========== */
.pfcta {
  background: #f5f4f0;
  padding: 80px 0;
  position: relative;
  z-index: 1;
}

.pfcta__inner {
  text-align: center;
}

.pfcta__tagline {
  display: block;
  font-family: 'Oxygen', 'Inter', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #646463;
  margin-bottom: 16px;
}

.pfcta__title {
  font-family: 'Archivo', 'Inter', sans-serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  line-height: 1.2;
  color: #21201e;
  margin-bottom: 36px;
}

.pfcta__actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.pfcta__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  border-radius: 60px;
  font-family: 'Archivo', 'Inter', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
}

.pfcta__btn--primary {
  background: #21201e;
  color: #ffffff;
}

.pfcta__btn--primary:hover {
  background: #f9612b;
  transform: translateY(-2px);
}

.pfcta__btn--outline {
  background: transparent;
  color: #21201e;
  border: 1.5px solid rgba(33, 32, 30, 0.25);
}

.pfcta__btn--outline:hover {
  border-color: #21201e;
  transform: translateY(-2px);
}

/* ========== RESPONSIVE — ctf, faq2, pfcta ========== */
@media (max-width: 768px) {
  /* --- Contact Form --- */
  .ctf-headline {
    font-size: 1.5rem;
    line-height: 1.3;
  }

  .ctf-card {
    padding: 28px 20px;
    border-radius: 16px;
  }

  .ctf-row {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .ctf-submit {
    align-self: center;
    width: 100%;
    justify-content: center;
  }

  .ctf-field input,
  .ctf-field select,
  .ctf-field textarea {
    font-size: 16px;
    max-width: 100%;
  }

  /* --- FAQ --- */
  .faq2-section {
    padding: 48px 0;
  }

  .faq2-pill {
    padding: 10px 22px 10px 10px;
    gap: 10px;
  }

  .faq2-pill-avatar {
    width: 34px;
    height: 34px;
  }

  .faq2-pill-title {
    font-size: 0.88rem;
  }

  .faq2-pill-sub {
    font-size: 0.75rem;
  }

  .faq2-question {
    font-size: 0.9rem;
    padding: 16px 20px;
  }

  .faq2-answer {
    padding: 0 20px 16px;
  }

  /* --- Pre-Footer CTA --- */
  .pfcta {
    padding: 48px 0;
  }

  .pfcta__title {
    font-size: 1.4rem;
  }

  .pfcta__actions {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }

  .pfcta__btn {
    width: 100%;
    text-align: center;
  }

  /* --- Footer social tap targets --- */
  .ft2-socials a {
    min-width: 44px;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .ctf-section {
    padding: 48px 0;
  }

  .ctf-card {
    padding: 20px 16px;
  }
}

/* ========== SOURCING MAP (Services page) ========== */
.sourcing-map {
  background: #fff;
}

.sourcing-map .sourcing__grid {
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

/* =============================================
   INDUSTRY DEEP-DIVES v3 — Pixora Minimal Style
   ============================================= */

.ind3-section {
  background: #fff;
  padding: 100px 0;
}

.ind3-header {
  text-align: center;
  margin-bottom: 64px;
}

.ind3-tagline {
  display: inline-block;
  font-family: 'Oxygen', 'Inter', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #f9612b;
  margin-bottom: 16px;
}

.ind3-title {
  font-family: 'Archivo', 'Inter', sans-serif;
  font-size: 2.4rem;
  font-weight: 800;
  color: #21201e;
  line-height: 1.2;
  margin: 0;
}

/* --- Industry block --- */
.ind3-block {
  border-top: 1px solid rgba(33, 32, 30, 0.06);
  padding: 48px 0;
}

.ind3-block:last-child {
  padding-bottom: 0;
}

/* --- Block header row --- */
.ind3-block__head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 32px;
  margin-bottom: 40px;
}

.ind3-block__name {
  font-family: 'Archivo', 'Inter', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  color: #21201e;
  margin: 0;
  white-space: nowrap;
}

.ind3-block__tagline {
  font-family: 'Oxygen', 'Inter', sans-serif;
  font-size: 1rem;
  color: #646463;
  line-height: 1.5;
  margin: 0;
  text-align: right;
  max-width: 480px;
}

/* --- 3-column content row --- */
.ind3-block__content {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* --- Accordion container --- */
.ind3-accordion {
  width: 100%;
}

.ind3-acc-item {
  border-bottom: 1px solid rgba(33, 32, 30, 0.08);
}

.ind3-acc-item:last-child {
  border-bottom: none;
}

/* Trigger row */
.ind3-acc-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  cursor: pointer;
  list-style: none;
  user-select: none;
}

.ind3-acc-trigger::-webkit-details-marker {
  display: none;
}

.ind3-acc-title {
  font-family: 'Archivo', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: #21201e;
  letter-spacing: 0.01em;
}

/* Plus/minus circle icon */
.ind3-acc-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1.5px solid rgba(33, 32, 30, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
  transition: all 0.3s ease;
}

.ind3-acc-icon::before,
.ind3-acc-icon::after {
  content: '';
  position: absolute;
  background: #21201e;
  transition: transform 0.3s ease;
}

.ind3-acc-icon::before {
  width: 12px;
  height: 1.5px;
}

.ind3-acc-icon::after {
  width: 1.5px;
  height: 12px;
}

/* When open: rotate vertical line to form minus */
.ind3-acc-item[open] .ind3-acc-icon::after {
  transform: rotate(90deg);
}

.ind3-acc-item[open] .ind3-acc-icon {
  border-color: #f9612b;
  background: rgba(249, 97, 43, 0.06);
}

.ind3-acc-item[open] .ind3-acc-icon::before,
.ind3-acc-item[open] .ind3-acc-icon::after {
  background: #f9612b;
}

/* Accordion body */
.ind3-acc-body {
  padding: 0 0 24px;
}

.ind3-acc-body .ind3-list {
  columns: 2;
  column-gap: 32px;
}

/* --- Machine list columns (legacy, kept for reference) --- */
.ind3-col__heading {
  font-family: 'Archivo', 'Inter', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  color: #21201e;
  padding-bottom: 8px;
  margin-bottom: 12px;
  border-bottom: 2px solid #f9612b;
  display: inline-block;
}

.ind3-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.ind3-list li {
  position: relative;
  padding-left: 18px;
  font-family: 'Oxygen', 'Inter', sans-serif;
  font-size: 0.88rem;
  color: #646463;
  line-height: 1.65;
  margin-bottom: 6px;
}

.ind3-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 9px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #f9612b;
}

/* --- CDSCO note --- */
.ind3-note {
  font-family: 'Oxygen', 'Inter', sans-serif;
  font-size: 0.82rem;
  color: #646463;
  font-style: italic;
  margin-top: 16px;
}

/* --- Dark card (sourcing countries) --- */
.ind3-dark-card {
  background: #0f1117;
  border-radius: 16px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 280px;
}

.ind3-dark-card__label {
  font-family: 'Archivo', 'Inter', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 20px;
}

.ind3-dark-card__pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
  flex-grow: 1;
  align-content: flex-start;
}

.ind3-pill {
  font-family: 'Oxygen', 'Inter', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
  padding: 6px 14px;
  border-radius: 100px;
  white-space: nowrap;
}

.ind3-dark-card__cta {
  font-family: 'Archivo', 'Inter', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: #f9612b;
  text-decoration: none;
  display: inline-block;
  transition: color 0.2s ease;
}

.ind3-dark-card__cta:hover {
  color: #ffb199;
  text-decoration: underline;
}

/* --- Responsive --- */
@media (max-width: 768px) {
  .ind3-section {
    padding: 60px 0;
  }

  .ind3-title {
    font-size: 1.8rem;
  }

  .ind3-block__head {
    flex-direction: column;
    gap: 8px;
  }

  .ind3-block__name {
    font-size: 1.4rem;
  }

  .ind3-block__tagline {
    text-align: left;
    max-width: 100%;
  }

  .ind3-block__content {
    gap: 24px;
  }

  .ind3-dark-card {
    min-height: auto;
    width: 100%;
  }

  /* Machine lists single column on mobile */
  .ind3-list {
    columns: 1;
  }

  .ind3-acc-body .ind3-list {
    columns: 1;
  }

  .ind3-acc-trigger {
    padding: 16px 0;
  }

  .ind3-acc-title {
    font-size: 0.95rem;
  }
}

/* --- ind3 480px refinements --- */
@media (max-width: 480px) {
  .ind3-block {
    padding: 32px 0;
  }

  .ind3-col__heading {
    font-size: 0.85rem;
  }

  .ind3-list li {
    font-size: 0.82rem;
  }
}

/* =============================================
   SERVICES PAGE — ELEMENTRA THEME OVERRIDES
   Prefixed with svc- to avoid conflicts with homepage
   ============================================= */

/* ---------- Elementra Design Tokens ---------- */
.svc-page {
  --svc-cream: #f6f5ef;
  --svc-dark: #21201e;
  --svc-muted: #646463;
  --svc-orange: #f9612b;
  --svc-white: #ffffff;
  --svc-font-heading: 'Archivo', 'Inter', sans-serif;
  --svc-font-body: 'Oxygen', 'Inter', sans-serif;
}

/* ---------- Page-level overrides ---------- */
.svc-page {
  background: var(--svc-cream);
}

/* ---------- Hero Section ---------- */
.svc-hero {
  background: var(--svc-white) !important;
  padding: 160px 0 80px !important;
  text-align: center;
}

.svc-hero__tagline {
  display: inline-block;
  font-family: var(--svc-font-body);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--svc-orange);
  margin-bottom: 16px;
}

.svc-hero__title {
  font-family: var(--svc-font-heading) !important;
  color: var(--svc-dark) !important;
  font-weight: 700 !important;
  font-size: clamp(2.2rem, 5vw, 3.4rem) !important;
  line-height: 1.15 !important;
  margin-bottom: 16px !important;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

.svc-hero__subtitle {
  font-family: var(--svc-font-body) !important;
  color: var(--svc-muted) !important;
  font-size: 1.1rem !important;
  line-height: 1.7;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 36px !important;
}

.svc-hero__links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 24px;
}

.svc-hero__link {
  background: transparent !important;
  border: none !important;
  padding: 8px 0 !important;
  border-radius: 0 !important;
  font-family: var(--svc-font-body) !important;
  font-size: 0.95rem !important;
  font-weight: 400 !important;
  color: var(--svc-muted) !important;
  position: relative;
  transition: color 0.25s ease !important;
}

.svc-hero__link::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 4px;
  width: 0;
  height: 2px;
  background: var(--svc-orange);
  transition: width 0.25s ease;
}

.svc-hero__link:hover {
  color: var(--svc-orange) !important;
  background: transparent !important;
  border-color: transparent !important;
}

.svc-hero__link:hover::after {
  width: 100%;
}

/* ---------- Services Grid Section ---------- */
.svc-services {
  background: var(--svc-cream) !important;
  padding: 80px 0 100px;
}

.svc-section__title {
  font-family: var(--svc-font-heading) !important;
  color: var(--svc-dark) !important;
  font-weight: 700 !important;
  font-size: clamp(1.75rem, 4vw, 2.4rem) !important;
}

.svc-grid {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 40px 32px !important;
  margin-top: 56px !important;
}

/* ---------- Service Card — Elementra Style ---------- */
.svc-card {
  background: transparent !important;
  border: none !important;
  border-radius: 0 !important;
  padding: 0 !important;
  box-shadow: none !important;
}

.svc-card:hover {
  transform: none !important;
  box-shadow: none !important;
  border-color: transparent !important;
}

/* Hide old numbered badge and problem text */
.svc-card .service-card__num,
.svc-card .service-card__problem {
  display: none;
}

/* Image placeholder area */
.svc-card__img {
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 16px;
  background: linear-gradient(145deg, #e8e7e0 0%, #d5d4cc 50%, #c9c8c0 100%);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}

.svc-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
}

.svc-card__icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--svc-font-heading);
  font-size: 2.5rem;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.7);
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
  user-select: none;
  z-index: 1;
}

.svc-card__heading {
  font-family: var(--svc-font-heading) !important;
  font-size: 1.2rem !important;
  font-weight: 700 !important;
  color: var(--svc-dark) !important;
  margin-bottom: 8px !important;
  line-height: 1.3;
}

.svc-card__desc {
  font-family: var(--svc-font-body) !important;
  font-size: 0.92rem !important;
  color: var(--svc-muted) !important;
  line-height: 1.65 !important;
}

/* ---------- Industry Blocks — Orange accent tags ---------- */
.svc-page .industry-block__tag {
  background: rgba(249, 97, 43, 0.12);
  color: var(--svc-orange);
}

/* ---------- Responsive — Services Page ---------- */
@media (max-width: 1024px) {
  .svc-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 32px 28px !important;
  }
}

@media (max-width: 768px) {
  .svc-hero {
    padding: 120px 0 48px !important;
  }

  .svc-hero__title {
    font-size: clamp(1.8rem, 5vw, 2.4rem) !important;
  }

  .svc-hero__links {
    flex-direction: column;
    align-items: center;
    gap: 4px;
  }

  /* Services grid — horizontal swipable */
  .svc-grid {
    display: flex !important;
    overflow-x: auto !important;
    scroll-snap-type: x mandatory !important;
    gap: 20px !important;
    scrollbar-width: none !important;
    margin-top: 40px !important;
  }
  .svc-grid::-webkit-scrollbar {
    display: none;
  }
  .svc-card {
    flex: 0 0 280px !important;
    scroll-snap-align: start;
  }
}

@media (max-width: 480px) {
  .svc-card {
    flex: 0 0 85vw !important;
  }

  .svc-card__img {
    aspect-ratio: 16 / 10;
  }
}

/* ========== MOBILE SWIPE UTILITIES ========== */
.swipe-x {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}
.swipe-x::-webkit-scrollbar { display: none; }
.swipe-x > * { scroll-snap-align: start; }

/* Prevent iOS zoom on input focus */
@media (max-width: 768px) {
  input, select, textarea {
    font-size: 16px !important;
  }
}
