/* ===========================================================
   SWAMI POLYMERS — "Lucent Layers" B2B Theme
   =========================================================== */

:root {
  --bg: #f6f5f1;
  --bg-soft: #eeece5;
  --surface: #ffffff;
  --surface-2: #faf9f6;
  --ink: #0a0e1a;
  --ink-2: #1a2236;
  --ink-3: #2a3349;

  --text: #1c1f2a;
  --text-soft: #4a5060;
  --text-mute: #767c8c;
  --text-faint: #a0a4b0;

  --line: rgba(10, 14, 26, 0.08);
  --line-soft: rgba(10, 14, 26, 0.05);
  --line-strong: rgba(10, 14, 26, 0.14);

  --accent: #c89968;
  --accent-2: #b07d4c;
  --accent-soft: #f4e9d8;
  --accent-faint: rgba(200, 153, 104, 0.12);

  --glass-bg: rgba(255, 255, 255, 0.55);
  --glass-bg-strong: rgba(255, 255, 255, 0.72);
  --glass-border: rgba(255, 255, 255, 0.6);
  --glass-shadow: 0 1px 0 rgba(255, 255, 255, 0.8) inset, 0 8px 24px -8px rgba(10, 14, 26, 0.08), 0 24px 48px -16px rgba(10, 14, 26, 0.08);

  --r-sm: 10px;
  --r-md: 16px;
  --r-lg: 22px;
  --r-xl: 28px;
  --r-2xl: 36px;
  --r-full: 999px;

  --f-display: "Plus Jakarta Sans", "Inter", system-ui, sans-serif;
  --f-body: "Inter", system-ui, sans-serif;
  --f-mono: "JetBrains Mono", ui-monospace, monospace;

  --header-h: 100px;
  --header-w: 1280px;

  --container: 1280px;
  --pad: 24px;
}

*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--f-body);
  font-size: 16px;
  line-height: 1.55;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  font-feature-settings: "ss01", "cv11";
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
input, textarea, select { font: inherit; color: inherit; }
ul { padding: 0; margin: 0; list-style: none; }

/* ---------- Ambient Background ---------- */
.ambient {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  overflow: hidden;
  background:
    radial-gradient(at 0% 0%, rgba(255, 250, 240, 1) 0%, transparent 50%),
    radial-gradient(at 100% 0%, rgba(244, 233, 216, 0.4) 0%, transparent 50%),
    var(--bg);
}
.ambient-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.5;
  animation: float 18s ease-in-out infinite;
}
.ambient-orb--1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(200, 153, 104, 0.35), transparent 70%);
  top: -200px; right: -100px;
}
.ambient-orb--2 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(180, 200, 220, 0.35), transparent 70%);
  bottom: -150px; left: -100px;
  animation-delay: -6s;
}
.ambient-orb--3 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(220, 220, 240, 0.4), transparent 70%);
  top: 40%; left: 50%;
  animation-delay: -12s;
}
.ambient-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, rgba(10, 14, 26, 0.03) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(10, 14, 26, 0.03) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 30%, black 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 30%, black 30%, transparent 80%);
}
@keyframes float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(30px, -30px) scale(1.05); }
  66% { transform: translate(-20px, 20px) scale(0.95); }
}

/* ---------- Container ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--pad);
}

/* ============================================================
   FLOATING GLASSMORPHISM HEADER
   - Default: floating glass pill INSIDE the hero (top: 16px)
   - On scroll: morphs to a full-width sticky bar that the page
     content slides UNDER (z-index 1000, opaque background)
   ============================================================ */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 16px var(--pad) 0;
  pointer-events: none;
  transition: padding 0.4s cubic-bezier(0.4, 0, 0.2, 1),
              background 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.header > .header-inner { pointer-events: auto; }

/* Floating glass pill — used on home above hero */
.header--floating {
  background: transparent;
  border-bottom: 0;
}
.header--floating .header-inner {
  background: rgba(255, 255, 255, 0.22);
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: var(--r-full);
  padding: 10px 10px 10px 26px;
  backdrop-filter: blur(28px) saturate(200%);
  -webkit-backdrop-filter: blur(28px) saturate(200%);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.5) inset,
    0 16px 40px -8px rgba(10, 14, 26, 0.2),
    0 2px 4px rgba(10, 14, 26, 0.04);
  max-width: 1280px;
  width: 100%;
  height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

/* Scrolled state — full-width sticky solid bar (sections slide UNDER this) */
.header.is-scrolled,
.header--scrolled {
  top: 0;
  background: rgba(248, 247, 243, 0.98);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.5) inset, 0 8px 24px -8px rgba(10, 14, 26, 0.12);
  padding: 0 var(--pad);
  align-items: center;
  pointer-events: auto;
  height: var(--header-h);
}
.header.is-scrolled .header-inner,
.header--scrolled .header-inner {
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  padding: 0;
  margin-top: 0;
  max-width: var(--container);
  width: 100%;
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

/* Smooth transition for inner container */
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Brand */
.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
}
.brand-mark {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: white;
  position: relative;
  display: grid;
  place-items: center;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  flex-shrink: 0;
  box-shadow: 0 4px 12px -2px rgba(10, 14, 26, 0.08), 0 1px 0 rgba(255, 255, 255, 0.8) inset;
  border: 2px solid white;
}
.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 50%;
}
.header.is-scrolled .brand-mark,
.header--scrolled .brand-mark { width: 48px; height: 48px; }
.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.brand-name {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 18px;
  color: #1a8078;
  letter-spacing: -0.4px;
}
.brand-sub {
  font-family: var(--f-mono);
  font-size: 11px;
  color: #1a8078;
  opacity: 0.7;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-top: 3px;
}
.header--floating .brand-name { color: #1a8078; }
.header--floating .brand-sub { color: #1a8078; opacity: 0.7; }

/* Nav */
.nav {
  display: flex;
  align-items: center;
  gap: 2px;
  background: transparent;
  border: 0;
  border-radius: 999px;
  padding: 0;
  backdrop-filter: none;
}
.header--floating .nav {
  background: rgba(255, 255, 255, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.4);
  padding: 6px;
  backdrop-filter: blur(8px);
}
.nav-link {
  font-size: 15px;
  font-weight: 500;
  color: var(--text-soft);
  padding: 11px 20px;
  border-radius: 999px;
  transition: all 0.2s ease;
}
.header--floating .nav-link { color: var(--ink); }
.nav-link:hover {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.6);
}
.nav-link.active {
  background: var(--ink);
  color: white;
  box-shadow: 0 2px 8px rgba(10, 14, 26, 0.15);
}

/* Header Actions */
.header-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

/* Buttons */
.btn-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 24px;
  font-size: 14.5px;
  font-weight: 500;
  border-radius: 999px;
  transition: all 0.25s ease;
  white-space: nowrap;
  border: 1px solid transparent;
  font-family: var(--f-body);
  line-height: 1;
}
.btn-pill--primary {
  background: var(--ink);
  color: white;
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.1) inset, 0 4px 12px -2px rgba(10, 14, 26, 0.25);
}
.btn-pill--primary:hover {
  background: #000;
  transform: translateY(-1px);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.1) inset, 0 8px 20px -4px rgba(10, 14, 26, 0.3);
}
.btn-pill--ghost {
  background: rgba(255, 255, 255, 0.95);
  color: var(--ink);
  border-color: rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(8px);
}
.btn-pill--ghost:hover {
  background: white;
  border-color: rgba(255, 255, 255, 0.6);
  transform: translateY(-1px);
}
.btn-pill--dark {
  background: var(--ink);
  color: white;
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.1) inset, 0 6px 16px -4px rgba(10, 14, 26, 0.25);
}
.btn-pill--dark:hover {
  background: #000;
  transform: translateY(-1px);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.1) inset, 0 10px 24px -4px rgba(10, 14, 26, 0.3);
}
.btn-pill--inverse {
  background: white;
  color: var(--ink);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.1) inset, 0 4px 12px -2px rgba(0, 0, 0, 0.2);
}
.btn-pill--inverse:hover { transform: translateY(-1px); }
.btn-pill--ghost-inverse {
  background: transparent;
  color: white;
  border-color: rgba(255, 255, 255, 0.25);
}
.btn-pill--ghost-inverse:hover { background: rgba(255, 255, 255, 0.1); }
.btn-pill--lg {
  padding: 14px 24px;
  font-size: 14.5px;
}

/* Mobile menu button */
.menu-btn {
  display: none;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.5);
  border: 1px solid var(--line);
  position: relative;
  transition: all 0.2s;
}
.menu-btn:hover { background: white; }
.menu-btn span {
  position: absolute;
  left: 11px; right: 11px;
  height: 1.5px;
  background: var(--ink);
  border-radius: 1px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.menu-btn span:nth-child(1) { top: 15px; }
.menu-btn span:nth-child(2) { top: 21px; }
.menu-btn.is-open span:nth-child(1) { top: 21px; transform: rotate(45deg); }
.menu-btn.is-open span:nth-child(2) { top: 21px; transform: rotate(-45deg); }

/* Mobile nav overlay */
.mobile-nav {
  position: fixed;
  inset: 0;
  z-index: 99;
  background: rgba(246, 245, 241, 0.96);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 80px 24px 40px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
}
.mobile-nav.is-open { opacity: 1; visibility: visible; }
.mobile-nav a {
  font-family: var(--f-display);
  font-size: 28px;
  font-weight: 600;
  color: var(--ink);
  padding: 12px 24px;
  border-radius: 12px;
  transition: background 0.2s;
}
.mobile-nav a:hover, .mobile-nav a.active { background: rgba(0, 0, 0, 0.04); }
body.menu-open { overflow: hidden; }

/* ============================================================
   HERO CAROUSEL — 2 BANNERS
   - Full-bleed background image at 100vh
   - Floating glass header is a SIBLING, not a child
   - Left-aligned text content
   ============================================================ */
.hero-carousel {
  position: relative;
  height: 100vh;
  min-height: 100vh;
  max-height: 100vh;
  overflow: hidden;
  background: var(--bg);
  z-index: 1;
}

.hc-slide {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transform: translateX(40px);
  transition: opacity 0.9s cubic-bezier(0.65, 0, 0.35, 1),
              transform 1s cubic-bezier(0.65, 0, 0.35, 1),
              visibility 0s linear 0.9s;
  will-change: opacity, transform;
}
.hc-slide.hc-slide--active {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
  transition: opacity 0.9s cubic-bezier(0.65, 0, 0.35, 1),
              transform 1s cubic-bezier(0.65, 0, 0.35, 1),
              visibility 0s linear 0s;
  z-index: 2;
}
.hc-slide.hc-slide--exit-left {
  transform: translateX(-40px);
}

.hc-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}
.hc-bg img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(1.05) contrast(1.08) brightness(0.95);
  transform: scale(1.05);
  transition: transform 8s ease-out;
}
.hc-slide--active .hc-bg img {
  transform: scale(1);
}

/* Subtle dark tint overlay — 15% black, no whitish fade */
.hc-bg-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.15);
}

.hc-inner {
  position: relative;
  z-index: 3;
  padding: 120px 0 200px;
  width: 100%;
}
.hc-content {
  max-width: 720px;
  position: relative;
  text-align: left;
  width: 100%;
}

.hc-slide .hc-content > * {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s cubic-bezier(0.2, 0.7, 0.2, 1),
              transform 0.7s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.hc-slide.hc-slide--active .hc-content > * {
  opacity: 1;
  transform: translateY(0);
}
.hc-slide.hc-slide--active .hc-content > *:nth-child(1) { transition-delay: 0.15s; }
.hc-slide.hc-slide--active .hc-content > *:nth-child(2) { transition-delay: 0.25s; }
.hc-slide.hc-slide--active .hc-content > *:nth-child(3) { transition-delay: 0.35s; }
.hc-slide.hc-slide--active .hc-content > *:nth-child(4) { transition-delay: 0.45s; }

/* Chip */
.chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 14px 7px 10px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-soft);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 2px 8px -2px rgba(0, 0, 0, 0.2);
}
.chip-dot {
  width: 7px; height: 7px;
  background: var(--accent);
  border-radius: 50%;
  position: relative;
}
.chip-dot::after {
  content: "";
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  background: var(--accent);
  opacity: 0.3;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 0.3; }
  50% { transform: scale(1.5); opacity: 0; }
}

.hc-title {
  font-family: var(--f-display);
  font-size: clamp(32px, 6vw, 78px);
  line-height: 1.05;
  letter-spacing: -0.04em;
  font-weight: 700;
  color: white;
  margin: 20px 0 20px;
  text-align: left;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.3);
  word-wrap: break-word;
  overflow-wrap: break-word;
}
.hc-title em {
  font-style: italic;
  font-weight: 500;
  color: #e0bf95;
  font-family: "Plus Jakarta Sans", Georgia, serif;
}

.hc-desc {
  font-size: 17.5px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.88);
  max-width: 540px;
  margin: 0 0 36px;
  text-align: left;
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.3);
}

.hc-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: flex-start;
}

/* Trust bar at bottom of hero */
.hc-trust-bar {
  position: absolute;
  bottom: 110px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 4;
  display: inline-flex;
  align-items: center;
  gap: 0;
  padding: 16px 28px;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 999px;
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.8) inset, 0 12px 32px -8px rgba(0, 0, 0, 0.3);
  width: max-content;
  max-width: calc(100% - 48px);
}
.hc-trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 18px;
}
.hc-trust-item strong {
  font-family: var(--f-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.02em;
  line-height: 1;
}
.hc-trust-item span {
  font-family: var(--f-mono);
  font-size: 10px;
  color: var(--text-mute);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-top: 4px;
  text-align: center;
  white-space: nowrap;
}
.hc-trust-divider {
  width: 1px;
  height: 24px;
  background: var(--line);
}

/* Carousel controls (bottom edge) */
.hc-controls {
  position: absolute;
  bottom: 36px;
  left: 0; right: 0;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 var(--pad);
  max-width: var(--container);
  margin: 0 auto;
  pointer-events: none;
}
.hc-controls > * { pointer-events: auto; }

.hc-dots {
  display: flex;
  gap: 8px;
}
.hc-dot {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  height: 32px;
  padding: 0 14px;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 999px;
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  font-family: var(--f-mono);
  font-size: 11px;
  font-weight: 500;
  color: var(--text-mute);
  cursor: pointer;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.7) inset, 0 2px 8px -2px rgba(0, 0, 0, 0.2);
  letter-spacing: 0.5px;
}
.hc-dot:hover { background: white; }
.hc-dot-num { z-index: 2; position: relative; }
.hc-dot--active {
  background: var(--ink);
  color: white;
  border-color: var(--ink);
  min-width: 52px;
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.1) inset, 0 4px 12px -2px rgba(10, 14, 26, 0.25);
}
.hc-dot--active .hc-dot-num { color: var(--accent); }
.hc-dot-progress {
  position: absolute;
  left: 0; bottom: 0;
  height: 2px;
  width: 0;
  background: var(--accent);
  border-radius: 0 999px 999px 0;
}
.hc-dot--active .hc-dot-progress {
  animation: dotProgress 6s linear forwards;
}
@keyframes dotProgress {
  from { width: 0; }
  to { width: 100%; }
}

.hc-arrows {
  display: flex;
  gap: 8px;
}
.hc-arrow {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  color: var(--ink);
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: all 0.25s ease;
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.7) inset, 0 4px 12px -2px rgba(0, 0, 0, 0.2);
}
.hc-arrow:hover {
  background: var(--ink);
  color: white;
  border-color: var(--ink);
  transform: translateY(-1px);
  box-shadow: 0 6px 16px -4px rgba(10, 14, 26, 0.25);
}
.hc-arrow:active { transform: translateY(0); }

/* ============================================================
   ABOUT US SECTION — directly under header
   ============================================================ */
.about-section {
  padding: 100px 0 100px;
  margin-top: 0;
  position: relative;
  /* No z-index — let it sit at default so the header (z-index 1000) is always on top */
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: center;
}
.about-visual {
  position: relative;
  border-radius: var(--r-2xl);
  overflow: hidden;
  box-shadow: 0 24px 64px -16px rgba(10, 14, 26, 0.18), 0 1px 0 rgba(255, 255, 255, 0.8) inset;
  border: 1px solid var(--glass-border);
  aspect-ratio: 4 / 5;
  background: var(--bg-soft);
}
.about-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.92) contrast(1.05);
  transition: transform 0.8s;
}
.about-visual:hover img { transform: scale(1.04); }
.about-visual-badge {
  position: absolute;
  bottom: 24px;
  right: 24px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border: 1px solid var(--glass-border);
  border-radius: var(--r-lg);
  padding: 18px 24px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 8px 24px -4px rgba(10, 14, 26, 0.15);
}
.about-visual-badge-num {
  font-family: var(--f-display);
  font-size: 38px;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.04em;
  line-height: 1;
}
.about-visual-badge-label {
  font-family: var(--f-mono);
  font-size: 10.5px;
  font-weight: 500;
  color: var(--text-mute);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  line-height: 1.3;
}

.about-content { max-width: 560px; }
.about-content .eyebrow { margin-bottom: 20px; }
.about-content .h-display { margin: 0 0 20px; }
.about-lead {
  font-size: 17px;
  line-height: 1.6;
  color: var(--text);
  font-weight: 500;
  margin: 0 0 16px;
}
.about-content p {
  font-size: 15.5px;
  line-height: 1.7;
  color: var(--text-soft);
  margin: 0 0 28px;
}
.about-features {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin: 0 0 32px;
  padding: 24px;
  background: var(--glass-bg-strong);
  border: 1px solid var(--glass-border);
  border-radius: var(--r-lg);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  box-shadow: var(--glass-shadow);
}
.about-feature {
  display: flex;
  align-items: center;
  gap: 14px;
}
.about-feature-icon {
  width: 32px; height: 32px;
  border-radius: 8px;
  background: var(--accent-faint);
  color: var(--accent-2);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.about-feature strong {
  display: block;
  font-family: var(--f-display);
  font-size: 14.5px;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.about-feature span {
  display: block;
  font-size: 13px;
  color: var(--text-mute);
  margin-top: 2px;
}

/* ============================================================
   SECTIONS
   ============================================================ */
.section {
  padding: 80px 0;
  position: relative;
  z-index: 1;
}
.section-alt {
  background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.4) 30%, rgba(255, 255, 255, 0.4) 70%, transparent);
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
  z-index: 2;
}

.section-head {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 40px;
  align-items: end;
  margin-bottom: 64px;
}
.section-head-left { max-width: 720px; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--f-mono);
  font-size: 11.5px;
  font-weight: 500;
  color: var(--text-soft);
  text-transform: uppercase;
  letter-spacing: 1.2px;
  margin-bottom: 18px;
}
.eyebrow span {
  display: inline-block;
  width: 18px;
  height: 1px;
  background: var(--accent);
}
.eyebrow--inverse { color: rgba(255, 255, 255, 0.7); }
.eyebrow--inverse span { background: var(--accent); }

.h-display {
  font-family: var(--f-display);
  font-size: clamp(32px, 4.5vw, 56px);
  line-height: 1.05;
  letter-spacing: -0.035em;
  font-weight: 700;
  color: var(--ink);
  margin: 0;
}
.h-display em {
  font-style: italic;
  font-weight: 500;
  color: var(--accent);
  font-family: "Plus Jakarta Sans", Georgia, serif;
}

.section-head-desc {
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-soft);
  margin: 0;
  max-width: 480px;
}

/* ---------- Stats Grid ---------- */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.stat-card {
  padding: 28px;
  background: var(--glass-bg-strong);
  border: 1px solid var(--glass-border);
  border-radius: var(--r-lg);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  box-shadow: var(--glass-shadow);
  transition: transform 0.3s, box-shadow 0.3s;
  position: relative;
  overflow: hidden;
}
.stat-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.8), transparent);
}
.stat-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.8) inset, 0 12px 32px -8px rgba(10, 14, 26, 0.12);
}
.stat-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  display: grid;
  place-items: center;
  color: var(--ink);
  margin-bottom: 24px;
}
.stat-value {
  font-family: var(--f-display);
  font-size: 44px;
  line-height: 1;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.04em;
  margin-bottom: 6px;
}
.stat-label {
  font-size: 14px;
  color: var(--text-soft);
  font-weight: 500;
}

/* ---------- INDUSTRIES INFINITE SLIDER (with dots) ---------- */
.section-industries { position: relative; }

.industries-slider {
  position: relative;
  margin-top: 8px;
}

/* Left/Right nav buttons */
.ind-nav {
  position: absolute;
  top: 200px;
  z-index: 10;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  color: var(--ink);
  display: grid;
  place-items: center;
  cursor: pointer;
  z-index: 5;
  transition: all 0.25s ease;
  box-shadow: 0 4px 16px -4px rgba(10, 14, 26, 0.15), 0 1px 0 rgba(255, 255, 255, 0.7) inset;
  transition: opacity 0.3s ease, transform 0.25s ease, background 0.25s ease;
}
.ind-nav--prev { left: -8px; }
.ind-nav--next { right: -8px; }
@media (max-width: 600px) {
  .ind-nav--prev { left: 4px; }
  .ind-nav--next { right: 4px; }
  .ind-nav { width: 42px; height: 42px; border-radius: 12px; }
  .ind-nav svg { width: 16px; height: 16px; }
}
.ind-nav:hover {
  background: var(--ink);
  color: white;
  border-color: var(--ink);
  /* No translateY / no scale on hover — just color change */
  box-shadow: 0 8px 24px -4px rgba(10, 14, 26, 0.3);
}

.ind-nav.ind-nav--hidden { opacity: 0; pointer-events: none; }

.industries-slider-track {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 8px 0 24px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.industries-slider-track::-webkit-scrollbar { display: none; }

/* Each slide is clickable (using data-id) */
.ind-slide {
  position: relative;
  flex: 0 0 calc((100% - 32px) / 3);
  min-width: 320px;
  height: 440px;
  border-radius: var(--r-xl);
  overflow: hidden;
  background: var(--ink);
  border: 1px solid var(--glass-border);
  box-shadow: var(--glass-shadow);
  cursor: pointer;
  scroll-snap-align: start;
  /* NO hover-up animation on cards */
  transition: box-shadow 0.4s ease;
  isolation: isolate;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
}
.ind-slide::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.9), transparent);
  z-index: 3;
}
.ind-slide:hover {
  /* Subtle border highlight only — no translate */
  box-shadow: 0 8px 32px -8px rgba(10, 14, 26, 0.25),
              0 0 0 1px rgba(200, 153, 104, 0.3);
}

/* Uniform cards — ALL slides same size (no --feature variant) */
.ind-slide--feature {
  flex: 0 0 calc((100% - 32px) / 3);
  min-width: 320px;
}
.ind-slide--feature .ind-slide-image { height: 220px; }
.ind-slide--feature .ind-slide-content { min-height: 220px; }
.ind-slide--feature .ind-slide-content h3 { font-size: 21px; }

.ind-slide-image {
  position: relative;
  height: 220px;
  background: #1a1a1a;
  overflow: hidden;
  flex-shrink: 0;
}
.ind-slide-image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.05) contrast(1.08) brightness(0.85);
  /* No image scale on hover (no hover-up effect) */
  transition: none;
}
.ind-slide:hover .ind-slide-image img { transform: none; }
.ind-slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.2) 0%, transparent 30%, transparent 50%, rgba(0,0,0,0.7) 100%);
  pointer-events: none;
  z-index: 1;
}
.ind-slide-icon {
  position: absolute;
  top: 18px; right: 18px;
  width: 42px; height: 42px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.4);
  display: grid;
  place-items: center;
  color: var(--ink);
  z-index: 3;
  /* No scale / rotate on hover */
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}
.ind-slide:hover .ind-slide-icon {
  background: var(--accent);
  color: white;
  border-color: var(--accent);
  transform: none;
}

/* Slide content */
.ind-slide-content {
  position: relative;
  z-index: 2;
  padding: 22px 24px 22px;
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
  background: var(--ink);
  color: white;
  min-height: 200px;
}
.ind-slide-content h3 {
  font-family: var(--f-display);
  font-size: 22px;
  font-weight: 700;
  color: white;
  margin: 0 0 6px;
  letter-spacing: -0.025em;
  line-height: 1.2;
}
.ind-slide-content p {
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.75);
  margin: 0 0 14px;
  line-height: 1.5;
}
.ind-slide-stats {
  display: flex;
  gap: 12px;
  margin-bottom: 14px;
}
.ind-slide-stats > div {
  display: flex;
  flex-direction: column;
  padding: 8px 12px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
}
.ind-slide-stats strong {
  font-family: var(--f-display);
  font-size: 14px;
  font-weight: 700;
  color: white;
  letter-spacing: -0.02em;
  line-height: 1;
}
.ind-slide-stats span {
  font-family: var(--f-mono);
  font-size: 9px;
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-top: 3px;
}
.ind-slide-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin-top: auto;
}
.ind-slide-tags span {
  display: inline-block;
  font-family: var(--f-mono);
  font-size: 10px;
  font-weight: 500;
  color: white;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 4px 9px;
  border-radius: 999px;
  letter-spacing: 0.3px;
}

/* Indicator dots (no numbers) */
.ind-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 8px;
}
.ind-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--line);
  border: none;
  padding: 0;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.ind-dot:hover {
  background: var(--text-mute);
  transform: scale(1.3);
}
.ind-dot.is-active {
  background: var(--accent);
  width: 28px;
  border-radius: 999px;
}

/* ---------- Tabs ---------- */
.tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  background: rgba(255, 255, 255, 0.5);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 6px;
  margin-bottom: 32px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  max-width: 100%;
}
.tab {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 9px 16px;
  font-size: 13.5px;
  font-weight: 500;
  color: var(--text-soft);
  border-radius: 999px;
  transition: all 0.2s;
  white-space: nowrap;
  flex-shrink: 0;
}
.tab:hover { color: var(--ink); }
.tab.active {
  background: var(--ink);
  color: white;
  box-shadow: 0 2px 8px rgba(10, 14, 26, 0.15);
}
.tab-count {
  font-family: var(--f-mono);
  font-size: 10.5px;
  padding: 2px 7px;
  background: rgba(0, 0, 0, 0.08);
  border-radius: 999px;
}
.tab.active .tab-count { background: rgba(255, 255, 255, 0.15); color: rgba(255, 255, 255, 0.9); }

/* ---------- Product Grid ---------- */
.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

/* Creative Product Card */
.prod-card {
  position: relative;
  background: var(--glass-bg-strong);
  border: 1px solid var(--glass-border);
  border-radius: var(--r-xl);
  overflow: hidden;
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  box-shadow: var(--glass-shadow);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1),
              box-shadow 0.4s cubic-bezier(0.4, 0, 0.2, 1),
              border-color 0.4s ease;
  display: flex;
  flex-direction: column;
  isolation: isolate;
}
.prod-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.9), transparent);
  z-index: 3;
}
.prod-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: var(--r-xl);
  padding: 1px;
  background: linear-gradient(135deg, transparent 40%, rgba(200, 153, 104, 0.4) 50%, transparent 60%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
  z-index: 4;
}
.prod-card:hover::after { opacity: 1; }
.prod-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.8) inset,
              0 24px 56px -16px rgba(10, 14, 26, 0.2),
              0 8px 16px -4px rgba(10, 14, 26, 0.08);
  border-color: rgba(200, 153, 104, 0.3);
}
.prod-card.is-hidden { display: none; }

/* Product Image */
.prod-image {
  position: relative;
  height: 200px;
  background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
  overflow: hidden;
  flex-shrink: 0;
}
.prod-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.05) contrast(1.08);
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.prod-card:hover .prod-image img { transform: scale(1.08); }
.prod-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(0, 0, 0, 0.4) 100%);
  pointer-events: none;
}

/* Product Tag (category number) */
.prod-tag {
  position: absolute;
  top: 14px; left: 14px;
  font-family: var(--f-mono);
  font-size: 10.5px;
  font-weight: 500;
  color: white;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 5px 10px;
  border-radius: 999px;
  z-index: 2;
  letter-spacing: 0.5px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Product Body */
.prod-body {
  padding: 22px 22px 22px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.prod-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 10px;
}
.prod-header h3 {
  font-family: var(--f-display);
  font-size: 19px;
  font-weight: 700;
  color: var(--ink);
  margin: 0;
  letter-spacing: -0.025em;
  line-height: 1.2;
}
.prod-badge {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  font-family: var(--f-mono);
  font-size: 10px;
  font-weight: 600;
  color: var(--ink);
  background: var(--bg-soft);
  padding: 5px 9px;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border: 1px solid var(--line);
}
.prod-badge--accent {
  background: var(--accent-faint);
  color: var(--accent-2);
  border-color: rgba(200, 153, 104, 0.25);
}

.prod-body > p {
  font-size: 13.5px;
  color: var(--text-soft);
  margin: 0 0 18px;
  line-height: 1.55;
  flex: 1;
}

/* Product Specs */
.prod-specs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  padding: 14px 0;
  margin-bottom: 16px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.prod-specs > div {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.prod-specs span {
  font-family: var(--f-mono);
  font-size: 9.5px;
  color: var(--text-mute);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.prod-specs strong {
  font-family: var(--f-display);
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.01em;
}

/* Product Link */
.prod-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
  padding: 10px 0;
  align-self: flex-start;
  transition: color 0.2s ease;
}
.prod-link svg { transition: transform 0.2s ease; }
.prod-link:hover { color: var(--accent-2); }
.prod-link:hover svg { transform: translateX(3px); }

/* Products More section */
.products-more {
  margin-top: 56px;
  padding: 32px;
  background: var(--glass-bg-strong);
  border: 1px solid var(--glass-border);
  border-radius: var(--r-xl);
  text-align: center;
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  box-shadow: var(--glass-shadow);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
.products-more p {
  font-size: 17px;
  color: var(--text);
  margin: 0;
  font-weight: 500;
}

/* ---------- INTERACTIVE PROCESS — 2 column layout (NO SCROLL) ---------- */
.section-process { position: relative; }

.process-wrap {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 20px;
  align-items: stretch;
}

/* LEFT: Step list */
.process-list-col {
  background: var(--glass-bg-strong);
  border: 1px solid var(--glass-border);
  border-radius: var(--r-xl);
  padding: 8px;
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  box-shadow: var(--glass-shadow);
  position: relative;
  overflow: hidden;
}
.process-list-col::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.9), transparent);
}
.process-list-inner {
  display: flex;
  flex-direction: column;
  gap: 4px;
  position: relative;
}
.process-item-btn {
  display: grid;
  grid-template-columns: 44px 1fr 28px;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  background: transparent;
  border: 1px solid transparent;
  border-radius: var(--r-md);
  text-align: left;
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}
.process-item-btn:hover {
  background: var(--bg-soft);
  border-color: var(--line);
}
.process-item-btn.is-active {
  background: var(--ink);
  border-color: var(--ink);
  box-shadow: 0 4px 12px -2px rgba(10, 14, 26, 0.2);
}
.process-item-num {
  display: grid;
  place-items: center;
  width: 36px; height: 36px;
  border-radius: 10px;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  color: var(--text-mute);
  font-family: var(--f-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
}
.process-item-btn:hover .process-item-num {
  border-color: var(--accent);
  color: var(--accent-2);
}
.process-item-btn.is-active .process-item-num {
  background: var(--accent);
  border-color: var(--accent);
  color: white;
}
.process-item-body h4 {
  font-family: var(--f-display);
  font-size: 15px;
  font-weight: 600;
  color: var(--ink);
  margin: 0 0 2px;
  letter-spacing: -0.015em;
  transition: color 0.2s ease;
}
.process-item-body p {
  font-size: 12.5px;
  color: var(--text-mute);
  margin: 0;
  line-height: 1.4;
  transition: color 0.2s ease;
}
.process-item-btn:hover .process-item-body h4 { color: var(--ink); }
.process-item-btn:hover .process-item-body p { color: var(--text-soft); }
.process-item-btn.is-active .process-item-body h4 { color: white; }
.process-item-btn.is-active .process-item-body p { color: rgba(255, 255, 255, 0.7); }
.process-item-arrow {
  display: grid;
  place-items: center;
  width: 28px; height: 28px;
  border-radius: 50%;
  color: var(--text-faint);
  opacity: 0;
  transform: translateX(-4px);
  transition: all 0.25s ease;
}
.process-item-btn:hover .process-item-arrow { opacity: 1; transform: translateX(0); color: var(--accent-2); }
.process-item-btn.is-active .process-item-arrow { opacity: 1; transform: translateX(0); color: var(--accent); }

/* RIGHT: Stage card (compact with image) */
.process-stage {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--glass-border);
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--glass-shadow);
  display: flex;
  flex-direction: column;
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
}

.process-stage-controls {
  position: absolute;
  top: 16px; right: 16px;
  z-index: 5;
  display: flex;
  gap: 6px;
}
.process-btn {
  width: 34px; height: 34px;
  border-radius: 9px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.4);
  color: var(--ink);
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: all 0.25s ease;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 2px 8px -2px rgba(0, 0, 0, 0.2);
}
.process-btn:hover {
  background: var(--ink);
  color: white;
  border-color: var(--ink);
  transform: translateY(-1px);
}
.process-btn--play { width: 40px; height: 40px; background: var(--accent); border-color: var(--accent); color: white; }
.process-btn--play:hover { background: #d4a575; border-color: #d4a575; }
.process-icon-pause { display: none; }
.process-btn.is-playing .process-icon-play { display: none; }
.process-btn.is-playing .process-icon-pause { display: block; }

/* Stage image */
.process-stage-image {
  position: relative;
  height: 100%;
  overflow: hidden;
  background: #1a1a1a;
}
.process-stage-image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.05) contrast(1.08) brightness(0.85);
  transition: transform 0.5s ease, opacity 0.3s ease;
}
.process-stage.is-transitioning .process-stage-image img {
  transform: scale(1.05);
  opacity: 0.7;
}
.process-stage-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.3) 0%, transparent 30%, transparent 50%, rgba(0,0,0,0.5) 100%);
  pointer-events: none;
  z-index: 1;
}
.process-stage-image-label {
  position: absolute;
  top: 16px; left: 16px;
  z-index: 3;
}
.process-stage-step {
  font-family: var(--f-mono);
  font-size: 11px;
  font-weight: 500;
  color: white;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 5px 10px;
  border-radius: 999px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.process-stage-step .process-stage-divider { color: rgba(255,255,255,0.4); margin: 0 4px; }

/* Stage body (icon + name + desc) */
.process-stage-body {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 14px;
  padding: 22px 24px 18px;
  align-items: flex-start;
}
.process-stage-icon {
  width: 44px; height: 44px;
  border-radius: 11px;
  background: var(--accent-faint);
  border: 1px solid rgba(200, 153, 104, 0.2);
  display: grid;
  place-items: center;
  color: var(--accent-2);
  flex-shrink: 0;
  transition: all 0.3s ease;
}
.process-stage.is-transitioning .process-stage-icon { transform: scale(0.8) rotate(-15deg); opacity: 0; }
.process-stage-text h3.process-stage-name {
  font-family: var(--f-display);
  font-size: 24px;
  line-height: 1.1;
  font-weight: 700;
  color: var(--ink);
  margin: 0 0 6px;
  letter-spacing: -0.025em;
  transition: all 0.3s ease;
}
.process-stage-text p.process-stage-desc {
  font-size: 14px;
  line-height: 1.55;
  color: var(--text-soft);
  margin: 0;
  transition: all 0.3s ease;
}
.process-stage.is-transitioning .process-stage-name { opacity: 0; transform: translateY(6px); }
.process-stage.is-transitioning .process-stage-desc { opacity: 0; transform: translateY(6px); }

/* Meta bar */
.process-stage-meta {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 24px 18px;
  border-top: 1px solid var(--line);
  background: var(--bg-soft);
}
.process-stage-bar {
  flex: 1;
  height: 4px;
  background: var(--line);
  border-radius: 999px;
  overflow: hidden;
}
.process-stage-bar-fill {
  height: 100%;
  width: 11%;
  background: linear-gradient(90deg, var(--accent), #e0bf95);
  border-radius: 999px;
  transition: width 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 0 8px rgba(200, 153, 104, 0.5);
}
.process-stage-counter {
  display: flex;
  align-items: baseline;
  gap: 3px;
  font-family: var(--f-mono);
  color: var(--text-mute);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.process-stage-counter > span:first-child { color: var(--ink); font-size: 14px; font-weight: 700; }

/* ---------- Team ---------- */
.team-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.team-card {
  background: var(--glass-bg-strong);
  border: 1px solid var(--glass-border);
  border-radius: var(--r-xl);
  padding: 28px;
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  box-shadow: var(--glass-shadow);
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 28px;
  align-items: start;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1),
              box-shadow 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  isolation: isolate;
}
.team-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.9), transparent);
}
.team-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.8) inset,
              0 24px 56px -16px rgba(10, 14, 26, 0.2),
              0 8px 16px -4px rgba(10, 14, 26, 0.08);
}
.team-photo {
  position: relative;
  width: 220px;
  height: 280px;
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--bg-soft);
  box-shadow: 0 12px 32px -8px rgba(10, 14, 26, 0.2);
}
.team-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.9) contrast(1.05) brightness(1.02);
  transition: transform 0.6s ease;
}
.team-card:hover .team-photo img { transform: scale(1.05); }

/* Photo overlay with quote */
.team-photo-tag {
  position: absolute;
  top: 14px; left: 14px;
  font-family: var(--f-mono);
  font-size: 10.5px;
  font-weight: 500;
  color: white;
  background: rgba(0, 0, 0, 0.65);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 5px 10px;
  border-radius: 999px;
  z-index: 3;
  letter-spacing: 0.5px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.team-photo-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(10, 14, 26, 0.85) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px;
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 2;
}
.team-card:hover .team-photo-overlay { opacity: 1; }
.team-quote-mark {
  font-family: var(--f-display);
  font-size: 36px;
  line-height: 0.6;
  color: var(--accent);
  font-weight: 700;
  margin-bottom: 4px;
}
.team-photo-overlay p {
  font-size: 13px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.95);
  font-style: italic;
  margin: 0;
  font-family: var(--f-display);
  font-weight: 500;
}

/* Team info */
.team-info { display: flex; flex-direction: column; gap: 14px; }

.team-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
}
.team-header h3 {
  font-family: var(--f-display);
  font-size: 24px;
  font-weight: 700;
  color: var(--ink);
  margin: 0 0 4px;
  letter-spacing: -0.025em;
  line-height: 1.1;
}
.team-role {
  font-family: var(--f-mono);
  font-size: 11.5px;
  color: var(--accent-2);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 500;
}

.team-stats-mini {
  display: flex;
  gap: 8px;
  flex-shrink: 0;
}
.team-stats-mini > div {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 8px 12px;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: 10px;
  min-width: 60px;
}
.team-stats-mini strong {
  font-family: var(--f-display);
  font-size: 16px;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.02em;
  line-height: 1;
}
.team-stats-mini span {
  font-family: var(--f-mono);
  font-size: 8.5px;
  color: var(--text-mute);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-top: 3px;
  text-align: center;
}

.team-info > p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-soft);
  margin: 0;
}

.team-expertise {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.team-expertise span {
  display: inline-block;
  font-family: var(--f-mono);
  font-size: 10.5px;
  font-weight: 500;
  color: var(--ink);
  background: var(--bg-soft);
  padding: 5px 10px;
  border-radius: 999px;
  border: 1px solid var(--line);
  letter-spacing: 0.3px;
}

.team-socials {
  display: flex;
  gap: 8px;
  padding-top: 4px;
}
.team-socials a {
  width: 38px; height: 38px;
  border-radius: 10px;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  display: grid;
  place-items: center;
  color: var(--text-soft);
  transition: all 0.25s ease;
}
.team-socials a:hover {
  background: var(--ink);
  color: white;
  border-color: var(--ink);
  transform: translateY(-2px);
}

/* ---------- Testimonials ---------- */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.testimonial {
  position: relative;
  background: var(--glass-bg-strong);
  border: 1px solid var(--glass-border);
  border-radius: var(--r-lg);
  padding: 32px;
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  box-shadow: var(--glass-shadow);
  transition: transform 0.3s, box-shadow 0.3s;
}
.testimonial::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.8), transparent);
}
.testimonial:hover { transform: translateY(-3px); }
.testimonial-quote {
  position: absolute;
  top: 12px; right: 22px;
  font-family: var(--f-display);
  font-size: 80px;
  line-height: 1;
  color: var(--accent);
  opacity: 0.25;
  font-weight: 700;
}
.testimonial p {
  font-size: 15px;
  line-height: 1.6;
  color: var(--text);
  margin: 0 0 24px;
  position: relative;
  z-index: 1;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}
.testimonial-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, #0a0e1a, #1a2236);
  color: white;
  display: grid;
  place-items: center;
  font-family: var(--f-display);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.5px;
}
.testimonial-author h4 {
  font-family: var(--f-display);
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
  margin: 0;
}
.testimonial-author span {
  font-size: 12px;
  color: var(--text-mute);
}

/* ---------- Bento (for About page) ---------- */
.bento {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: auto auto;
  gap: 16px;
}
.bento-card {
  position: relative;
  background: var(--glass-bg-strong);
  border: 1px solid var(--glass-border);
  border-radius: var(--r-lg);
  padding: 28px;
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  box-shadow: var(--glass-shadow);
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
}
.bento-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.8), transparent);
}
.bento-card:hover { transform: translateY(-3px); }

.bento-card--hero {
  grid-column: span 2;
  grid-row: span 2;
  padding: 0;
  min-height: 480px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.bento-card--hero .bento-image {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.bento-card--hero .bento-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: saturate(0.85) contrast(1.05);
}
.bento-card--hero .bento-content {
  position: relative;
  z-index: 1;
  padding: 28px;
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.6) 60%, rgba(0, 0, 0, 0.78));
  color: white;
  border-radius: 0 0 var(--r-lg) var(--r-lg);
}
.bento-card--hero .bento-tag {
  display: inline-block;
  font-family: var(--f-mono);
  font-size: 10.5px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(8px);
  padding: 5px 10px;
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 12px;
}
.bento-card--hero h3 {
  font-family: var(--f-display);
  font-size: 24px;
  line-height: 1.2;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin: 0 0 16px;
  max-width: 380px;
}
.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 500;
  color: white;
  padding: 8px 14px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  backdrop-filter: blur(8px);
  transition: all 0.2s;
}
.link-arrow:hover { background: rgba(255, 255, 255, 0.2); }

.bento-card--stat {
  grid-column: span 2;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 200px;
}
.bento-card--stat .bento-stat {
  font-family: var(--f-display);
  font-size: 72px;
  line-height: 1;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.04em;
}
.bento-card--stat .bento-stat span {
  color: var(--accent);
  font-weight: 500;
}
.bento-card--stat h4 {
  font-family: var(--f-display);
  font-size: 20px;
  font-weight: 600;
  color: var(--ink);
  margin: 16px 0 6px;
  letter-spacing: -0.02em;
}
.bento-card--stat p { font-size: 14px; color: var(--text-soft); margin: 0; }

.bento-card--icon {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 200px;
}
.bento-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  display: grid;
  place-items: center;
  color: var(--accent);
}
.bento-card--icon h4 {
  font-family: var(--f-display);
  font-size: 20px;
  font-weight: 600;
  color: var(--ink);
  margin: 16px 0 6px;
  letter-spacing: -0.02em;
}
.bento-card--icon p { font-size: 14px; color: var(--text-soft); margin: 0; line-height: 1.5; }

.bento-card--wide {
  grid-column: span 4;
  padding: 32px;
  background: var(--ink);
  color: white;
  border-color: rgba(255, 255, 255, 0.08);
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 40px;
  align-items: center;
}
.bento-card--wide::before { display: none; }
.bento-card--wide .bento-tag {
  display: inline-block;
  font-family: var(--f-mono);
  font-size: 10.5px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  background: rgba(200, 153, 104, 0.15);
  color: var(--accent);
  padding: 4px 10px;
  border-radius: 999px;
  margin-bottom: 12px;
}
.bento-card--wide h3 {
  font-family: var(--f-display);
  font-size: 28px;
  line-height: 1.15;
  font-weight: 600;
  margin: 0;
  letter-spacing: -0.02em;
  color: white;
}
.bento-bar {
  height: 6px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  overflow: hidden;
  margin-top: 8px;
}
.bento-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--accent), #e0bf95);
  border-radius: 999px;
  width: var(--w);
}
.bento-bar-meta {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.6);
}
.bento-bar-meta strong { color: white; font-weight: 600; }

/* ---------- Mission / Vision ---------- */
.mv-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.mv-card {
  padding: 40px;
  background: var(--glass-bg-strong);
  border: 1px solid var(--glass-border);
  border-radius: var(--r-xl);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  box-shadow: var(--glass-shadow);
  position: relative;
  overflow: hidden;
  transition: transform 0.3s;
}
.mv-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.8), transparent);
}
.mv-card:hover { transform: translateY(-4px); }
.mv-card--dark {
  background: var(--ink);
  color: white;
  border-color: rgba(255, 255, 255, 0.08);
}
.mv-card--dark::before { display: none; }
.mv-tag {
  display: inline-block;
  font-family: var(--f-mono);
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  background: var(--accent-faint);
  color: var(--accent-2);
  padding: 5px 11px;
  border-radius: 999px;
  margin-bottom: 20px;
}
.mv-card--dark .mv-tag { background: rgba(200, 153, 104, 0.18); color: var(--accent); }
.mv-card h3 {
  font-family: var(--f-display);
  font-size: clamp(28px, 3.5vw, 38px);
  line-height: 1.1;
  font-weight: 700;
  letter-spacing: -0.03em;
  margin: 0 0 16px;
}
.mv-card--dark h3 { color: white; }
.mv-card p {
  font-size: 15.5px;
  line-height: 1.6;
  color: var(--text-soft);
  margin: 0 0 32px;
  max-width: 480px;
}
.mv-card--dark p { color: rgba(255, 255, 255, 0.7); }
.mv-stats {
  display: flex;
  gap: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}
.mv-card--dark .mv-stats { border-top-color: rgba(255, 255, 255, 0.1); }
.mv-stats > div { display: flex; flex-direction: column; }
.mv-stats strong {
  font-family: var(--f-display);
  font-size: 28px;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.03em;
  line-height: 1;
}
.mv-card--dark .mv-stats strong { color: white; }
.mv-stats span {
  font-family: var(--f-mono);
  font-size: 10.5px;
  color: var(--text-mute);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-top: 6px;
}
.mv-card--dark .mv-stats span { color: rgba(255, 255, 255, 0.5); }

/* ---------- CTA ---------- */
.cta {
  padding: 100px 0 80px;
  position: relative;
  z-index: 1;
}
.cta-card {
  background: var(--ink);
  color: white;
  border-radius: var(--r-2xl);
  padding: 60px;
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 40px;
  align-items: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 24px 64px -16px rgba(10, 14, 26, 0.3);
}
.cta-card::before {
  content: "";
  position: absolute;
  top: 0; right: 0;
  width: 60%; height: 100%;
  background: radial-gradient(circle at 70% 30%, rgba(200, 153, 104, 0.2), transparent 60%);
  pointer-events: none;
}
.cta-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 32px 32px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 50%, black 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 50%, black 30%, transparent 80%);
  pointer-events: none;
}
.cta-content { position: relative; z-index: 1; }
.cta-content h2 {
  font-family: var(--f-display);
  font-size: clamp(30px, 4vw, 44px);
  line-height: 1.1;
  font-weight: 700;
  letter-spacing: -0.03em;
  margin: 0 0 16px;
  color: white;
}
.cta-content h2 em {
  font-style: italic;
  font-weight: 500;
  color: var(--accent);
  font-family: "Plus Jakarta Sans", Georgia, serif;
}
.cta-content p {
  font-size: 16px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
  max-width: 480px;
}
.cta-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
  justify-content: flex-end;
}

/* ============================================================
   FOOTER — 4-COLUMN PROFESSIONAL LAYOUT
   Col 1: About + Logo
   Col 2: Quick Links
   Col 3: Contact Info
   Col 4: Small Map Embed
   ============================================================ */
.footer {
  background: var(--ink);
  color: rgba(255, 255, 255, 0.6);
  padding: 80px 0 30px;
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.footer::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
}
.footer::after {
  content: "";
  position: absolute;
  top: 0; right: 0;
  width: 50%; height: 50%;
  background: radial-gradient(circle at 100% 0%, rgba(200, 153, 104, 0.08), transparent 60%);
  pointer-events: none;
}
.footer-main {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1.1fr 1.2fr;
  gap: 40px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  position: relative;
  z-index: 1;
}

/* Col 1: About + Logo */
.footer-col--about .brand--footer { margin-bottom: 20px; }
.footer-about-text {
  font-size: 13.5px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.55);
  margin: 0 0 22px;
  max-width: 320px;
}

/* Footer social — professional B2B layout */
.footer-social-wrap {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 4px;
}
.footer-social-label {
  font-family: var(--f-mono);
  font-size: 10.5px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  letter-spacing: 1.2px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.footer-social-label::before {
  content: "";
  display: inline-block;
  width: 18px;
  height: 1px;
  background: var(--accent);
}
.footer-social {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.footer-social a {
  position: relative;
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.75);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
  isolation: isolate;
  flex-shrink: 0;
}
.footer-social a::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: var(--accent);
  opacity: 0;
  transform: scale(0.6);
  border-radius: 12px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.footer-social a svg {
  position: relative;
  z-index: 1;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.footer-social a:hover {
  color: white;
  border-color: var(--accent);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px -4px rgba(200, 153, 104, 0.4);
}
.footer-social a:hover::before {
  opacity: 1;
  transform: scale(1);
}
.footer-social a:hover svg {
  transform: scale(1.1);
}
.footer-social a:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

/* Col 2, 3, 4: Shared */
.footer-col h4 {
  font-family: var(--f-display);
  font-size: 14px;
  font-weight: 600;
  color: white;
  margin: 0 0 22px;
  letter-spacing: -0.01em;
  position: relative;
  padding-bottom: 12px;
}
.footer-col h4::after {
  content: "";
  position: absolute;
  bottom: 0; left: 0;
  width: 24px; height: 1.5px;
  background: var(--accent);
  border-radius: 999px;
}
.footer-col--about h4 { display: none; }

/* Col 2: Quick Links */
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-links li { display: block; }
.footer-links a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.6);
  transition: all 0.2s;
  position: relative;
}
.footer-links a::before {
  content: "→";
  color: var(--accent);
  opacity: 0;
  transform: translateX(-4px);
  transition: all 0.2s;
  font-size: 12px;
}
.footer-links a:hover {
  color: white;
  transform: translateX(4px);
}
.footer-links a:hover::before {
  opacity: 1;
  transform: translateX(0);
}

/* Col 3: Contact Info */
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 14px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.5;
}
.footer-contact-icon {
  width: 32px; height: 32px;
  border-radius: 9px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: grid;
  place-items: center;
  color: var(--accent);
  flex-shrink: 0;
  margin-top: 1px;
}
.footer-contact li > div { flex: 1; }
.footer-contact li strong {
  display: block;
  font-family: var(--f-display);
  font-size: 13.5px;
  font-weight: 600;
  color: white;
  margin-bottom: 1px;
}
.footer-contact li span {
  display: block;
  color: rgba(255, 255, 255, 0.55);
  font-size: 12.5px;
}
.footer-contact li a {
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.2s;
}
.footer-contact li a:hover { color: white; }

/* Col 4: Small Map */
.footer-col--map { display: flex; flex-direction: column; }
.footer-mini-map {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
  height: 180px;
  margin-bottom: 12px;
  box-shadow: 0 8px 24px -8px rgba(0, 0, 0, 0.4);
}
.footer-mini-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
  filter: saturate(0.7) contrast(1.08) brightness(0.9);
}
.footer-mini-map::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: var(--r-lg);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.05);
  pointer-events: none;
}
.footer-col--map .footer-map-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12.5px;
  font-weight: 500;
  color: var(--accent);
  transition: all 0.2s;
  align-self: flex-start;
}
.footer-col--map .footer-map-link:hover {
  color: #e0bf95;
  gap: 8px;
}

/* Override old .footer-map section (legacy) */
.footer-map-head { display: none; }
.footer-map-card { display: none; }
.footer-map-info { display: none; }
.footer-map-addr { display: none; }
.footer-map-title { display: none; }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 30px;
  font-size: 13px;
  position: relative;
  z-index: 1;
}
.footer-bottom p { margin: 0; color: rgba(255, 255, 255, 0.4); }
.footer-bottom-links { display: flex; gap: 24px; }
.footer-bottom-links a { color: rgba(255, 255, 255, 0.4); transition: color 0.2s; }
.footer-bottom-links a:hover { color: white; }

/* Responsive footer */
@media (max-width: 1100px) {
  .footer-main { grid-template-columns: 1.4fr 1fr 1fr; gap: 32px; }
  .footer-col--map { grid-column: span 3; }
  .footer-mini-map { height: 200px; }
}
@media (max-width: 900px) {
  .footer-main { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-col--map { grid-column: span 2; }
  .footer-mini-map { height: 220px; }
  .footer-social a { width: 42px; height: 42px; }
}
@media (max-width: 600px) {
  .footer-main { grid-template-columns: 1fr; gap: 36px; padding-bottom: 36px; }
  .footer-col--map { grid-column: span 1; }
  .footer-mini-map { height: 200px; }
  .footer-bottom { flex-direction: column; gap: 14px; text-align: center; }
  .footer-bottom-links { flex-wrap: wrap; justify-content: center; }
  .footer-social a { width: 44px; height: 44px; border-radius: 12px; }
  .footer-social { gap: 10px; }
}

/* ---------- Floating Buttons ---------- */
.whatsapp-float {
  position: fixed;
  bottom: 24px; right: 24px;
  width: 54px; height: 54px;
  border-radius: 16px;
  background: #25d366;
  color: white;
  display: grid;
  place-items: center;
  z-index: 50;
  box-shadow: 0 8px 24px -4px rgba(37, 211, 102, 0.4);
  transition: transform 0.2s;
}
.whatsapp-float:hover { transform: translateY(-3px) scale(1.05); }
.back-to-top {
  position: fixed;
  bottom: 24px; right: 90px;
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--glass-bg-strong);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  color: var(--ink);
  display: grid;
  place-items: center;
  z-index: 50;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s;
  box-shadow: var(--glass-shadow);
}
.back-to-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.back-to-top:hover { background: var(--ink); color: white; border-color: var(--ink); }

/* ============================================================
   ABOUT PAGE — Professional Layout
   ============================================================ */

/* About Hero */
.about-hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
  padding-top: 80px;
}
.about-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.about-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.85) contrast(1.05) brightness(0.55);
  transform: scale(1.05);
}
.about-hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg,
      rgba(10, 14, 26, 0.92) 0%,
      rgba(10, 14, 26, 0.7) 50%,
      rgba(10, 14, 26, 0.3) 100%),
    linear-gradient(180deg, rgba(10, 14, 26, 0.4) 0%, transparent 50%, rgba(10, 14, 26, 0.7) 100%);
}
.about-hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  padding: 80px 0 60px;
}
.about-hero-title {
  font-family: var(--f-display);
  font-size: clamp(40px, 6vw, 76px);
  line-height: 1.02;
  letter-spacing: -0.04em;
  font-weight: 700;
  color: white;
  margin: 20px 0 24px;
  text-align: left;
}
.about-hero-title em {
  font-style: italic;
  font-weight: 500;
  color: #e0bf95;
  font-family: "Plus Jakarta Sans", Georgia, serif;
}
.about-hero-desc {
  font-size: 18px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.8);
  margin: 0 0 36px;
  max-width: 640px;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.3);
}
.about-hero-cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.about-hero .breadcrumb {
  margin-bottom: 16px;
}
.about-hero .breadcrumb a { color: rgba(255, 255, 255, 0.7); }
.about-hero .breadcrumb a:hover { color: white; }
.about-hero .breadcrumb-sep { color: rgba(255, 255, 255, 0.4); }
.about-hero .breadcrumb span:last-child { color: rgba(255, 255, 255, 0.9); }

/* About Hero Floating Stats */
.about-hero-stats {
  position: absolute;
  bottom: 50px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 0;
  padding: 20px 36px;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid var(--glass-border);
  border-radius: 999px;
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.8) inset, 0 16px 40px -8px rgba(0, 0, 0, 0.3);
  width: max-content;
  max-width: calc(100% - 48px);
}
.about-hero-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 28px;
  border-right: 1px solid var(--line);
}
.about-hero-stat:last-child { border-right: 0; }
.about-hero-stat strong {
  font-family: var(--f-display);
  font-size: 26px;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.03em;
  line-height: 1;
}
.about-hero-stat span {
  font-family: var(--f-mono);
  font-size: 10.5px;
  color: var(--text-mute);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-top: 5px;
  white-space: nowrap;
}

/* Our Story */
.story-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: center;
}
.story-visual {
  position: relative;
}
.story-image-main {
  position: relative;
  border-radius: var(--r-2xl);
  overflow: hidden;
  box-shadow: 0 24px 64px -16px rgba(10, 14, 26, 0.2), 0 1px 0 rgba(255, 255, 255, 0.8) inset;
  border: 1px solid var(--glass-border);
  aspect-ratio: 4 / 5;
  background: var(--bg-soft);
}
.story-image-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.92) contrast(1.05);
  transition: transform 0.8s;
}
.story-visual:hover .story-image-main img { transform: scale(1.04); }
.story-image-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--glass-border);
  border-radius: var(--r-md);
  padding: 14px 20px;
  text-align: center;
  box-shadow: 0 8px 24px -4px rgba(10, 14, 26, 0.15);
}
.story-image-badge strong {
  display: block;
  font-family: var(--f-display);
  font-size: 26px;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.03em;
  line-height: 1;
}
.story-image-badge span {
  display: block;
  font-family: var(--f-mono);
  font-size: 10px;
  color: var(--text-mute);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-top: 4px;
}
.story-image-stats {
  position: absolute;
  bottom: -20px;
  left: -20px;
  display: flex;
  gap: 12px;
  background: var(--ink);
  color: white;
  padding: 16px 22px;
  border-radius: var(--r-lg);
  box-shadow: 0 16px 40px -8px rgba(10, 14, 26, 0.3);
}
.story-image-stats > div {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 14px;
  border-right: 1px solid rgba(255, 255, 255, 0.15);
}
.story-image-stats > div:last-child { border-right: 0; }
.story-image-stats strong {
  font-family: var(--f-display);
  font-size: 24px;
  font-weight: 700;
  color: white;
  letter-spacing: -0.02em;
  line-height: 1;
}
.story-image-stats span {
  font-family: var(--f-mono);
  font-size: 9.5px;
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-top: 3px;
  white-space: nowrap;
}
.story-content { max-width: 600px; }
.story-content .h-display { margin: 0 0 24px; }
.story-content p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-soft);
  margin: 0 0 18px;
}
.story-signature {
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}
.story-signature-name {
  font-family: "Brush Script MT", cursive;
  font-size: 28px;
  color: var(--ink);
  font-style: italic;
}
.story-signature-role {
  font-family: var(--f-mono);
  font-size: 11px;
  color: var(--text-mute);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 4px;
}

/* Mission/Vision/Values */
.mvv-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.mvv-card {
  padding: 36px 32px;
  background: var(--glass-bg-strong);
  border: 1px solid var(--glass-border);
  border-radius: var(--r-xl);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  box-shadow: var(--glass-shadow);
  position: relative;
  transition: transform 0.3s, box-shadow 0.3s;
  overflow: hidden;
}
.mvv-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.9), transparent);
}
.mvv-card--mission { background: linear-gradient(135deg, rgba(200, 153, 104, 0.06), var(--glass-bg-strong)); }
.mvv-card--vision { background: linear-gradient(135deg, rgba(180, 200, 220, 0.08), var(--glass-bg-strong)); }
.mvv-card--values { background: linear-gradient(135deg, rgba(200, 153, 104, 0.06), var(--glass-bg-strong)); }
.mvv-card:hover { transform: translateY(-4px); box-shadow: 0 24px 56px -16px rgba(10, 14, 26, 0.15); }
.mvv-icon {
  width: 56px; height: 56px;
  border-radius: 16px;
  background: var(--accent-faint);
  border: 1px solid rgba(200, 153, 104, 0.2);
  display: grid;
  place-items: center;
  color: var(--accent-2);
  margin-bottom: 20px;
}
.mvv-card--vision .mvv-icon { background: rgba(180, 200, 220, 0.15); color: #2a3349; }
.mvv-tag {
  display: inline-block;
  font-family: var(--f-mono);
  font-size: 11px;
  font-weight: 500;
  color: var(--accent-2);
  background: var(--accent-faint);
  padding: 4px 10px;
  border-radius: 999px;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.mvv-card--vision .mvv-tag { background: rgba(180, 200, 220, 0.2); color: #2a3349; }
.mvv-card h3 {
  font-family: var(--f-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--ink);
  margin: 0 0 14px;
  letter-spacing: -0.025em;
  line-height: 1.2;
}
.mvv-card p {
  font-size: 15px;
  line-height: 1.6;
  color: var(--text-soft);
  margin: 0 0 20px;
}
.mvv-metric {
  display: flex;
  flex-direction: column;
  padding: 14px 16px;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: 10px;
}
.mvv-metric strong {
  font-family: var(--f-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.02em;
  line-height: 1;
}
.mvv-metric span {
  font-family: var(--f-mono);
  font-size: 10px;
  color: var(--text-mute);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-top: 4px;
}

/* By The Numbers */
.numbers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.number-card {
  padding: 36px 32px;
  background: var(--ink);
  color: white;
  border-radius: var(--r-xl);
  text-align: center;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  box-shadow: 0 16px 40px -12px rgba(10, 14, 26, 0.3);
  transition: transform 0.3s;
}
.number-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: radial-gradient(circle at 80% 20%, rgba(200, 153, 104, 0.15), transparent 60%);
}
.number-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image:
    linear-gradient(to right, rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 32px 32px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 50%, black 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 50%, black 30%, transparent 80%);
}
.number-card:hover { transform: translateY(-4px); }
.number-value {
  font-family: var(--f-display);
  font-size: 56px;
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 8px;
  color: white;
  position: relative;
}
.number-label {
  font-family: var(--f-display);
  font-size: 16px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 4px;
  letter-spacing: -0.01em;
}
.number-sub {
  font-family: var(--f-mono);
  font-size: 11px;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Value Grid (Why Choose Us) */
.value-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.value-card {
  padding: 32px 28px;
  background: var(--glass-bg-strong);
  border: 1px solid var(--glass-border);
  border-radius: var(--r-lg);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  box-shadow: var(--glass-shadow);
  position: relative;
  transition: transform 0.3s, box-shadow 0.3s;
}
.value-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.9), transparent);
}
.value-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 56px -16px rgba(10, 14, 26, 0.15);
}
.value-icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: var(--accent-faint);
  color: var(--accent-2);
  display: grid;
  place-items: center;
  margin-bottom: 20px;
}
.value-card h3 {
  font-family: var(--f-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--ink);
  margin: 0 0 8px;
  letter-spacing: -0.02em;
}
.value-card p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-soft);
  margin: 0 0 16px;
}
.value-stat {
  display: inline-block;
  font-family: var(--f-mono);
  font-size: 10.5px;
  font-weight: 500;
  color: var(--accent-2);
  background: var(--accent-faint);
  padding: 5px 10px;
  border-radius: 999px;
  letter-spacing: 0.5px;
}

/* Timeline */
.timeline {
  position: relative;
  padding-left: 40px;
  max-width: 900px;
  margin: 0 auto;
}
.timeline::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--line);
}
.timeline-item {
  position: relative;
  padding: 0 0 32px 32px;
}
.timeline-item::before {
  content: "";
  position: absolute;
  left: -8px;
  top: 8px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--bg);
  border: 3px solid var(--accent);
  box-shadow: 0 0 0 4px var(--accent-faint);
}
.timeline-year {
  font-family: var(--f-mono);
  font-size: 13px;
  font-weight: 600;
  color: var(--accent-2);
  background: var(--accent-faint);
  padding: 5px 12px;
  border-radius: 999px;
  display: inline-block;
  margin-bottom: 10px;
  letter-spacing: 0.5px;
}
.timeline-content h3 {
  font-family: var(--f-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--ink);
  margin: 0 0 6px;
  letter-spacing: -0.02em;
}
.timeline-content p {
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--text-soft);
  margin: 0;
  max-width: 600px;
}

/* Certifications */
.cert-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.cert-card {
  padding: 32px 28px;
  background: var(--glass-bg-strong);
  border: 1px solid var(--glass-border);
  border-radius: var(--r-lg);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  box-shadow: var(--glass-shadow);
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
  position: relative;
}
.cert-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.9), transparent);
}
.cert-card:hover { transform: translateY(-4px); }
.cert-badge {
  width: 64px; height: 64px;
  border-radius: 16px;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  display: grid;
  place-items: center;
  color: var(--ink);
  margin: 0 auto 16px;
}
.cert-card h3 {
  font-family: var(--f-display);
  font-size: 16px;
  font-weight: 700;
  color: var(--ink);
  margin: 0 0 6px;
  letter-spacing: -0.01em;
}
.cert-card p {
  font-size: 13px;
  line-height: 1.5;
  color: var(--text-soft);
  margin: 0;
}

@media (max-width: 1100px) {
  .story-grid { grid-template-columns: 1fr; gap: 50px; }
  .mvv-grid { grid-template-columns: 1fr; }
  .numbers-grid { grid-template-columns: repeat(2, 1fr); }
  .value-grid { grid-template-columns: repeat(2, 1fr); }
  .cert-grid { grid-template-columns: repeat(2, 1fr); }
  .timeline { padding-left: 32px; }
  .story-image-stats { left: 0; bottom: -16px; }
}
@media (max-width: 900px) {
  .about-hero { min-height: 80vh; }
  .about-hero-content { padding: 60px 0 40px; }
  .about-hero-stats { padding: 14px 20px; gap: 0; bottom: 30px; }
  .about-hero-stat { padding: 0 16px; }
  .about-hero-stat strong { font-size: 20px; }
  .about-hero-stat span { font-size: 9.5px; }
  .numbers-grid { grid-template-columns: 1fr; }
  .value-grid { grid-template-columns: 1fr; }
  .cert-grid { grid-template-columns: 1fr; }
  .mvv-card { padding: 28px 24px; }
  .number-value { font-size: 44px; }
  .story-image-stats { padding: 12px 16px; }
  .story-image-stats strong { font-size: 18px; }
  .story-image-stats span { font-size: 8.5px; }
}
@media (max-width: 600px) {
  .about-hero-stats { flex-wrap: wrap; justify-content: center; padding: 12px 16px; }
  .about-hero-stat { flex: 0 0 40%; padding: 6px 8px; border-right: 0; }
  .timeline { padding-left: 24px; }
  .timeline-item { padding-left: 20px; }
}

/* ============================================================
   PAGE-SPECIFIC — Sub-pages
   ============================================================ */
.page-hero {
  padding-top: calc(var(--header-h) + 40px);
  padding-bottom: 60px;
  position: relative;
}
.page-hero-inner {
  max-width: 760px;
}
.page-hero h1 {
  font-family: var(--f-display);
  font-size: clamp(36px, 5vw, 60px);
  line-height: 1.05;
  font-weight: 700;
  letter-spacing: -0.035em;
  color: var(--ink);
  margin: 16px 0 20px;
}
.page-hero h1 em {
  font-style: italic;
  font-weight: 500;
  color: var(--accent);
  font-family: "Plus Jakarta Sans", Georgia, serif;
}
.page-hero p {
  font-size: 18px;
  line-height: 1.6;
  color: var(--text-soft);
  margin: 0;
}
.breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--f-mono);
  font-size: 12px;
  color: var(--text-mute);
  margin-bottom: 12px;
}
.breadcrumb a { color: var(--text-soft); }
.breadcrumb a:hover { color: var(--ink); }
.breadcrumb-sep { color: var(--text-faint); }

.value-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.value-card {
  padding: 32px;
  background: var(--glass-bg-strong);
  border: 1px solid var(--glass-border);
  border-radius: var(--r-lg);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  box-shadow: var(--glass-shadow);
  position: relative;
}
.value-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.8), transparent);
}
.value-icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: var(--accent-faint);
  color: var(--accent-2);
  display: grid;
  place-items: center;
  margin-bottom: 20px;
}
.value-card h3 {
  font-family: var(--f-display);
  font-size: 18px;
  font-weight: 600;
  color: var(--ink);
  margin: 0 0 8px;
  letter-spacing: -0.01em;
}
.value-card p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-soft);
  margin: 0;
}

/* ---------- Products Page ---------- */
.product-detail {
  scroll-margin-top: 120px;
}
.product-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 16px;
  margin-bottom: 16px;
}
.product-detail-image {
  position: relative;
  height: 100%;
  min-height: 400px;
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--bg-soft);
  border: 1px solid var(--glass-border);
  box-shadow: var(--glass-shadow);
}
.product-detail-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: saturate(0.9) contrast(1.05);
}
.product-detail-image .prod-tag {
  top: 16px; left: 16px;
  font-size: 11.5px;
  padding: 6px 12px;
}
.product-detail-info {
  padding: 40px;
  background: var(--glass-bg-strong);
  border: 1px solid var(--glass-border);
  border-radius: var(--r-lg);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  box-shadow: var(--glass-shadow);
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.product-detail-info::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.8), transparent);
}
.product-detail-info h3 {
  font-family: var(--f-display);
  font-size: 32px;
  font-weight: 700;
  color: var(--ink);
  margin: 0 0 12px;
  letter-spacing: -0.025em;
}
.product-detail-info > p {
  font-size: 15px;
  line-height: 1.6;
  color: var(--text-soft);
  margin: 0 0 28px;
}
.product-specs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  margin-bottom: 24px;
}
.product-specs > div {
  display: flex;
  flex-direction: column;
}
.product-specs span {
  font-family: var(--f-mono);
  font-size: 10.5px;
  color: var(--text-mute);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 4px;
}
.product-specs strong {
  font-family: var(--f-display);
  font-size: 15px;
  font-weight: 600;
  color: var(--ink);
}

/* ---------- Forms ---------- */
.form-page-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 16px;
}
.form-side {
  padding: 40px;
  background: var(--ink);
  color: white;
  border-radius: var(--r-xl);
  position: relative;
  overflow: hidden;
}
.form-side::before {
  content: "";
  position: absolute;
  top: 0; right: 0;
  width: 60%; height: 100%;
  background: radial-gradient(circle at 70% 30%, rgba(200, 153, 104, 0.2), transparent 60%);
  pointer-events: none;
}
.form-side h2 {
  font-family: var(--f-display);
  font-size: 28px;
  font-weight: 700;
  color: white;
  margin: 24px 0 12px;
  letter-spacing: -0.025em;
  position: relative;
}
.form-side p {
  font-size: 14.5px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.7);
  margin: 0 0 32px;
  position: relative;
}
.form-contact-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
}
.form-contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
}
.form-contact-item .icon {
  width: 36px; height: 36px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: grid;
  place-items: center;
  color: var(--accent);
  flex-shrink: 0;
}

.form-card {
  padding: 40px;
  background: var(--glass-bg-strong);
  border: 1px solid var(--glass-border);
  border-radius: var(--r-xl);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  box-shadow: var(--glass-shadow);
  position: relative;
}
.form-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.8), transparent);
}
.form-card h2 {
  font-family: var(--f-display);
  font-size: 28px;
  font-weight: 700;
  color: var(--ink);
  margin: 0 0 8px;
  letter-spacing: -0.025em;
}
.form-card > p {
  font-size: 15px;
  color: var(--text-soft);
  margin: 0 0 32px;
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.form-group.full { grid-column: 1 / -1; }
.form-group label {
  font-size: 13px;
  font-weight: 500;
  color: var(--ink);
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  font-size: 14px;
  color: var(--ink);
  transition: all 0.2s;
  font-family: inherit;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  background: white;
  border-color: var(--ink);
  box-shadow: 0 0 0 3px rgba(10, 14, 26, 0.06);
}
.form-group textarea {
  resize: vertical;
  min-height: 120px;
}
.form-error {
  font-size: 12px;
  color: #c2410c;
  min-height: 16px;
  display: block;
}
.form-submit {
  margin-top: 8px;
}
.form-success {
  display: none;
  padding: 16px 20px;
  background: rgba(26, 128, 80, 0.08);
  border: 1px solid rgba(26, 128, 80, 0.2);
  border-radius: var(--r-md);
  color: #1a8050;
  font-size: 14px;
  margin-top: 16px;
}
.form-success.is-visible { display: block; }

.map-card {
  position: relative;
  height: 400px;
  border-radius: var(--r-xl);
  overflow: hidden;
  border: 1px solid var(--glass-border);
  box-shadow: var(--glass-shadow);
  margin-top: 16px;
}
.map-card iframe { width: 100%; height: 100%; border: 0; filter: saturate(0.7) contrast(1.05); }

/* ============================================================
   FOUNDER SECTION — 2 Column Layout
   - LEFT column: image (smaller) + below it quote + socials
   - RIGHT column: name, bio, credentials, CTA
   - Quote moved BELOW image (in left column)
   ============================================================ */
.founder-grid {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: 56px;
  align-items: start;
}

/* LEFT: Image + Quote + Socials */
.founder-visual {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.founder-image-main {
  position: relative;
  border-radius: var(--r-xl);
  overflow: hidden;
  border: 1px solid var(--glass-border);
  aspect-ratio: 4 / 5;
  background: var(--bg-soft);
  max-height: 420px;
  max-width: 400px;
  margin: 0 auto;
  width: 100%;
  box-shadow: 0 16px 40px -12px rgba(10, 14, 26, 0.18);
}
.founder-image-main img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center top;
  filter: saturate(0.95) contrast(1.05);
  transition: transform 0.8s;
}
.founder-visual:hover .founder-image-main img { transform: scale(1.04); }
.founder-image-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--glass-border);
  border-radius: var(--r-md);
  padding: 10px 14px;
  text-align: center;
  box-shadow: 0 8px 24px -4px rgba(10, 14, 26, 0.15);
}
.founder-image-badge strong {
  display: block;
  font-family: var(--f-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.03em;
  line-height: 1;
}
.founder-image-badge span {
  display: block;
  font-family: var(--f-mono);
  font-size: 9px;
  color: var(--text-mute);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-top: 3px;
}

/* Stats BELOW the image */
.founder-image-stats {
  display: flex;
  align-items: stretch;
  gap: 0;
  background: var(--ink);
  color: white;
  padding: 14px 16px;
  border-radius: var(--r-md);
  box-shadow: 0 12px 32px -8px rgba(10, 14, 26, 0.3);
}
.founder-image-stats > div {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2px 16px;
  border-right: 1px solid rgba(255, 255, 255, 0.15);
  flex: 1 1 0;
}
.founder-image-stats > div:last-child { border-right: 0; }
.founder-image-stats strong {
  font-family: var(--f-display);
  font-size: 19px;
  font-weight: 700;
  color: white;
  letter-spacing: -0.02em;
  line-height: 1;
}
.founder-image-stats span {
  font-family: var(--f-mono);
  font-size: 9px;
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
  letter-spacing: 0.4px;
  margin-top: 4px;
  white-space: nowrap;
  text-align: center;
}

/* Quote now BELOW image (in left column) */
.founder-quote {
  position: relative;
  padding: 18px 22px 18px 44px;
  background: var(--ink);
  color: white;
  border-radius: var(--r-md);
  overflow: hidden;
  isolation: isolate;
}
.founder-quote::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 4px; height: 100%;
  background: linear-gradient(180deg, var(--accent), #e0bf95);
  z-index: 2;
}
.founder-quote::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: radial-gradient(circle at 90% 50%, rgba(200, 153, 104, 0.12), transparent 60%);
}
.founder-quote-mark {
  position: absolute;
  top: 2px;
  left: 12px;
  font-family: Georgia, serif;
  font-size: 44px;
  line-height: 1;
  color: var(--accent);
  opacity: 0.4;
  font-weight: 700;
  z-index: 1;
}
.founder-quote p {
  font-size: 13px;
  line-height: 1.55;
  color: white;
  margin: 0;
  font-style: italic;
  font-weight: 500;
  font-family: var(--f-display);
  position: relative;
  z-index: 1;
}

/* Socials BELOW image (in left column) - compact horizontal */
.founder-socials {
  display: flex;
  gap: 8px;
  justify-content: flex-start;
}
.founder-socials a {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  display: grid;
  place-items: center;
  color: var(--text-soft);
  transition: all 0.25s ease;
}
.founder-socials a:hover {
  background: var(--ink);
  color: white;
  border-color: var(--ink);
  transform: translateY(-2px);
}

/* RIGHT: Info column */
.founder-content {
  display: flex;
  flex-direction: column;
}
.founder-tag {
  display: inline-block;
  font-family: var(--f-mono);
  font-size: 11px;
  font-weight: 500;
  color: var(--accent-2);
  background: var(--accent-faint);
  padding: 5px 12px;
  border-radius: 999px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.founder-eyebrow-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
  flex-wrap: wrap;
}
.founder-eyebrow-row .founder-tag { margin-bottom: 0; }
.founder-eyebrow-row .founder-tag--secondary {
  background: var(--bg-soft);
  color: var(--text-soft);
  border: 1px solid var(--line);
}

.founder-name-row {
  display: flex;
  align-items: baseline;
  gap: 16px;
  flex-wrap: wrap;
  margin: 0 0 6px;
}
.founder-name {
  font-family: var(--f-display);
  font-size: clamp(36px, 4vw, 52px);
  line-height: 1;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.04em;
  margin: 0;
}
.founder-title-line {
  font-family: var(--f-mono);
  font-size: 12px;
  color: var(--accent-2);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 500;
  margin: 0 0 20px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}

.founder-bio {
  font-size: 15.5px;
  line-height: 1.7;
  color: var(--text-soft);
  margin: 0 0 14px;
}
.founder-bio strong {
  color: var(--ink);
  font-weight: 600;
}
.founder-bio em {
  color: var(--accent-2);
  font-style: normal;
  font-weight: 600;
}

.founder-credentials {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin: 18px 0 0;
  padding: 18px;
  background: linear-gradient(135deg, var(--glass-bg-strong), white);
  border: 1px solid var(--glass-border);
  border-radius: var(--r-lg);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  box-shadow: var(--glass-shadow);
  position: relative;
  overflow: hidden;
}
.founder-credentials::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(200, 153, 104, 0.5), transparent);
}
.founder-cred {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 4px;
}
.founder-cred-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: var(--accent-faint);
  color: var(--accent-2);
  display: grid;
  place-items: center;
  flex-shrink: 0;
  border: 1px solid rgba(200, 153, 104, 0.2);
  transition: all 0.3s ease;
}
.founder-cred:hover .founder-cred-icon {
  background: var(--accent);
  color: white;
  transform: scale(1.05);
}
.founder-cred-icon svg { width: 18px; height: 18px; }
.founder-cred strong {
  display: block;
  font-family: var(--f-display);
  font-size: 13.5px;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.01em;
  line-height: 1.2;
}
.founder-cred span {
  display: block;
  font-size: 11px;
  color: var(--text-mute);
  margin-top: 2px;
  line-height: 1.3;
}

/* CTA in right column */
.founder-cta-row {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 24px;
}

/* ============================================================
   OUR STORY SECTION — About Page (between Hero and Founder)
   ============================================================ */
.story-section {
  position: relative;
  padding: 100px 0;
  z-index: 1;
}
.story-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: center;
}
.story-visual {
  position: relative;
}
.story-image-main {
  position: relative;
  border-radius: var(--r-2xl);
  overflow: hidden;
  box-shadow: 0 24px 64px -16px rgba(10, 14, 26, 0.2), 0 1px 0 rgba(255, 255, 255, 0.8) inset;
  border: 1px solid var(--glass-border);
  aspect-ratio: 4 / 5;
  background: var(--bg-soft);
}
.story-image-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.92) contrast(1.05);
  transition: transform 0.8s;
}
.story-visual:hover .story-image-main img { transform: scale(1.04); }
.story-image-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--glass-border);
  border-radius: var(--r-md);
  padding: 14px 20px;
  text-align: center;
  box-shadow: 0 8px 24px -4px rgba(10, 14, 26, 0.15);
}
.story-image-badge strong {
  display: block;
  font-family: var(--f-display);
  font-size: 26px;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.03em;
  line-height: 1;
}
.story-image-badge span {
  display: block;
  font-family: var(--f-mono);
  font-size: 10px;
  color: var(--text-mute);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-top: 4px;
}
.story-image-stats {
  position: absolute;
  bottom: -20px;
  left: -20px;
  display: flex;
  gap: 0;
  background: var(--ink);
  color: white;
  padding: 18px 24px;
  border-radius: var(--r-lg);
  box-shadow: 0 16px 40px -8px rgba(10, 14, 26, 0.3);
}
.story-image-stats > div {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 20px;
  border-right: 1px solid rgba(255, 255, 255, 0.15);
}
.story-image-stats > div:last-child { border-right: 0; }
.story-image-stats strong {
  font-family: var(--f-display);
  font-size: 26px;
  font-weight: 700;
  color: white;
  letter-spacing: -0.025em;
  line-height: 1;
}
.story-image-stats span {
  font-family: var(--f-mono);
  font-size: 10px;
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-top: 4px;
  white-space: nowrap;
}
.story-content { max-width: 600px; }
.story-content .h-display { margin: 0 0 24px; }
.story-content p {
  font-size: 16.5px;
  line-height: 1.7;
  color: var(--text-soft);
  margin: 0 0 18px;
}
.story-content p strong { color: var(--ink); font-weight: 600; }
.story-signature {
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}
.story-signature-name {
  font-family: "Brush Script MT", cursive;
  font-size: 28px;
  color: var(--ink);
  font-style: italic;
}
.story-signature-role {
  font-family: var(--f-mono);
  font-size: 11px;
  color: var(--text-mute);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 4px;
}

/* ============================================================
   LOCATION SECTION — About Page
   ============================================================ */
.location-section {
  background: var(--ink);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.location-section::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
}
.location-section::after {
  content: "";
  position: absolute;
  bottom: -200px; left: -200px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(200, 153, 104, 0.12), transparent 70%);
  pointer-events: none;
}
.location-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 64px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.location-info {
  color: white;
}
.location-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--f-mono);
  font-size: 11.5px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
  letter-spacing: 1.2px;
  margin-bottom: 18px;
}
.location-eyebrow span {
  display: inline-block;
  width: 18px;
  height: 1px;
  background: var(--accent);
}
.location-title {
  font-family: var(--f-display);
  font-size: clamp(32px, 4.5vw, 56px);
  line-height: 1.05;
  letter-spacing: -0.035em;
  font-weight: 700;
  color: white;
  margin: 0 0 20px;
}
.location-title em {
  font-style: italic;
  font-weight: 500;
  color: var(--accent);
  font-family: "Plus Jakarta Sans", Georgia, serif;
}
.location-desc {
  font-size: 16.5px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.7);
  margin: 0 0 32px;
  max-width: 540px;
}
.location-details {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 0 0 32px;
}
.location-detail {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 20px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--r-md);
  transition: all 0.3s ease;
}
.location-detail:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(200, 153, 104, 0.3);
}
.location-detail-icon {
  width: 40px; height: 40px;
  border-radius: 10px;
  background: rgba(200, 153, 104, 0.15);
  color: var(--accent);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.location-detail-text { flex: 1; }
.location-detail-text strong {
  display: block;
  font-family: var(--f-display);
  font-size: 14px;
  font-weight: 600;
  color: white;
  margin-bottom: 2px;
}
.location-detail-text span {
  display: block;
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.6);
}
.location-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.location-map {
  position: relative;
  border-radius: var(--r-2xl);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 32px 64px -24px rgba(0, 0, 0, 0.6);
  height: 540px;
}
.location-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
  filter: saturate(0.7) contrast(1.05);
}
.location-map-pin {
  position: absolute;
  bottom: 24px;
  left: 24px;
  right: 24px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border: 1px solid var(--glass-border);
  border-radius: var(--r-lg);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  box-shadow: 0 8px 24px -4px rgba(0, 0, 0, 0.3);
}
.location-map-pin-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--accent-faint);
  color: var(--accent-2);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.location-map-pin-text { flex: 1; }
.location-map-pin-text strong {
  display: block;
  font-family: var(--f-display);
  font-size: 15px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 2px;
}
.location-map-pin-text span {
  display: block;
  font-size: 12.5px;
  color: var(--text-mute);
}
/* ============================================================
   IMPROVED CERTIFICATIONS SHOWCASE — Better readability, no word cutting
   ============================================================ */
.cert-showcase-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}
.cert-showcase-card {
  display: grid;
  grid-template-columns: 240px 1fr;
  background: var(--glass-bg-strong);
  border: 1px solid var(--glass-border);
  border-radius: var(--r-2xl);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  box-shadow: var(--glass-shadow);
  overflow: hidden;
  transition: transform 0.4s, box-shadow 0.4s;
  position: relative;
  isolation: isolate;
  min-height: 360px;
}
.cert-showcase-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.9), transparent);
  z-index: 3;
}
.cert-showcase-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.8) inset,
              0 24px 56px -16px rgba(10, 14, 26, 0.2),
              0 8px 16px -4px rgba(10, 14, 26, 0.08);
}
.cert-image-wrap {
  position: relative;
  background: linear-gradient(135deg, #0a0e1a 0%, #1a2236 100%);
  padding: 28px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.cert-image-wrap::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: radial-gradient(circle at 50% 50%, rgba(200, 153, 104, 0.18), transparent 70%);
  pointer-events: none;
}
.cert-image-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 24px 24px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 50%, black 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 50%, black 30%, transparent 80%);
  pointer-events: none;
}
.cert-image-frame {
  position: relative;
  width: 100%;
  max-width: 200px;
  aspect-ratio: 200 / 260;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 16px 40px -8px rgba(0, 0, 0, 0.6);
  transition: transform 0.5s;
  z-index: 1;
}
.cert-showcase-card:hover .cert-image-frame { transform: scale(1.04) rotate(-1deg); }
.cert-svg {
  width: 100%;
  height: 100%;
  display: block;
}

/* Corner ribbon on cert image */
.cert-image-ribbon {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 2;
  font-family: var(--f-mono);
  font-size: 9.5px;
  font-weight: 500;
  color: white;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 5px 10px;
  border-radius: 999px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.cert-info {
  padding: 32px 36px 32px 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  z-index: 1;
  min-width: 0; /* prevent text overflow */
}
.cert-tag {
  display: inline-block;
  font-family: var(--f-mono);
  font-size: 10.5px;
  font-weight: 500;
  color: var(--accent-2);
  background: var(--accent-faint);
  padding: 5px 12px;
  border-radius: 999px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  margin-bottom: 14px;
  align-self: flex-start;
  white-space: nowrap;
}
.cert-tag--blue {
  color: #1a4d6e;
  background: rgba(180, 200, 220, 0.22);
}
.cert-info h3 {
  font-family: var(--f-display);
  font-size: 24px;
  font-weight: 700;
  color: var(--ink);
  margin: 0 0 12px;
  letter-spacing: -0.025em;
  line-height: 1.2;
  word-wrap: break-word;
  overflow-wrap: break-word;
}
.cert-info p {
  font-size: 14px;
  line-height: 1.65;
  color: var(--text-soft);
  margin: 0 0 16px;
  word-wrap: break-word;
  overflow-wrap: break-word;
}
.cert-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 0 0 20px;
  padding: 0;
}
.cert-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  color: var(--text-soft);
  line-height: 1.4;
}
.cert-list li::before {
  content: "✓";
  color: var(--accent);
  font-weight: 700;
  font-size: 15px;
  flex-shrink: 0;
  line-height: 1.2;
  margin-top: 1px;
}
.cert-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--ink);
  padding: 12px 0 0;
  align-self: flex-start;
  transition: color 0.2s ease;
  border-top: 1px solid var(--line);
  width: 100%;
  margin-top: auto;
}
.cert-link:hover { color: var(--accent-2); }

@media (max-width: 1100px) {
  .cert-showcase-grid { grid-template-columns: 1fr; gap: 20px; }
  .cert-showcase-card { grid-template-columns: 220px 1fr; min-height: 320px; }
  .cert-info h3 { font-size: 22px; }
}
@media (max-width: 900px) {
  .cert-showcase-card { grid-template-columns: 1fr; min-height: 0; }
  .cert-image-wrap { padding: 40px 32px; min-height: 320px; }
  .cert-image-frame { max-width: 200px; }
  .cert-info { padding: 0 36px 36px; }
  .cert-info h3 { font-size: 24px; }
}
@media (max-width: 600px) {
  .cert-showcase-card { border-radius: var(--r-xl); }
  .cert-image-wrap { padding: 32px 24px; min-height: 280px; }
  .cert-image-frame { max-width: 180px; }
  .cert-info { padding: 0 24px 28px; }
  .cert-info h3 { font-size: 21px; margin-bottom: 10px; }
  .cert-info p { font-size: 13.5px; margin-bottom: 14px; }
  .cert-list { gap: 6px; margin-bottom: 16px; }
  .cert-list li { font-size: 12.5px; }
  .cert-tag { font-size: 10px; padding: 4px 10px; }
}

/* ============================================================
   FOUNDER SECTION — Mobile-first responsive overrides
   ============================================================ */
@media (max-width: 1100px) {
  .founder-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
  }
  .founder-image-main {
    aspect-ratio: 4 / 5;
    max-height: 360px;
    max-width: 300px;
  }
  .founder-name { font-size: 38px; }
  .founder-bio { font-size: 14.5px; }
  .founder-credentials { padding: 16px; gap: 8px; }
  .founder-cred-icon { width: 36px; height: 36px; }
  .founder-cred strong { font-size: 13px; }
  .founder-cred span { font-size: 10.5px; }
  .founder-quote { padding: 18px 22px 18px 44px; }
  .founder-quote-mark { font-size: 44px; left: 12px; }
  .founder-quote p { font-size: 14px; }
}
@media (max-width: 900px) {
  .founder-grid { grid-template-columns: 1fr; gap: 28px; }
  .founder-visual { max-width: 460px; margin: 0 auto; width: 100%; }
  .founder-image-main { aspect-ratio: 4 / 5; max-height: 420px; max-width: 320px; }
  .founder-name { font-size: 36px; }
  .founder-image-stats { padding: 12px 16px; }
  .founder-image-stats strong { font-size: 19px; }
  .founder-credentials { grid-template-columns: 1fr 1fr; padding: 18px; }
}
@media (max-width: 600px) {
  .founder-image-main { aspect-ratio: 4 / 5; max-height: none; max-width: 280px; }
  .founder-image-badge { top: 18px; right: 18px; padding: 8px 12px; }
  .founder-image-badge strong { font-size: 16px; }
  .founder-image-badge span { font-size: 8px; }
  .founder-image-stats { padding: 12px 12px; gap: 0; }
  .founder-image-stats > div { padding: 2px 10px; }
  .founder-image-stats strong { font-size: 17px; }
  .founder-image-stats span { font-size: 8.5px; letter-spacing: 0.3px; }
  .founder-eyebrow-row { gap: 8px; margin-bottom: 14px; }
  .founder-name { font-size: 30px; }
  .founder-title-line { font-size: 10.5px; letter-spacing: 1px; padding-bottom: 14px; margin-bottom: 14px; }
  .founder-bio { font-size: 14.5px; margin-bottom: 12px; }
  .founder-credentials { grid-template-columns: 1fr; padding: 14px; gap: 8px; }
  .founder-cred { gap: 10px; padding: 2px; }
  .founder-cred-icon { width: 34px; height: 34px; }
  .founder-cred-icon svg { width: 16px; height: 16px; }
  .founder-cred strong { font-size: 12.5px; }
  .founder-cred span { font-size: 10.5px; }
  .founder-quote { padding: 18px 18px 18px 42px; }
  .founder-quote-mark { font-size: 42px; left: 12px; }
  .founder-quote p { font-size: 13px; line-height: 1.5; }
  .founder-socials { justify-content: flex-start; }
  .founder-socials a { width: 38px; height: 38px; }
  .founder-cta-row { flex-direction: column; align-items: flex-start; gap: 12px; }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1100px) {
  .nav { display: none; }
  .menu-btn { display: block; }
  .header-actions .btn-pill--primary { display: none; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .product-grid { grid-template-columns: repeat(3, 1fr); }
  .prod-image { height: 180px; }
  .process-list { grid-template-columns: repeat(3, 1fr); }
  .bento { grid-template-columns: repeat(2, 1fr); }
  .bento-card--hero { grid-column: span 2; grid-row: span 1; min-height: 360px; }
  .bento-card--stat { grid-column: span 1; }
  .bento-card--icon { grid-column: span 1; }
  .bento-card--wide { grid-column: span 2; }
  .footer-main { grid-template-columns: 1fr 1fr; }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-visual { aspect-ratio: 16/10; }
  .form-page-grid { grid-template-columns: 1fr; }
  .product-detail-grid { grid-template-columns: 1fr; }
  .product-detail-image { min-height: 320px; }
  .header--floating .header-inner { padding: 8px 8px 8px 22px; height: 72px; gap: 12px; }
  .header--floating .brand-mark { width: 44px; height: 44px; border-radius: 50%; }
  .header--floating .brand-name { font-size: 17px; }
  .header-inner { gap: 8px; }
  .brand-sub { display: none; }
  .brand { gap: 10px; }
}
@media (max-width: 900px) {
  .nav { display: none; }
  .menu-btn { display: block; }
  .header-actions .btn-pill--primary { display: none; }
  .header--floating .header-inner { padding: 6px 6px 6px 16px; height: 64px; }
  .header--floating .brand-mark { width: 40px; height: 40px; border-radius: 50%; }
  .header--floating .brand-name { font-size: 15.5px; letter-spacing: -0.3px; }
  .header--scrolled .header-inner,
  .header.is-scrolled .header-inner { height: 70px; }
  .header.is-scrolled,
  .header--scrolled { height: 70px; }
  :root { --header-h: 70px; }
  .brand-sub { display: none; }
  .header { padding: 12px var(--pad) 0; }
  .header--floating .menu-btn,
  .header .menu-btn { width: 38px; height: 38px; }
  .header--floating .menu-btn span,
  .header .menu-btn span { left: 10px; right: 10px; }
  .header--floating .menu-btn span:nth-child(1),
  .header .menu-btn span:nth-child(1) { top: 14px; }
  .header--floating .menu-btn span:nth-child(2),
  .header .menu-btn span:nth-child(2) { top: 20px; }
  .hero-carousel { min-height: 100vh; height: auto; max-height: none; }
  .hc-inner { padding: 110px 0 240px; }
  .hc-title { font-size: clamp(28px, 5.5vw, 44px); margin: 18px 0 18px; }
  .hc-desc { font-size: 15px; margin-bottom: 28px; max-width: 100%; }
  .hc-trust-bar { bottom: 100px; padding: 12px 18px; gap: 0; }
  .hc-trust-item { padding: 0 10px; }
  .hc-trust-item strong { font-size: 17px; }
  .hc-trust-item span { font-size: 9.5px; }
  .hc-trust-divider { height: 22px; }
  .hc-actions .btn-pill { padding: 12px 20px; font-size: 13.5px; }
  .section { padding: 70px 0; }
  .section-head { grid-template-columns: 1fr; gap: 16px; margin-bottom: 40px; }
  .ind-slide { flex: 0 0 calc((100% - 16px) / 2); min-width: 280px; height: 420px; }
  .ind-slide--feature { flex: 0 0 calc((100% - 16px) / 2); min-width: 280px; }
  /* Cards look uniform — no special sizing for feature on tablet */
  .ind-slide--feature .ind-slide-image { height: 220px; }
  .ind-slide--feature .ind-slide-content { min-height: 200px; }
  .process-stage { padding: 32px 28px; min-height: 200px; }
  .process-stage-content { grid-template-columns: 1fr; gap: 20px; }
  .process-stage-icon { width: 64px; height: 64px; }
  .process-stage-icon svg { width: 28px; height: 28px; }
  .process-step-btn { width: 70px; }
  .process-step-dot { width: 38px; height: 38px; font-size: 10px; }
  .team-card { grid-template-columns: 160px 1fr; gap: 20px; padding: 22px; }
  .team-photo { width: 160px; height: 200px; }
  .team-header { flex-direction: column; align-items: flex-start; gap: 12px; }
  .team-stats-mini { align-self: flex-start; }
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonial-grid { grid-template-columns: 1fr; }
  .mv-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  .team-card { grid-template-columns: 140px 1fr; gap: 18px; padding: 18px; }
  .team-photo { width: 140px; height: 180px; }
  .value-grid { grid-template-columns: 1fr; }
  .cta-card { grid-template-columns: 1fr; padding: 40px; }
  .cta-actions { justify-content: flex-start; }
  .footer-main { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 12px; }
  .process-list { grid-template-columns: repeat(2, 1fr); }
  .bento { grid-template-columns: 1fr; }
  .bento-card--hero, .bento-card--stat, .bento-card--icon, .bento-card--wide { grid-column: span 1; }
  .bento-card--wide { grid-template-columns: 1fr; gap: 20px; }
  .about-section { padding: 70px 0; }
  .about-features { padding: 18px; }
}
@media (max-width: 600px) {
  .stats-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .stat-card { padding: 20px 18px; }
  .stat-value { font-size: 30px; }
  .stat-icon { width: 38px; height: 38px; margin-bottom: 16px; }
  .stat-label { font-size: 12.5px; }
  .product-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .prod-image { height: 150px; }
  .prod-body { padding: 16px 16px 18px; }
  .prod-header h3 { font-size: 15px; }
  .prod-badge { font-size: 9px; padding: 4px 7px; }
  .prod-body > p { font-size: 12.5px; margin-bottom: 12px; }
  .prod-specs { grid-template-columns: repeat(3, 1fr); gap: 6px; padding: 10px 0; margin-bottom: 12px; }
  .prod-specs strong { font-size: 11.5px; }
  .prod-specs span { font-size: 8.5px; }
  .industries-bento { grid-template-columns: 1fr; }
  .industries-bento .ind-card--feature { grid-column: span 1; }
  .ind-image { min-height: 220px; }
  .ind-card--feature .ind-feature-content { padding: 22px; }
  .ind-card--feature .ind-feature-content h3 { font-size: 24px; }
  .ind-stats-row { gap: 16px; }
  .process-wrap { grid-template-columns: 1fr; gap: 16px; }
  .process-list-col { max-height: 480px; overflow-y: auto; }
  .process-stage-image { height: 220px; }
  .process-stage-body { padding: 20px 20px 16px; gap: 12px; }
  .process-stage-text h3.process-stage-name { font-size: 22px; }
  .ind-slide { flex: 0 0 100%; min-width: 0; height: auto; min-height: 360px; }
  .ind-slide--feature { flex: 0 0 100%; min-width: 0; min-height: 360px; }
  .ind-slide-image { height: 200px; }
  .ind-slide-content { padding: 18px 20px; min-height: 160px; }
  .ind-slide-content h3 { font-size: 18px; }
  .ind-slide-content p { font-size: 12.5px; }
  .ind-slide-stats > div { padding: 6px 10px; }
  .ind-slide-stats strong { font-size: 12px; }
  .ind-slide-stats span { font-size: 8px; }
  .ind-slide-tags span { font-size: 9px; padding: 3px 7px; }

  .industries-slider-track {
    flex-wrap: wrap;
    overflow-x: visible;
    overflow-y: visible;
    scroll-snap-type: none;
    padding: 0 0 8px;
    gap: 12px;
  }
  .ind-slide { flex: 0 0 100%; min-width: 0; height: auto; scroll-snap-align: none; }
  .ind-slide--feature { flex: 0 0 100%; }
  .ind-dots, .ind-nav { display: none; }
  .ind-image { height: 200px; }
  .team-card { grid-template-columns: 1fr; gap: 18px; padding: 20px; text-align: left; }
  .team-photo { width: 100%; height: 280px; }
  .process-stage { padding: 28px 22px; min-height: 180px; }
  .process-stage-name { font-size: 26px; }
  .process-stage-desc { font-size: 14px; }
  .process-step-btn { width: 56px; }
  .process-step-dot { width: 32px; height: 32px; font-size: 9.5px; }
  .process-step-label { font-size: 10px; top: 50px; }
  .form-grid { grid-template-columns: 1fr; }
  .product-specs { grid-template-columns: 1fr 1fr; }
  .process-list { grid-template-columns: 1fr; }
  .hc-title { font-size: 28px; line-height: 1.1; margin: 16px 0 14px; }
  .hc-desc { font-size: 14.5px; line-height: 1.55; margin-bottom: 24px; }
  .hc-inner { padding: 100px 0 280px; }
  .chip { font-size: 11px; padding: 6px 12px 6px 8px; gap: 6px; }
  .hc-trust-bar {
    flex-wrap: wrap;
    justify-content: center;
    padding: 10px 14px;
    bottom: 110px;
    width: calc(100% - 32px);
    gap: 0;
    border-radius: 16px;
  }
  .hc-trust-item { flex: 0 0 33.33%; padding: 6px 6px; }
  .hc-trust-item strong { font-size: 16px; }
  .hc-trust-item span { font-size: 8.5px; margin-top: 3px; letter-spacing: 0.3px; }
  .hc-trust-divider { display: none; }
  .hc-controls { bottom: 18px; }
  .hc-dots { gap: 6px; }
  .hc-dot { min-width: 36px; height: 28px; padding: 0 10px; font-size: 10px; }
  .hc-dot--active { min-width: 42px; }
  .hc-arrows { gap: 6px; }
  .hc-arrow { width: 38px; height: 38px; border-radius: 10px; }
  .hc-actions { gap: 8px; }
  .hc-actions .btn-pill { padding: 11px 18px; font-size: 13px; }
  .hc-actions .btn-pill--ghost { display: none; }

  .header { padding: 10px 12px 0; }
  .header--floating .header-inner { padding: 4px 4px 4px 14px; height: 60px; gap: 10px; }
  .header--floating .brand-mark { width: 36px; height: 36px; border-radius: 50%; }
  .header--floating .brand-name { font-size: 14.5px; }
  .header--floating .brand { gap: 8px; }
  .header--floating .menu-btn { width: 36px; height: 36px; border-radius: 10px; }
  .header--floating .menu-btn span { left: 10px; right: 10px; }
  .header--floating .menu-btn span:nth-child(1) { top: 13px; }
  .header--floating .menu-btn span:nth-child(2) { top: 19px; }

  .tabs {
    flex-wrap: wrap;
    overflow-x: visible;
    overflow-y: visible;
    border-radius: var(--r-md);
    padding: 6px;
    margin-bottom: 24px;
    background: rgba(255, 255, 255, 0.5);
    border: 1px solid var(--line);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    gap: 5px;
    max-width: 100%;
  }
  .tab {
    padding: 7px 12px;
    font-size: 11.5px;
    flex: 1 1 auto;
    justify-content: center;
    min-width: 0;
    background: rgba(255, 255, 255, 0.6);
    border: 1px solid var(--line);
    gap: 4px;
  }
  .tab .tab-count { font-size: 9px; padding: 1px 5px; }

  .container { padding: 0 16px; }
  :root { --pad: 16px; }
}

/* ---------- Animations ---------- */
body { animation: pageIn 0.6s ease-out; }
@keyframes pageIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* ============================================================
   TECHNICAL DATA SHEETS — About Page (RESTORED)
   ============================================================ */
.tds-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 56px;
}
.tds-feature {
  padding: 32px 28px;
  background: var(--glass-bg-strong);
  border: 1px solid var(--glass-border);
  border-radius: var(--r-lg);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  box-shadow: var(--glass-shadow);
  position: relative;
  transition: transform 0.3s, box-shadow 0.3s;
  display: flex;
  flex-direction: column;
}
.tds-feature::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.9), transparent);
}
.tds-feature:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 56px -16px rgba(10, 14, 26, 0.15);
}
.tds-feature-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--accent-faint);
  border: 1px solid rgba(200, 153, 104, 0.2);
  color: var(--accent-2);
  display: grid;
  place-items: center;
  margin-bottom: 20px;
}
.tds-feature h3 {
  font-family: var(--f-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--ink);
  margin: 0 0 10px;
  letter-spacing: -0.02em;
}
.tds-feature p {
  font-size: 13.5px;
  line-height: 1.6;
  color: var(--text-soft);
  margin: 0 0 16px;
  flex: 1;
}
.tds-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin: 0;
  padding: 0;
  flex: 1;
}
.tds-list li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12.5px;
  color: var(--text-soft);
}
.tds-list li::before {
  content: "→";
  color: var(--accent);
  font-weight: 700;
}
.tds-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
  padding: 10px 0;
  align-self: flex-start;
  transition: color 0.2s ease;
}
.tds-cta:hover { color: var(--accent-2); }

/* Sample TDS Preview Card */
.tds-preview {
  background: var(--ink);
  color: white;
  border-radius: var(--r-2xl);
  overflow: hidden;
  box-shadow: 0 24px 64px -16px rgba(10, 14, 26, 0.35);
  position: relative;
  isolation: isolate;
}
.tds-preview::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: radial-gradient(circle at 80% 20%, rgba(200, 153, 104, 0.12), transparent 60%);
}
.tds-preview::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image:
    linear-gradient(to right, rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 32px 32px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 50%, black 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 50%, black 30%, transparent 80%);
}
.tds-preview-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
  padding: 32px 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.tds-preview-brand {
  display: flex;
  align-items: center;
  gap: 14px;
}
.tds-preview-brand .brand-mark {
  background: white;
  border-radius: 50%;
  padding: 0;
}
.tds-preview-brand strong {
  display: block;
  font-family: var(--f-display);
  font-size: 18px;
  font-weight: 700;
  color: white;
  letter-spacing: -0.01em;
  line-height: 1.2;
}
.tds-preview-brand span {
  display: block;
  font-family: var(--f-mono);
  font-size: 11px;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 2px;
}
.tds-preview-meta {
  display: flex;
  gap: 24px;
}
.tds-preview-meta > div {
  display: flex;
  flex-direction: column;
}
.tds-preview-meta span {
  font-family: var(--f-mono);
  font-size: 10px;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 4px;
}
.tds-preview-meta strong {
  font-family: var(--f-display);
  font-size: 14px;
  font-weight: 600;
  color: white;
  letter-spacing: -0.01em;
}
.tds-preview-body {
  padding: 28px 40px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.tds-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--r-md);
  overflow: hidden;
}
.tds-cell {
  display: flex;
  flex-direction: column;
  padding: 14px 20px;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.02);
}
.tds-cell:last-child { border-right: 0; }
.tds-cell span {
  font-family: var(--f-mono);
  font-size: 10px;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 4px;
}
.tds-cell strong {
  font-family: var(--f-display);
  font-size: 15px;
  font-weight: 700;
  color: white;
  letter-spacing: -0.01em;
}
.tds-preview-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  padding: 20px 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(0, 0, 0, 0.2);
}
.tds-preview-foot span {
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.6);
  font-style: italic;
}

/* TDS responsive */
@media (max-width: 1100px) {
  .tds-grid { grid-template-columns: repeat(2, 1fr); }
  .tds-row { grid-template-columns: repeat(3, 1fr); }
  .tds-preview-head { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 900px) {
  .tds-grid { grid-template-columns: 1fr; }
  .tds-row { grid-template-columns: 1fr 1fr; }
  .tds-cell { border-right: 0; border-bottom: 1px solid rgba(255, 255, 255, 0.08); }
  .tds-cell:nth-child(2n) { border-right: 0; }
  .tds-cell:nth-child(odd) { border-right: 1px solid rgba(255, 255, 255, 0.08); }
  .tds-cell:nth-last-child(-n+2) { border-bottom: 0; }
}
@media (max-width: 600px) {
  .tds-preview-head, .tds-preview-body, .tds-preview-foot { padding: 20px; }
  .tds-preview-meta { gap: 16px; }
  .tds-row { grid-template-columns: 1fr; }
  .tds-cell { border-right: 0 !important; border-bottom: 1px solid rgba(255, 255, 255, 0.08); }
  .tds-cell:last-child { border-bottom: 0; }
}

/* ============================================================
   FOOTER MAP SECTION — Professional Map Showcase
   Appears on all pages above the footer
   ============================================================ */
.footer-map {
  position: relative;
  background:
    linear-gradient(180deg, var(--bg) 0%, var(--bg) 40%, var(--ink) 40%, var(--ink) 100%);
  padding: 100px 0 0;
  z-index: 1;
}
.footer-map-head {
  max-width: 640px;
  margin: 0 auto 56px;
  text-align: center;
  position: relative;
}
.footer-map-head .eyebrow {
  justify-content: center;
  color: var(--text-soft);
}
.footer-map-head .eyebrow span {
  margin: 0 4px;
}
.footer-map-title {
  font-family: var(--f-display);
  font-size: clamp(32px, 4.5vw, 56px);
  line-height: 1.05;
  letter-spacing: -0.035em;
  font-weight: 700;
  color: var(--ink);
  margin: 0 0 18px;
}
.footer-map-title em {
  font-style: italic;
  font-weight: 500;
  color: var(--accent);
  font-family: "Plus Jakarta Sans", Georgia, serif;
}
.footer-map-head p {
  font-size: 16.5px;
  line-height: 1.7;
  color: var(--text-soft);
  margin: 0;
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
}

.footer-map-card {
  position: relative;
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--r-2xl);
  overflow: hidden;
  box-shadow: 0 32px 64px -24px rgba(0, 0, 0, 0.5);
  isolation: isolate;
}
.footer-map-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: radial-gradient(circle at 80% 20%, rgba(200, 153, 104, 0.12), transparent 60%);
  pointer-events: none;
}
.footer-map-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image:
    linear-gradient(to right, rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 32px 32px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 50%, black 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 50%, black 30%, transparent 80%);
  pointer-events: none;
}
.footer-map-card > iframe {
  width: 100%;
  height: 100%;
  min-height: 480px;
  border: 0;
  display: block;
  filter: saturate(0.7) contrast(1.05);
}
.footer-map-info {
  padding: 48px 44px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: white;
  position: relative;
  z-index: 1;
}
.footer-map-info h3 {
  font-family: var(--f-display);
  font-size: 28px;
  font-weight: 700;
  color: white;
  margin: 0 0 8px;
  letter-spacing: -0.025em;
  line-height: 1.1;
}
.footer-map-addr {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.7);
  margin: 0 0 28px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.footer-map-info .btn-pill--inverse {
  align-self: flex-start;
  margin-bottom: 20px;
}
.footer-map-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13.5px;
  font-weight: 500;
  color: var(--accent);
  transition: all 0.2s ease;
  align-self: flex-start;
  margin-top: 4px;
}
.footer-map-link:hover {
  color: #e0bf95;
  gap: 8px;
}

/* Floating pin marker overlay on map (left side) */
.footer-map-card::before {
  border-radius: var(--r-2xl);
}

@media (max-width: 1100px) {
  .footer-map-card { grid-template-columns: 1.4fr 1fr; }
  .footer-map-info { padding: 40px 32px; }
  .footer-map-info h3 { font-size: 24px; }
  .footer-map-card > iframe { min-height: 420px; }
}
@media (max-width: 900px) {
  .footer-map { padding-top: 80px; }
  .footer-map-head { margin-bottom: 40px; }
  .footer-map-card { grid-template-columns: 1fr; }
  .footer-map-card > iframe { min-height: 360px; }
  .footer-map-info { padding: 36px 32px; }
  .footer-map-info h3 { font-size: 22px; }
  .footer-map-addr { margin-bottom: 20px; padding-bottom: 18px; }
}
@media (max-width: 600px) {
  .footer-map { padding: 70px 0 0; }
  .footer-map-head { margin-bottom: 32px; }
  .footer-map-card { border-radius: var(--r-xl); }
  .footer-map-card > iframe { min-height: 300px; }
  .footer-map-info { padding: 28px 24px; }
  .footer-map-info h3 { font-size: 20px; margin-bottom: 6px; }
  .footer-map-addr { font-size: 13.5px; margin-bottom: 18px; padding-bottom: 16px; }
}
