/* ═══════════════════════════════════════════════════════════════
   STATON s.r.o. - Immersive Industrial Scrollytelling
   Design System & Global Styles
   ═══════════════════════════════════════════════════════════════ */

/* sans-serif is used as the primary font */

/* - CSS Custom Properties ------------------ */
:root {
  --black: #000000;
  --white: #FFFFFF;
  --green: #07923a;
  --green-glow: transparent;
  --green-dim: rgba(7, 146, 58, 0.05);
  --copper: #B87333;
  --copper-light: #d59451;
  --glass-bg: rgba(255, 255, 255, 0.03);
  --glass-border: rgba(255, 255, 255, 0.06);
  --glass-bg-strong: rgba(255, 255, 255, 0.06);
  --text-dim: rgba(255, 255, 255, 0.5);
  --text-muted: rgba(255, 255, 255, 0.3);
  --font-main: sans-serif;
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
}

/* - Reset & Base ---------------------- */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  overflow-x: hidden;
  scrollbar-width: thin;
  scrollbar-color: var(--green) var(--black);
}

html::-webkit-scrollbar {
  width: 4px;
}

html::-webkit-scrollbar-track {
  background: var(--black);
}

html::-webkit-scrollbar-thumb {
  background: var(--green);
  border-radius: 2px;
}

body {
  font-family: var(--font-main);
  background: var(--black);
  color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body.hero-locked {
  overflow: hidden;
  height: 100vh;
  height: 100svh;
}

body.loading {
  overflow: hidden;
}

body.loading .section,
body.loading .floating-nav,
body.loading .nav,
body.loading .whatsapp-fab {
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
}



/* - 3D Background Canvas ------------------ */
#bg-canvas {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.22;
}

/* - Vignette overlay -------------------- */
.vignette {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background: radial-gradient(ellipse at center, transparent 40%, rgba(0, 0, 0, 0.6) 100%);
}



/* - Parallax Background Grid ---------------- */
.parallax-grid {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(7, 146, 58, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(7, 146, 58, 0.03) 1px, transparent 1px);
  background-size: 80px 80px;
  will-change: transform;
}

/* - Navigation (Logo) ------------------- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1001;
  padding: 24px 48px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  transition: padding 0.4s, background 0.4s, opacity 0.5s var(--ease-out-expo), visibility 0.5s;
  pointer-events: none;
}

.nav.scrolled {
  padding: 24px 48px;
}

.nav-logo {
  height: 32px;
  pointer-events: auto;
  cursor: pointer;
  transition: transform 0.3s var(--ease-out-expo);
}

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

.nav.out-of-hero {
  opacity: 0 !important;
  visibility: hidden !important;
  pointer-events: none !important;
  transform: translateY(-20px) !important;
}

/* Keep hamburger inside nav so it scrolls away with the logo */
.nav .mob-hamburger {
  position: absolute;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
}

/* - Floating Navigation (Bottom Pills) --------- */
.floating-nav {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3000;
  display: flex;
  gap: 6px;
  align-items: center;
  opacity: 0;
  pointer-events: none;
}

body:not(.loading) .floating-nav {
  animation: slideUpFade 0.8s var(--ease-out-expo) forwards;
  pointer-events: auto;
}

@keyframes slideUpFade {
  0% {
    transform: translate(-50%, 40px);
    opacity: 0;
  }

  100% {
    transform: translate(-50%, 0);
    opacity: 1;
  }
}

.nav-links-pill {
  background: rgba(10, 10, 10, 0.45);
  backdrop-filter: blur(24px) saturate(160%) brightness(1.2);
  -webkit-backdrop-filter: blur(24px) saturate(160%) brightness(1.2);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 100px;
  padding: 3px;
  display: flex;
  gap: 2px;
  list-style: none;
  align-items: center;
  position: relative;
  /* Base for sliding indicator */
  box-shadow:
    0 10px 40px -10px rgba(0, 0, 0, 0.5),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.nav-hover-indicator {
  position: absolute;
  top: 3px;
  left: 0;
  height: calc(100% - 6px);
  background: rgba(255, 255, 255, 0.1);
  border-radius: 100px;
  pointer-events: none;
  z-index: 0;
  opacity: 0;
  will-change: transform, width;
}

.nav-links-pill li {
  position: relative;
  z-index: 1;
}

.nav-links-pill li a {
  color: var(--white);
  text-decoration: none;
  font-size: 0.64rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  padding: 12px 10px;
  border-radius: 100px;
  transition: color 0.3s var(--ease-out-expo), transform 0.3s;
  display: inline-block;
  white-space: nowrap;
}

.nav-links-pill li a.active {
  color: var(--white);
  font-weight: 700;
}

.nav-links-pill li a:hover {
  transform: scale(1.05);
}

.contact-pill {
  background: var(--copper);
  color: var(--white);
  text-decoration: none;
  font-size: 0.64rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  padding: 12px 18px;
  border-radius: 100px;
  transition: all 0.4s var(--ease-out-expo);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow:
    0 12px 30px -10px rgba(184, 115, 51, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
  white-space: nowrap;
}

.contact-pill:hover {
  background: var(--copper-light);
  transform: translateY(-6px);
  box-shadow: 0 20px 40px -10px rgba(184, 115, 51, 0.6);
}

.contact-pill.active {
  position: relative;
  box-shadow:
    0 0 25px rgba(184, 115, 51, 0.5),
    0 12px 30px -10px rgba(184, 115, 51, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
  background: var(--copper-light);
}

.contact-pill:active {
  transform: translateY(-2px);
}

/* - Section Base ---------------------- */
.section {
  position: relative;
  z-index: 1;
  padding: 80px 48px 40px;
}

/* - Sub-Page Hero ---------------------- */
.sub-hero {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--black);
}

.sub-hero-title {
  font-size: clamp(3rem, 7vw, 6rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--white);
  text-align: center;
}

/* ═══════════════════════════════════════════════════════════════
   HERO SEQUENCE SECTION
   ═══════════════════════════════════════════════════════════════ */
.hero-sequence-section {
  position: relative;
  height: 100vh;
  height: 100svh;
  width: 100%;
  background: var(--black);
  overscroll-behavior: none;
  touch-action: pan-y;
}

.hero-sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  height: 100svh;
  width: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--black);
}

#hero-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  z-index: 1;
  will-change: auto;
  contain: strict;
}

.hero-blend-overlay {
  position: absolute;
  inset: -2px;
  z-index: 2;
  pointer-events: none;
  background:
    linear-gradient(to top, var(--black) 0%, var(--black) 2%, transparent 15%),
    radial-gradient(circle at 0% 0%, var(--black) 0%, transparent 45%),
    radial-gradient(circle at 100% 0%, var(--black) 0%, transparent 45%),
    radial-gradient(circle at 0% 100%, var(--black) 0%, transparent 45%),
    radial-gradient(circle at 100% 100%, var(--black) 0%, transparent 45%),
    radial-gradient(circle at center, transparent 40%, var(--black) 100%);
  opacity: 1;
}

/* - Hero Loader ---------- */
.hero-loader {
  position: fixed;
  inset: 0;
  z-index: 5000;
  /* Above everything */
  background: var(--black);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.hero-loader.transparent-bg {
  background: transparent;
}

.hero-loader.hidden {
  opacity: 0;
  pointer-events: none;
}

.bloom-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 40px;
}

.loader-logo {
  height: 32px;
  width: auto;
  position: relative;
  z-index: 10;
  filter: none;
  opacity: 0;
  transform: scale(0.8);
  /* Start smaller for bloom effect */
}

.loader-bloom {
  position: absolute;
  width: 150px;
  height: 150px;
  background: transparent;
  border-radius: 50%;
  z-index: 5;
  opacity: 0;
}

@keyframes bloomPulse {
  0% {
    transform: scale(0.8);
    opacity: 0.3;
  }

  100% {
    transform: scale(1.2);
    opacity: 0.6;
  }
}

.loader-status {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.loader-text {
  font-size: 0.65rem;
  letter-spacing: 0.5em;
  color: var(--green);
  font-weight: 700;
  text-shadow: none;
}

.loader-progress {
  font-size: 1.2rem;
  font-weight: 300;
  color: var(--white);
  letter-spacing: 0.1em;
  opacity: 0.8;
}

/* Hide the main nav logo until the loader logo travels to its spot */
.nav-logo.hidden {
  opacity: 0;
  visibility: hidden;
}

.hero-text-layer {
  position: absolute;
  inset: 0;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

.hero-chapter {
  position: absolute;
  font-family: var(--font-main);
  color: var(--white);
  text-align: left;
  max-width: 800px;
  opacity: 0;
  transform: translateY(50px);
  will-change: opacity, transform;
}

#chapter-1 {
  opacity: 1;
  transform: translateY(0);
}

.hero-chapter.pos-top-left {
  top: 12%;
  left: 48px;
  right: auto;
}

.hero-chapter.pos-bottom-left {
  bottom: 12%;
  left: 48px;
  right: auto;
}

.hero-chapter.pos-bottom-right {
  bottom: 12%;
  right: 48px;
  left: auto;
  text-align: right;
}

.chapter-eyebrow {
  font-size: 0.65rem;
  color: var(--copper-light);
  text-transform: uppercase;
  letter-spacing: 0.25em;
  margin-bottom: 8px;
  font-weight: 600;
}

.chapter-title {
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  line-height: 1.05;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
  color: var(--white);
}

.chapter-title .title-light {
  font-weight: 300;
  opacity: 0.95;
}

.chapter-title .title-bold {
  font-weight: 800;
}

.chapter-desc {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.6;
  max-width: 320px;
  font-weight: 400;
}



/* ═══════════════════════════════════════════════════════════════
   WHY STATON - PRODUCT SHOWCASE
   ═══════════════════════════════════════════════════════════════ */
.why-staton {
  padding: 80px 48px 40px;
  position: relative;
  z-index: 20;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.why-header {
  text-align: center;
  margin-bottom: 80px;
}

.why-title {
  font-size: clamp(2.2rem, 4.5vw, 3.6rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  margin-bottom: 16px;
  opacity: 0;
  transform: translateY(40px);
}

.why-subtitle {
  font-size: clamp(1.2rem, 2vw, 1.5rem);
  color: var(--text-dim);
  opacity: 0;
}

.why-subtitle .accent {
  color: var(--green);
  text-shadow: none;
}

.why-product-showcase {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 1200px;
  position: relative;
  gap: 32px;
}

.why-tool-container {
  position: relative;
  flex-shrink: 0;
  width: clamp(250px, 30vw, 400px);
  z-index: 5;
  opacity: 0;
}

.why-tool-wrapper {
  position: relative;
  width: 100%;
  z-index: 2;
}

#why-3d-tool {
  width: 100%;
  height: 600px;
  position: relative;
  overflow: visible;
  z-index: 2;
  pointer-events: none;
}

#why-3d-tool canvas {
  position: relative;
  z-index: 2;
}

@keyframes toolFloat {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-20px);
  }
}

.pause-float {
  animation-play-state: paused !important;
}

.why-tool-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 120%;
  height: 120%;
  background: radial-gradient(circle, rgba(7, 146, 58, 0.25) 0%, rgba(7, 146, 58, 0) 75%);
  z-index: 1;
  filter: blur(40px);
  pointer-events: none;
}

.why-tool-img {
  width: 100%;
  height: auto;
  display: block;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.8));
  animation: toolFloat 6s ease-in-out infinite;
}

.why-cards {
  display: flex;
  flex-direction: column;
  gap: 32px;
  width: 100%;
  max-width: 380px;
  flex: none;
}

.left-cards .why-card {
  transform: translateX(-100px);
}

.right-cards .why-card {
  transform: translateX(100px);
}

.india-glass-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 30px;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: all 0.4s var(--ease-out-expo);
  opacity: 0;
}

.why-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 40px 32px;
  border-radius: 16px;
  opacity: 0;
  position: relative;
  overflow: hidden;
  transition: transform 0.4s var(--ease-out-expo), border-color 0.4s, background 0.4s;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.why-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--copper-light), transparent);
  opacity: 0;
  transition: opacity 0.5s;
}

.why-card:hover {
  border-color: rgba(184, 115, 51, 0.4);
  background: var(--glass-bg-strong);
  transform: translateY(-5px) !important;
}

.why-card:hover::before {
  opacity: 1;
}

.why-card-title {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
  letter-spacing: 0.02em;
}

.why-card-desc {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.5;
}

@media (max-width: 992px) {
  .why-product-showcase {
    flex-direction: column;
    align-items: center;
  }

  .why-cards {
    width: 100%;
    max-width: 500px;
    gap: 24px;
    align-items: center;
  }

  .left-cards {
    order: 1;
  }

  .why-tool-container {
    width: 160px;
    margin: 0 auto;
    order: 2;
    /* Give the container enough height so the absolute glow has room */
    min-height: 400px;
    overflow: visible;
  }

  .why-tool-wrapper {
    width: 160px;
    margin: 0 auto;
  }

  #why-3d-tool {
    height: 400px;
    z-index: 2;
  }

  .why-tool-glow {
    /* Stay centered relative to container — don't move with the 3D wrapper */
    z-index: 1;
    width: 340px;
    height: 340px;
    max-width: 340px;
    max-height: 340px;
    background: radial-gradient(circle, rgba(7, 146, 58, 0.4) 0%, rgba(7, 146, 58, 0) 75%);
    pointer-events: none;
  }

  .right-cards {
    order: 3;
  }

  .left-cards .why-card {
    transform: translateY(50px);
  }

  .right-cards .why-card {
    transform: translateY(50px);
  }
}

/* ═══════════════════════════════════════════════════════════════
   fsARC™ SCROLLYTELLING COMPARISON
   ═══════════════════════════════════════════════════════════════ */

/* - fsARC Section ---------- */
.fsarc-section {
  position: relative;
  padding: 40px 48px 0;
  min-height: 80vh;
  z-index: 1;
}

.fsarc-title-block {
  text-align: center;
  width: 100%;
}

.fsarc-title-heading {
  font-size: clamp(2.2rem, 4.5vw, 3.6rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 16px;
}

.fsarc-title-heading .accent {
  color: var(--green);
  text-shadow: none;
}

.fsarc-title-sub {
  font-size: clamp(1.2rem, 2vw, 1.5rem);
  color: var(--text-dim);
  line-height: 1.7;
  max-width: 560px;
  margin: 0 auto;
}

/* - fsARC Comparison Layout ---------- */
.fsarc-comparison-layout {
  max-width: 1500px;
  margin: 40px auto 0;
  display: flex;
  flex-direction: column;
  gap: 0;
  /* Eliminated gap between rows */
}

.fsarc-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.fsarc-tool-wrap {
  position: relative;
  width: clamp(750px, 75vw, 1250px);
  height: 600px;
  flex-shrink: 0;
  z-index: 5;
}

.fsarc-tool-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: clamp(350px, 45vw, 580px);
  height: 720px;
  background: radial-gradient(circle, rgba(7, 146, 58, 0.25) 0%, rgba(7, 146, 58, 0) 70%);
  z-index: 0;
  filter: blur(40px);
  opacity: 0;
  pointer-events: none;
}

.fsarc-tool-grid {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: clamp(350px, 45vw, 580px);
  height: 720px;
  background-image:
    linear-gradient(rgba(7, 146, 58, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(7, 146, 58, 0.03) 1px, transparent 1px);
  background-size: 80px 80px;
  background-attachment: fixed;
  mask-image: radial-gradient(circle, black 30%, transparent 70%);
  -webkit-mask-image: radial-gradient(circle, black 30%, transparent 70%);
  z-index: 0;
  opacity: 0;
  pointer-events: none;
}

/* Offset Row 1 effects to match tool position */
.fsarc-row:not(.reverse-row) .fsarc-tool-glow,
.fsarc-row:not(.reverse-row) .fsarc-tool-grid {
  left: calc(50% - 80px);
}

.fsarc-tool-img {
  width: 100%;
  height: 100%;
  z-index: 2;
  position: relative;
  pointer-events: none;
}

.rough-tool {
  left: -80px;
  transform: rotate(-6deg);
  opacity: 0;
}

.smooth-tool {
  transform: rotate(4deg);
  opacity: 0;
}

.fsarc-text-block {
  flex: 0 0 380px;
  max-width: 100%;
  position: relative;
  z-index: 2;
}

/* Pull Row 1 text block closer to image */
.fsarc-row:not(.reverse-row) .fsarc-text-block {
  margin-left: -120px;
  left: -120px;
}

/* Pull Row 2 text block closer to image and shift row right */
.reverse-row {
  transform: translateX(120px);
}

.reverse-row .fsarc-text-block {
  margin-right: -120px;
}

.fsarc-text-title {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 24px;
  letter-spacing: -0.01em;
}

.accent-title {
  color: var(--white);
}

.fsarc-text-desc {
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.8;
  font-weight: 400;
}

/* - Opacity Reveal Animation - */
.opacity-reveal span {
  opacity: 0.05;
}




.fsarc-text-desc strong {
  color: var(--white);
  font-weight: 700;
}

.accent-desc {
  color: var(--text-dim);
}

.accent-desc strong {
  color: var(--green);
}

@media (max-width: 1100px) {
  .fsarc-row {
    flex-direction: column;
    align-items: center;
    gap: 40px;
    transform: none !important;
    overflow: visible;
  }

  .fsarc-row.reverse-row {
    flex-direction: column-reverse;
  }

  .fsarc-tool-wrap {
    width: 100%;
    max-width: 320px;
    height: 400px;
    margin: 0 auto;
    overflow: visible;
  }

  .fsarc-tool-img {
    width: 100%;
    height: 100%;
    left: 0 !important;
    transform: none;
  }

  .fsarc-tool-glow {
    left: 50% !important;
    width: 380px;
    height: 380px;
    max-width: 380px;
    max-height: 380px;
    background: radial-gradient(circle, rgba(7, 146, 58, 0.4) 0%, rgba(7, 146, 58, 0) 75%);
  }

  .fsarc-tool-grid {
    left: 50% !important;
    width: 80vw;
    max-width: 320px;
  }

  .fsarc-text-block {
    margin: 0 !important;
    left: 0 !important;
    text-align: center;
    flex: unset;
    width: 100%;
  }

  .rough-tool {
    left: 0 !important;
    transform: none;
  }

  .smooth-tool {
    transform: none;
  }
}

/* ═══════════════════════════════════════════════════════════════
   TOOL LIFECYCLE
   ═══════════════════════════════════════════════════════════════ */
.lifecycle-section {
  position: relative;
  padding: 120px 48px;
  background: var(--black);
  z-index: 10;
  overflow: hidden;
}

.lifecycle-header {
  text-align: center;
  margin-bottom: 120px;
}

.lifecycle-title {
  font-size: clamp(2.2rem, 4.5vw, 3.6rem);
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.04em;
  margin-bottom: 16px;
}

.lifecycle-subtitle {
  font-size: clamp(1.2rem, 2vw, 1.5rem);
  color: var(--text-dim);
  max-width: 600px;
  margin: 0 auto;
}

.lifecycle-track {
  position: relative;
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  height: 2000px;
  transition: height 0.3s ease;
}

.lifecycle-svg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: visible;
  pointer-events: none;
}

#motion-path {
  opacity: 0;
}


.lifecycle-gear-wrapper {
  position: absolute;
  width: 480px;
  height: 480px;
  top: 0;
  left: 0;
  z-index: 20;
  opacity: 0;
  visibility: hidden;
  will-change: transform;
  /* GSAP will transform this to move it along the path. 
     Initial centering offset handled by motion path alignment. */
}



.gear-shadow {
  position: absolute;
  bottom: -40px;
  left: 50%;
  width: 320px;
  height: 45px;
  background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.8) 0%, transparent 70%);
  transform: translateX(-50%);
  z-index: 1;
}

.gear-rotator {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 2;
}

.gear-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  opacity: 0;
  transition: opacity 0.5s var(--ease-in-out);
  filter: drop-shadow(0 15px 30px rgba(0, 0, 0, 0.6));
}

.gear-img.active {
  opacity: 1;
}

.lifecycle-stages {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 30;
  /* Ensure text is above gear (z:20) */
}

.lifecycle-stage {
  position: absolute;
  width: 320px;
  opacity: 0;
  transform: translateY(20px);
  will-change: opacity, transform;
}

/* Hardcoded vertical positions to match the SVG path nodes */
.lifecycle-stage:nth-child(1) {
  top: 0px;
}

.lifecycle-stage:nth-child(2) {
  top: 650px;
}

.lifecycle-stage:nth-child(3) {
  top: 1250px;
}

.lifecycle-stage:nth-child(4) {
  top: 1850px;
}

.lifecycle-stage.left {
  left: 0%;
  text-align: left;
}

.lifecycle-stage.right {
  right: 0%;
  text-align: left;
}

.stage-info {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(12px);
  padding: 30px;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  display: inline-block;
  width: 100%;
  pointer-events: auto;
  /* Allow interaction if needed */
  position: relative;
  z-index: 1;
}

.stage-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}

.stage-desc {
  font-size: 1.05rem;
  color: var(--text-dim);
  line-height: 1.6;
  text-align: left;
}

.lifecycle-stage .stage-title,
.lifecycle-stage .stage-desc {
  display: block;
  opacity: 0;
  transform: translateY(15px);
}


.lifecycle-stage.active-stage .stage-title,
.lifecycle-stage.active-stage .stage-desc {
  opacity: 1;
  transform: translateY(0);
}

.lifecycle-stage.active-stage .stage-desc {
  transition-delay: 0.15s;
}

@media (max-width: 900px) {
  .lifecycle-section {
    padding: 80px 24px 150px;
  }

  .lifecycle-header {
    margin-bottom: 80px;
  }

  .lifecycle-track {
    height: 1600px;
  }

  .lifecycle-svg {
    transform: translateX(-30px);
  }

  .lifecycle-gear-wrapper {
    width: 320px;
    height: 320px;
  }

  .lifecycle-stage:nth-child(1) {
    top: 0px;
  }

  .lifecycle-stage:nth-child(2) {
    top: 500px;
  }

  .lifecycle-stage:nth-child(3) {
    top: 1000px;
  }

  .lifecycle-stage:nth-child(4) {
    top: 1400px;
    right: 5%;
  }

  .lifecycle-stage.left {
    left: 0;
  }

  .lifecycle-stage.right {
    right: 0;
  }
}

@media (max-width: 600px) {
  .lifecycle-track {
    height: 1200px;
  }

  .lifecycle-svg {
    transform: none;
  }

  .lifecycle-stage {
    width: 170px;
  }

  .lifecycle-stage:nth-child(1) {
    top: 0px;
  }

  .lifecycle-stage:nth-child(2) {
    top: 380px;
  }

  .lifecycle-stage:nth-child(3) {
    top: 760px;
  }

  .lifecycle-stage:nth-child(4) {
    top: 1050px;
  }

  .lifecycle-gear-wrapper {
    width: 200px;
    height: 200px;
  }

  .gear-shadow {
    width: 110px;
    height: 18px;
    bottom: -10px;
  }

  .stage-info {
    padding: 15px;
    border-radius: 12px;
  }

  .stage-title {
    font-size: 1.1rem;
    margin-bottom: 4px;
  }

  .stage-desc {
    font-size: 0.85rem;
  }
}

/* ═══════════════════════════════════════════════════════════════
   MACHINE PORTFOLIO
   ═══════════════════════════════════════════════════════════════ */
.machines-section {
  padding: 120px 48px 60px;
  position: relative;
}

.machines-headline {
  font-size: clamp(2.2rem, 4.5vw, 3.6rem);
  font-weight: 800;
  text-align: center;
  letter-spacing: -0.04em;
  margin-bottom: 120px;
}

.machines-headline .accent {
  color: var(--green);
}

.machine-item {
  display: flex;
  align-items: center;
  gap: 80px;
  margin-bottom: 120px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  opacity: 0;
  transform: translateY(80px);
  cursor: pointer;
  position: relative;
  will-change: transform, opacity;
}

.machine-item:last-child {
  margin-bottom: 0;
}

.machine-item.visible {
  opacity: 1;
  transform: translateY(0);
}

.machine-item:nth-child(even) {
  flex-direction: row-reverse;
}

.machine-image-wrap {
  flex: 1;
  perspective: 1200px;
  position: relative;
}

.machine-image-inner {
  position: relative;
  transform-style: preserve-3d;
  will-change: transform;
  transition: transform 0.6s var(--ease-out-expo);
}

.machine-item:hover .machine-image-inner {
  transform: scale(1.03);
}

.machine-image {
  width: 100%;
  height: auto;
  border-radius: 16px;
  position: relative;
  z-index: 2;
  filter: drop-shadow(0 30px 60px rgba(0, 0, 0, 0.5));
}

.machine-image-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90%;
  height: 90%;
  background: radial-gradient(circle, rgba(7, 146, 58, 0.45) 0%, rgba(7, 146, 58, 0) 70%);
  opacity: 0;
  transition: opacity 1.2s var(--ease-out-expo), transform 1.2s var(--ease-out-expo);
  z-index: 1;
  filter: blur(80px);
}

.machine-item:hover .machine-image-glow {
  opacity: 0.6;
  transform: translate(-50%, -50%) scale(1.2);
}

.machine-info {
  flex: 1;
}

.machine-tag {
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.machine-tag::before {
  content: '';
  width: 24px;
  height: 1px;
  background: var(--green);
}

.machine-name {
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
  line-height: 1.1;
}

.machine-desc {
  font-size: 1rem;
  color: var(--text-dim);
  line-height: 1.8;
  margin-bottom: 36px;
  max-width: 440px;
}

.machine-specs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.spec-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  padding: 20px;
  backdrop-filter: blur(10px);
  transition: all 0.4s var(--ease-out-expo);
}

.spec-card:hover {
  border-color: rgba(7, 146, 58, 0.4);
  background: var(--glass-bg-strong);
  transform: translateY(-8px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4), 0 0 20px rgba(7, 146, 58, 0.1);
}

.spec-value {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--green);
  margin-bottom: 4px;
}

.spec-label {
  font-size: 0.7rem;
  color: var(--text-muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* ═══════════════════════════════════════════════════════════════
   PERFORMANCE & COST EFFICIENCY
   ═══════════════════════════════════════════════════════════════ */


/* ═══════════════════════════════════════════════════════════════
   PERFORMANCE CALCULATOR (ROI)
   ═══════════════════════════════════════════════════════════════ */
/* ═══════════════════════════════════════════════════════════════
   ROI SAVINGS CALCULATOR
   ═══════════════════════════════════════════════════════════════ */
.roi-section {
  padding: 140px 48px;
  background: var(--black);
  position: relative;
  overflow: hidden;
}

.roi-container {
  max-width: 1400px;
  margin: 0 auto;
}

.roi-header {
  text-align: center;
  margin-bottom: 100px;
}

.roi-eyebrow {
  font-size: 0.75rem;
  color: var(--green);
  letter-spacing: 0.5em;
  font-weight: 700;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.roi-headline {
  font-size: clamp(2.2rem, 4.5vw, 3.6rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.1;
  margin-bottom: 16px;
}

.roi-tagline {
  font-size: clamp(1.2rem, 2vw, 1.5rem);
  color: var(--text-dim);
  max-width: 900px;
  margin: 0 auto;
  line-height: 1.6;
}

.roi-tagline strong {
  color: var(--white);
  font-weight: 700;
}

/* - New ROI Styles - */
.roi-engine {
  max-width: 900px;
  margin: 60px auto 0;
  background: rgba(255, 255, 255, 0.01);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 24px;
  backdrop-filter: blur(20px);
  padding: 40px;
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.5);
  position: relative;
  overflow: hidden;
}

.roi-engine::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at center, rgba(7, 146, 58, 0.03) 0%, transparent 50%);
  pointer-events: none;
}

.roi-engine-inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  position: relative;
  z-index: 2;
}

@media (max-width: 900px) {
  .roi-engine-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

/* instrument visual */
.roi-instrument-visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.roi-meter-wrap {
  position: relative;
  width: 240px;
  height: 240px;
  margin-bottom: 40px;
}

.roi-svg-meter {
  transform: rotate(-90deg);
  width: 100%;
  height: 100%;
  filter: drop-shadow(0 0 15px rgba(7, 146, 58, 0.3));
}

.meter-track {
  fill: none;
  stroke: rgba(255, 255, 255, 0.05);
  stroke-width: 8;
}

.meter-progress {
  fill: none;
  stroke: var(--green);
  stroke-width: 8;
  stroke-linecap: round;
  stroke-dasharray: 565.48;
  /* 2 * PI * 90 */
  transition: stroke-dashoffset 0.8s var(--ease-out-expo);
}

.roi-percentage-wrap {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}

.roi-percent-val {
  font-size: 3.5rem;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
}

.roi-percent-label {
  font-size: 0.6rem;
  letter-spacing: 0.3em;
  color: var(--green);
  font-weight: 800;
  margin-top: 5px;
}

.roi-results-summary {
  width: 100%;
  display: grid;
  gap: 12px;
}

.res-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 20px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 12px;
}

.res-item.highlighted {
  border-color: rgba(7, 146, 58, 0.3);
  background: linear-gradient(90deg, rgba(7, 146, 58, 0.1), transparent);
}

.res-label {
  font-size: 0.75rem;
  color: var(--text-dim);
}

.res-value {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
}

.res-item.highlighted .res-value {
  color: var(--green);
}

/* tuning controls */
.roi-tuning-controls {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.tuning-header {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  padding-bottom: 15px;
  margin-bottom: 10px;
}

.tuning-title {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  color: var(--text-muted);
  font-weight: 700;
}

.tuning-id {
  font-size: 0.6rem;
  color: var(--green);
  opacity: 0.6;
}

.tuning-group {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

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

.tuning-info label {
  font-size: 0.85rem;
  color: var(--text-dim);
  font-weight: 500;
}

.tuning-unit {
  font-size: 0.65rem;
  color: var(--green);
  font-weight: 800;
}

.tuning-val-pill {
  width: fit-content;
  padding: 4px 12px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--white);
  align-self: flex-start;
}

/* Range Slider Styling */
.roi-slider {
  -webkit-appearance: none;
  width: 100%;
  height: 4px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 2px;
  outline: none;
}

.roi-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 18px;
  height: 18px;
  background: var(--green);
  border: 3px solid var(--black);
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 0 10px rgba(7, 146, 58, 0.5);
  transition: transform 0.2s;
}

.roi-slider::-webkit-slider-thumb:hover {
  transform: scale(1.2);
}

.roi-slider::-moz-range-thumb {
  width: 18px;
  height: 18px;
  background: var(--green);
  border: 3px solid var(--black);
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 0 10px rgba(7, 146, 58, 0.5);
}

.roi-tech-note {
  font-size: 0.65rem;
  color: var(--text-muted);
  font-style: italic;
  margin-top: auto;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 20px;
}

/* ═══════════════════════════════════════════════════════════════
   INDUSTRY CONTINUUM
   ═══════════════════════════════════════════════════════════════ */
.industry-section {
  padding: 120px 48px 60px;
  position: relative;
}

.industry-headline {
  font-size: clamp(2.2rem, 4.5vw, 3.6rem);
  font-weight: 800;
  text-align: center;
  letter-spacing: -0.04em;
  margin-bottom: 120px;
}

.industry-matrix {
  display: grid;
  grid-template-columns: repeat(4, minmax(240px, 1fr));
  gap: 24px;
  max-width: 1600px;
  margin: 0 auto;
  perspective: 1200px;
}

.industry-card {
  position: relative;
  height: 420px;
  border-radius: 24px;
  overflow: hidden;
  background: var(--black);
  border: 1px solid var(--glass-border);
  transition: all 0.6s var(--ease-out-expo);
  cursor: pointer;
  opacity: 0;
  transform: translateY(40px);
}

.industry-card.visible {
  opacity: 1;
  transform: translateY(0);
}

.industry-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 30%, rgba(0, 0, 0, 0.9) 100%);
  z-index: 2;
  transition: opacity 0.4s;
}

.industry-card-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
}

.industry-card-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(0.5) brightness(0.7);
  transition: all 1s var(--ease-out-expo);
}

.industry-card:hover .industry-card-bg img {
  filter: grayscale(0) brightness(0.9);
  transform: scale(1.1);
}

.industry-card-content {
  position: absolute;
  inset: 0;
  padding: 40px;
  z-index: 3;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  transition: transform 0.4s var(--ease-out-expo);
}

.industry-card-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}

.industry-card-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--green-dim);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(7, 146, 58, 0.2);
}

.industry-card-icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--green);
  fill: none;
  stroke-width: 2;
}

.industry-card-title {
  font-size: 1.8rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.industry-card-body {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: all 0.5s var(--ease-out-expo);
}

.industry-card:hover .industry-card-body {
  max-height: 300px;
  opacity: 1;
  margin-top: 20px;
}

.industry-card:hover .industry-card-content {
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(5px);
}

.industry-info-group label {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--text-muted);
  display: block;
  margin-bottom: 8px;
}

.industry-info-group p {
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--text-dim);
}

.industry-info-group.solution p {
  color: var(--white);
  font-weight: 500;
  border-left: 2px solid var(--green);
  padding-left: 15px;
}

.industry-card:hover {
  border-color: var(--green);
  box-shadow: 0 30px 60px -12px rgba(0, 0, 0, 0.7);
}

@media (min-width: 769px) and (max-width: 1024px) {
  .industry-matrix {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .industry-matrix {
    grid-template-columns: 1fr;
  }

  .industry-card {
    height: 400px;
  }

  .industry-card-body {
    max-height: 200px;
    opacity: 1;
    margin-top: 15px;
  }
}

.india-section {
  padding: 120px 48px;
  background: transparent;
  overflow: visible;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}

.india-container {
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
}

.india-header {
  position: relative;
  margin-bottom: 80px;
  z-index: 10;
  text-align: center;
  width: 100%;
}

.india-eyebrow {
  font-size: 0.7rem;
  letter-spacing: 0.4em;
  color: var(--copper-light);
  font-weight: 700;
  margin-bottom: 12px;
  text-transform: uppercase;
}

.india-headline {
  font-size: clamp(2.2rem, 4.5vw, 3.6rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.1;
  position: relative;
  z-index: 2;
}

.india-headline span {
  display: inline-block;
  opacity: 0;
  transform: translateY(20px);
}

.india-headline-bg {
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 8rem;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.02);
  pointer-events: none;
  z-index: 1;
  letter-spacing: 0.1em;
}

.india-main-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 2;
}

/* - Visual Column --------- */
.india-visual-col {
  position: relative;
  min-height: 640px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: visible;
}

/* - India Particle Canvas Wide (Now absolute to container) ---------- */
.india-particle-canvas-wide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
  overflow: visible;
}

.india-particle-canvas-wide canvas {
  pointer-events: auto;
}

/* - City Label Overlay --------------- */
.india-city-labels {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 10;
}

.india-city-label {
  position: absolute;
  transform: translate(-50%, -140%);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: #ffffff;
  text-transform: uppercase;
  white-space: nowrap;
  opacity: 0;
  transition: opacity 0.4s;
  pointer-events: none;
  text-shadow: 0 0 8px rgba(7, 146, 58, 0.9), 0 0 20px rgba(7, 146, 58, 0.5);
}

/* Connection Lines */
.map-connection-lines {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.connection-line {
  position: absolute;
  background: linear-gradient(90deg, transparent, var(--green), transparent);
  height: 1px;
  opacity: 0.3;
}

.l1 {
  width: 200px;
  top: 30%;
  left: 10%;
  transform: rotate(-20deg);
}

.l2 {
  width: 150px;
  bottom: 25%;
  right: 15%;
  transform: rotate(15deg);
}

.l3 {
  width: 180px;
  top: 55%;
  left: 5%;
  transform: rotate(5deg);
}

/* Map Pin New */
.map-pin-new {
  position: absolute;
  top: 42%;
  left: 38%;
  z-index: 10;
}

.pin-core {
  width: 12px;
  height: 12px;
  background: var(--green);
  border-radius: 50%;
  box-shadow: none;
}

.pin-pulse {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 40px;
  height: 40px;
  border: 1px solid var(--green);
  border-radius: 50%;
  opacity: 0;
  animation: pinRipple 3s infinite;
}

@keyframes pinRipple {
  0% {
    transform: translate(-50%, -50%) scale(0.5);
    opacity: 0.8;
  }

  100% {
    transform: translate(-50%, -50%) scale(2.5);
    opacity: 0;
  }
}

.pin-tooltip {
  position: absolute;
  top: -40px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(10, 10, 10, 0.9);
  backdrop-filter: blur(8px);
  border: 1px solid var(--green-dim);
  padding: 6px 14px;
  border-radius: 4px;
  font-size: 0.6rem;
  font-weight: 700;
  color: var(--green);
  white-space: nowrap;
  letter-spacing: 0.1em;
}

/* - Info Column --------- */
.india-info-col {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.india-desc-text {
  font-size: 1.1rem;
  color: var(--text-dim);
  line-height: 1.7;
  max-width: 500px;
}

.india-features-matrix {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.india-glass-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 30px;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: all 0.4s var(--ease-out-expo);
  opacity: 0;
}

.india-glass-card:hover {
  background: var(--glass-bg-strong);
  border-color: rgba(255, 255, 255, 0.15);
  transform: translateY(-8px);
}



.card-icon-wrap {
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}

.india-glass-card:hover .card-icon-wrap {
  background: var(--green-dim);
}

.card-icon-wrap svg {
  width: 24px;
  height: 24px;
  stroke: var(--white);
  fill: none;
  stroke-width: 1.5;
  transition: stroke 0.3s;
}

.india-glass-card:hover .card-icon-wrap svg {
  stroke: var(--green);
}

.card-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
}

.card-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* - Remote Hub Visual --------- */
.remote-hub-container {
  margin-top: 80px;
  padding: 40px;
  background: rgba(255, 255, 255, 0.02);
  border-radius: 24px;
  border: 1px solid var(--glass-border);
  position: relative;
  opacity: 0;
}

.hub-line-system {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}

.hub-node {
  background: var(--black);
  border: 1px solid var(--glass-border);
  padding: 20px 25px;
  border-radius: 16px;
  min-width: 220px;
  position: relative;
  z-index: 5;
}

.node-label {
  font-size: 0.6rem;
  letter-spacing: 0.3em;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.node-title {
  font-size: 1.05rem;
  font-weight: 800;
  margin-bottom: 3px;
  display: flex;
  align-items: center;
}

.hub-logo {
  position: relative;
  width: 72px;
  height: 72px;
  margin-left: 12px;
  flex-shrink: 0;
}

.hipim-ring {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  animation: hipimSpin 12s linear infinite;
}

.hipim-h {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.hipim-logo-footer {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 60px;
}

.footer-hipim-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.footer-hipim-name {
  font-size: 0.6rem;
  font-weight: 600;
  color: var(--text-dim);
  letter-spacing: 0.03em;
  white-space: nowrap;
}

@keyframes hipimSpin {
  from { transform: rotate(0deg); }
  to { transform: rotate(-360deg); }
}

.node-status {
  font-size: 0.7rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text-dim);
}

.pulse-dot {
  width: 8px;
  height: 8px;
  background: var(--green);
  border-radius: 50%;
  box-shadow: none;
  animation: dotPulse 1.5s infinite;
}

@keyframes dotPulse {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.4;
    transform: scale(0.8);
  }
}

.hub-data-stream {
  flex: 1;
  height: 40px;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.stream-track {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
}

.stream-particles {
  position: absolute;
  inset: 0;
}

.p {
  position: absolute;
  width: 60px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(7, 146, 58, 0.4), transparent);
  filter: blur(0.5px);
}

.p1 {
  animation: streamMove 2s linear infinite;
  top: 20%;
}

.p2 {
  animation: streamMove 2.5s linear infinite 0.5s;
  top: 50%;
}

.p3 {
  animation: streamMove 1.8s linear infinite 1.2s;
  top: 80%;
}

@keyframes streamMove {
  0% {
    left: -10%;
    opacity: 0;
  }

  20% {
    opacity: 1;
  }

  80% {
    opacity: 1;
  }

  100% {
    left: 110%;
    opacity: 0;
  }
}

.stream-label {
  font-size: 0.55rem;
  letter-spacing: 0.2em;
  color: var(--green);
  font-weight: 700;
  margin-top: 10px;
  text-transform: uppercase;
  opacity: 0.6;
}


/* ═══════════════════════════════════════════════════════════════
   INDIA SECTION — TABLET ONLY (mini desktop layout, ≤900px)
   ═══════════════════════════════════════════════════════════════ */
@media (min-width: 769px) and (max-width: 900px) {

  /* Section wrapper */
  .india-section {
    padding: 70px 28px;
  }

  /* Container */
  .india-container {
    max-width: 100%;
  }

  /* Header */
  .india-header {
    margin-bottom: 44px;
  }

  .india-eyebrow {
    font-size: 0.6rem;
    letter-spacing: 0.3em;
    margin-bottom: 8px;
  }

  .india-headline {
    font-size: clamp(1.5rem, 4vw, 2rem);
  }

  .india-headline-bg {
    font-size: 5rem;
    top: -10px;
  }

  /* Two-column grid — keep desktop layout, just tighter */
  .india-main-grid {
    grid-template-columns: 1.1fr 0.9fr;
    gap: 32px;
    align-items: center;
  }

  /* Visual column */
  .india-visual-col {
    min-height: 400px;
  }

  /* Info column */
  .india-info-col {
    gap: 22px;
  }

  .india-desc-text {
    font-size: 0.88rem;
    line-height: 1.6;
    max-width: 100%;
  }

  /* Features grid — keep 2 columns */
  .india-features-matrix {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  /* Glass cards */
  .india-glass-card {
    padding: 18px;
    gap: 12px;
    border-radius: 14px;
  }

  .card-icon-wrap {
    width: 36px;
    height: 36px;
    border-radius: 9px;
  }

  .card-icon-wrap svg {
    width: 18px;
    height: 18px;
  }

  .card-title {
    font-size: 0.9rem;
  }

  .card-desc {
    font-size: 0.75rem;
    line-height: 1.45;
  }

  /* Remote hub */
  .remote-hub-container {
    margin-top: 52px;
    padding: 28px 24px;
    border-radius: 20px;
  }

  .hub-line-system {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
  }

  .hub-node {
    padding: 16px 18px;
    min-width: 160px;
    border-radius: 14px;
  }

  .node-label {
    font-size: 0.5rem;
    letter-spacing: 0.25em;
    margin-bottom: 5px;
  }

  .node-title {
    font-size: 0.7rem;
    margin-bottom: 3px;
  }

  .hub-logo {
    width: 32px;
    height: 32px;
    margin-left: 5px;
  }

  .node-status {
    font-size: 0.48rem;
    gap: 5px;
  }

  .hub-data-stream {
    height: 32px;
    flex: 1;
    min-width: 48px;
  }

  .stream-label {
    font-size: 0.38rem;
    margin-top: 8px;
  }
}

/* ═══════════════════════════════════════════════════════════════
   CONVERSION FOOTER
   ═══════════════════════════════════════════════════════════════ */
/* ═══════════════════════════════════════════════════════════════
   CTA / CONVERSION SECTION
   ═══════════════════════════════════════════════════════════════ */
.contact-section {
  padding: 120px 48px 80px;
  position: relative;
  background: var(--black);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  text-align: center;
}

.cta-bg-pulse {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80vw;
  height: 80vw;
  background: radial-gradient(circle, rgba(7, 146, 58, 0.08) 0%, transparent 70%);
  filter: blur(100px);
  z-index: 1;
  pointer-events: none;
  animation: ctaPulse 10s ease-in-out infinite;
}

@keyframes ctaPulse {

  0%,
  100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.5;
  }

  50% {
    transform: translate(-50%, -50%) scale(1.2);
    opacity: 0.8;
  }
}

.cta-content-wrapper {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.contact-headline {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.04em;
  margin-bottom: 0;
  color: var(--white);
  text-align: left;
  position: relative;
  z-index: 3;
}

.contact-headline .accent {
  color: var(--green);
  text-shadow: 0 0 30px rgba(7, 146, 58, 0.3);
}

.contact-bg-text {
  position: relative;
  font-size: clamp(6rem, 15vw, 22rem);
  font-weight: 700;
  white-space: nowrap;
  pointer-events: none;
  z-index: 1;
  line-height: 1;
  letter-spacing: -0.02em;

  /* Gradient Fade: Top visible, Bottom faded */
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0.02) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.contact-split-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  width: 100%;
  align-items: start;
  text-align: left;
  position: relative;
  z-index: 3;
  margin-top: 80px;
}

@media (max-width: 900px) {
  .contact-split-layout {
    grid-template-columns: 1fr;
    gap: 60px;
    justify-items: center;
  }

  .contact-info-side {
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    align-items: center;
    text-align: center;
  }

  .contact-headline {
    text-align: center;
  }

  .contact-sub {
    text-align: center;
    max-width: 100%;
  }

  .contact-features {
    align-items: flex-start;
  }

  .contact-feature-item {
    justify-content: flex-start;
  }

  .form-glass-wrapper {
    justify-self: center;
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
  }
}

/* - Left Side --------- */
.contact-info-side {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.reach-out-title {
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 5px;
  letter-spacing: -0.03em;
}

.reach-out-title .arrow {
  color: var(--white);
  opacity: 0.8;
  font-weight: 400;
}

.contact-sub {
  font-size: 1rem;
  color: var(--text-dim);
  line-height: 1.6;
  margin: 0;
  max-width: 550px;
}

.contact-features {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--text-dim);
  font-size: 0.85rem;
}

.check-icon {
  width: 24px;
  height: 24px;
  background: rgba(7, 146, 58, 0.1);
  border: 1px solid rgba(7, 146, 58, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green);
  font-size: 0.7rem;
  font-weight: 900;
}

.cta-buttons {
  display: flex;
  gap: 20px;
  margin-top: 10px;
}

.cta-btn {
  padding: 10px 24px;
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.4s var(--ease-out-expo);
  position: relative;
  overflow: hidden;
}

.cta-btn.primary {
  background: var(--green);
  color: var(--white);
  border: 1px solid var(--green);
  box-shadow: 0 10px 30px rgba(7, 146, 58, 0.3);
}

.cta-btn.primary:hover {
  background: #0db54a;
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(7, 146, 58, 0.5);
}

.cta-btn.secondary {
  background: rgba(255, 255, 255, 0.03);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
}

.cta-btn.secondary:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--white);
  transform: translateY(-5px);
}

/* - Form Glass Wrapper -------- */
.form-glass-wrapper {
  width: 100%;
  max-width: 600px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(20px);
  padding: 30px 35px;
  border-radius: 28px;
  text-align: left;
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.4);
  justify-self: end;
}

.contact-form {
  display: flex;
  flex-direction: column;
}

.form-field {
  position: relative;
  margin-bottom: 24px;
}

.form-field label {
  position: absolute;
  top: 12px;
  left: 0;
  font-size: 1rem;
  color: var(--text-muted);
  transition: all 0.3s var(--ease-out-expo);
  pointer-events: none;
}

.form-field input {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding: 8px 0;
  color: var(--white);
  font-size: 1rem;
  outline: none;
  transition: border-color 0.3s;
}

.form-field input:focus {
  border-bottom-color: var(--green);
}

.form-field input:focus+label,
.form-field input:not(:placeholder-shown)+label {
  top: -12px;
  font-size: 0.75rem;
  color: var(--green);
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.form-query-title {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 15px;
  margin-bottom: 15px;
}

.query-options {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-bottom: 30px;
}

.query-option {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: 12px 16px;
  border-radius: 10px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.8rem;
  color: var(--text-dim);
  transition: all 0.3s;
}

.query-option:hover {
  background: rgba(255, 255, 255, 0.06);
  color: var(--white);
}

.query-option.selected {
  background: rgba(7, 146, 58, 0.1);
  border-color: var(--green);
  color: var(--white);
}

.query-option .radio {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s;
}

.query-option.selected .radio {
  border-color: var(--green);
  background: var(--green);
  box-shadow: 0 0 10px var(--green);
}

.submit-line {
  background: var(--green);
  padding: 14px;
  border-radius: 16px;
  text-align: center;
  cursor: pointer;
  transition: all 0.4s var(--ease-out-expo);
  box-shadow: 0 10px 30px rgba(7, 146, 58, 0.2);
}

.submit-line:hover {
  transform: translateY(-3px);
  background: #0db54a;
  box-shadow: 0 15px 40px rgba(7, 146, 58, 0.4);
}

.submit-text {
  color: var(--white);
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-size: 0.75rem;
}

@media (max-width: 768px) {
  .contact-section {
    padding: 100px 24px;
  }

  .cta-buttons {
    flex-direction: column;
    width: 100%;
  }

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

  .form-glass-wrapper {
    padding: 32px 24px;
    border-radius: 24px;
  }

  .query-options {
    grid-template-columns: 1fr;
  }
}

/* ═══════════════════════════════════════════════════════════════
   CONTACT PAGE - TOP LOGO NAV
   ═══════════════════════════════════════════════════════════════ */
.contact-top-nav {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1001;
  padding: 24px 48px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  pointer-events: none;
}

.contact-nav-logo {
  height: 32px;
  pointer-events: auto;
  cursor: pointer;
  transition: opacity 0.3s;
  opacity: 0.9;
}

.contact-nav-logo:hover {
  opacity: 1;
}

/* ═══════════════════════════════════════════════════════════════
   CONTACT PAGE - HERO BANNER
   ═══════════════════════════════════════════════════════════════ */
.contact-hero {
  position: relative;
  z-index: 1;
  min-height: 40vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--black);
  overflow: hidden;
  padding-top: 60px;
}

.contact-hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.85) 100%),
    radial-gradient(ellipse at 30% 40%, rgba(7, 146, 58, 0.08) 0%, transparent 60%),
    radial-gradient(ellipse at 70% 60%, rgba(184, 115, 51, 0.06) 0%, transparent 50%);
  z-index: 1;
}

.contact-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.contact-hero-title {
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--white);
  line-height: 1.05;
}


/* ═══════════════════════════════════════════════════════════════
   CONTACT PAGE - MAIN TWO-COLUMN SECTION
   ═══════════════════════════════════════════════════════════════ */
.contact-main {
  padding: 20px 48px 80px;
  position: relative;
  z-index: 1;
}

.contact-main-container {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  max-width: 1400px;
  margin: 0 auto;
  align-items: stretch;
}

/* - Contact Form Column -------- */
.contact-form-col {
  position: relative;
}

.contact-form-glass {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: 32px;
  padding: 50px 40px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
  position: relative;
  overflow: hidden;
}

.contact-form-glass::before {
  content: '';
  position: absolute;
  top: -1px;
  left: 15%;
  right: 15%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--green), transparent);
  opacity: 0.4;
}

.form-header {
  margin-bottom: 36px;
}

.form-eyebrow {
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--copper-light);
  font-weight: 700;
  display: block;
  margin-bottom: 10px;
}

.form-title {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--white);
}

/* - Contact Form Fields -------- */
.contact-page-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

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

.cpf-field.full-width {
  grid-column: 1 / -1;
}

.cpf-field label {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.cpf-field input,
.cpf-field textarea {
  width: 100%;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 14px 18px;
  color: var(--white);
  font-size: 0.95rem;
  font-family: inherit;
  outline: none;
  transition: all 0.4s var(--ease-out-expo);
  resize: none;
}

.cpf-field input::placeholder,
.cpf-field textarea::placeholder {
  color: rgba(255, 255, 255, 0.2);
}

.cpf-field input:-webkit-autofill,
.cpf-field input:-webkit-autofill:hover,
.cpf-field input:-webkit-autofill:focus {
  -webkit-box-shadow: 0 0 0 1000px #0a0a0a inset;
  -webkit-text-fill-color: #fff;
  caret-color: #fff;
  border-color: rgba(255, 255, 255, 0.08);
  transition: background-color 5000s ease-in-out 0s;
}

.cpf-field input:focus,
.cpf-field textarea:focus {
  border-color: var(--green);
  background: rgba(7, 146, 58, 0.04);
  box-shadow: 0 0 20px rgba(7, 146, 58, 0.08);
}

.cpf-agreement {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 8px;
}

.cpf-agreement input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: var(--green);
  cursor: pointer;
  flex-shrink: 0;
}

.cpf-agreement label {
  font-size: 0.8rem;
  color: var(--text-dim);
  cursor: pointer;
}

.cpf-submit {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 10px 24px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 100px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--white);
  font-family: inherit;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  cursor: pointer;
  transition: border-color 0.4s var(--ease-out-expo), box-shadow 0.4s var(--ease-out-expo), transform 0.4s var(--ease-out-expo), background 0.4s var(--ease-out-expo);
  margin-top: 12px;
  position: relative;
  overflow: hidden;
  will-change: transform;
  transform: translateZ(0);
}

.cpf-submit::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--green);
  border-radius: 100px;
  opacity: 0;
  transition: opacity 0.4s var(--ease-out-expo);
  z-index: 0;
}

.cpf-submit:hover {
  border-color: var(--green);
  transform: translateY(-3px) translateZ(0);
  box-shadow: 0 15px 40px rgba(7, 146, 58, 0.2);
}

.cpf-submit:hover::before {
  opacity: 1;
}

.cpf-submit-text,
.cpf-submit svg {
  position: relative;
  z-index: 1;
}

.cpf-submit svg {
  transition: transform 0.4s var(--ease-out-expo);
}

.cpf-submit:hover svg {
  transform: translateX(4px) translateY(-2px);
}

/* - Contact Info Column -------- */
.contact-info-col {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 40px;
  padding: 10px 0;
}

.contact-intro-text {
  font-size: 1.1rem;
  color: var(--text-dim);
  line-height: 1.8;
  max-width: 600px;
}

/* - Info Grid (2x2) -------- */
.contact-info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.contact-info-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 20px;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  transition: all 0.4s var(--ease-out-expo);
  cursor: default;
}

.contact-info-card:hover {
  background: var(--glass-bg-strong);
  border-color: rgba(7, 146, 58, 0.25);
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 0 0 30px rgba(7, 146, 58, 0.05);
}

.info-card-icon {
  width: 50px;
  height: 50px;
  border-radius: 14px;
  background: rgba(7, 146, 58, 0.08);
  border: 1px solid rgba(7, 146, 58, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s var(--ease-out-expo);
}

.contact-info-card:hover .info-card-icon {
  background: rgba(7, 146, 58, 0.15);
  border-color: rgba(7, 146, 58, 0.3);
  transform: scale(1.08);
}

.info-card-icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--green);
}

.info-card-content {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.info-card-content h2 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 4px;
}

.info-card-content a,
.info-card-content span {
  font-size: 0.85rem;
  color: var(--text-dim);
  text-decoration: none;
  transition: color 0.3s;
  display: block;
  line-height: 1.5;
}

.info-card-content a:hover {
  color: var(--green);
}

/* - Map Embed -------- */
.contact-map-wrap {
  grid-column: 1 / -1;
  margin-top: 40px;
  height: 450px;
  border-radius: 32px;
  overflow: hidden;
  border: 1px solid var(--glass-border);
  background: var(--glass-bg);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
  position: relative;
}

.contact-map-wrap::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 32px;
  pointer-events: none;
  z-index: 2;
  box-shadow: inset 0 0 60px rgba(0, 0, 0, 0.4);
}

.contact-map-wrap iframe {
  display: block;
  width: 100%;
  height: 100%;
  filter: grayscale(0.6) brightness(0.7) contrast(1.2);
  transition: filter 0.6s var(--ease-out-expo);
}

.contact-map-wrap:hover iframe {
  filter: grayscale(0.2) brightness(0.85) contrast(1.1);
}

/* ═══════════════════════════════════════════════════════════════
   CONTACT PAGE - COMPANY DETAILS BANNER
   ═══════════════════════════════════════════════════════════════ */
.contact-details-banner {
  padding: 60px 48px;
  position: relative;
  z-index: 1;
}

.details-banner-container {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-radius: 24px;
  padding: 40px 60px;
}

.detail-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  text-align: center;
}

.detail-label {
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--text-muted);
  font-weight: 700;
}

.detail-value {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.05em;
}

.detail-divider {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, transparent, rgba(255, 255, 255, 0.1), transparent);
}

/* ═══════════════════════════════════════════════════════════════
   CONTACT PAGE - CTA BANNER
   ═══════════════════════════════════════════════════════════════ */
.contact-cta-banner {
  position: relative;
  z-index: 1;
  min-height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--black);
}

.cta-banner-overlay {
  position: absolute;
  inset: 0;
  background: transparent;
  z-index: 1;
  pointer-events: none;
}

.cta-banner-content {
  position: relative;
  z-index: 2;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  max-width: 700px;
  padding: 60px 40px;
}

.cta-banner-eyebrow {
  font-size: 0.7rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--green);
  font-weight: 700;
}

.cta-banner-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.15;
  color: var(--white);
}

.cta-banner-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 24px;
  border-radius: 100px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.4s var(--ease-out-expo);
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(10px);
}

.cta-banner-btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: var(--copper);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.6s var(--ease-out-expo), height 0.6s var(--ease-out-expo);
  z-index: -1;
}

.cta-banner-btn:hover {
  border-color: var(--copper);
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(184, 115, 51, 0.3);
}

.cta-banner-btn:hover::before {
  width: 300%;
  height: 600%;
}

/* ═══════════════════════════════════════════════════════════════
   CONTACT PAGE - RESPONSIVE
   ═══════════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .contact-main-container {
    grid-template-columns: 1fr;
    gap: 60px;
    justify-items: center;
  }

  .contact-form-col {
    width: 100%;
    max-width: 680px;
    margin: 0 auto;
  }

  .contact-info-col {
    width: 100%;
    max-width: 680px;
    margin: 0 auto;
    text-align: center;
  }

  .contact-info-grid {
    justify-items: center;
  }

  .contact-info-card {
    width: 100%;
    max-width: 540px;
  }

  .contact-intro-text {
    text-align: center;
  }

  .contact-main {
    padding: 20px 32px 60px;
  }
}

@media (max-width: 768px) {
  .contact-top-nav {
    padding: 16px 20px;
  }

  .contact-nav-logo {
    height: 28px;
  }

  .contact-hero {
    min-height: 35vh;
  }

  .contact-form-glass {
    padding: 36px 24px;
    border-radius: 24px;
  }

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

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

  .details-banner-container {
    flex-direction: column;
    gap: 24px;
    padding: 32px 24px;
  }

  .detail-divider {
    width: 60px;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.1), transparent);
  }

  .contact-cta-banner {
    min-height: 350px;
  }

  .cta-banner-content {
    padding: 40px 24px;
  }

  .contact-main {
    padding: 10px 20px 40px;
  }

  .contact-details-banner {
    padding: 40px 20px;
  }
}

@media (max-width: 1024px) {
  .contact-hero-title {
    font-size: 2.5rem;
  }

  .cpf-submit {
    padding: 16px 24px;
    font-size: 0.8rem;
  }
}

/* Footer */
.footer {
  padding: 60px 48px;
  border-top: 1px solid var(--glass-border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 1;
}

.footer-logo {
  height: 28px;
  opacity: 0.5;
}

.footer-text {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.footer-links {
  display: flex;
  gap: 24px;
}

.footer-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.75rem;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: var(--green);
}

/* - WhatsApp FAB ---------------------- */
.whatsapp-fab {
  position: fixed;
  bottom: max(20px, calc(env(safe-area-inset-bottom, 0px) + 12px));
  right: max(9px, env(safe-area-inset-right, 0px));
  z-index: 9500;
  /* higher than mobile overlay */
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
  transition: all 0.3s var(--ease-out-expo);
  text-decoration: none;
}

.whatsapp-fab.has-scroll-top {
  bottom: max(74px, calc(env(safe-area-inset-bottom, 0px) + 66px));
}

.whatsapp-fab:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.5);
}

.whatsapp-fab svg {
  width: 20px;
  height: 20px;
  fill: white;
}

.whatsapp-fab::before {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  border: 1px solid rgba(7, 146, 58, 0.3);
  animation: pulse 3s infinite;
}

.scroll-to-top-fab {
  position: fixed;
  bottom: max(20px, calc(env(safe-area-inset-bottom, 0px) + 12px));
  right: max(9px, env(safe-area-inset-right, 0px));
  z-index: 9400;
  /* slightly below WhatsApp but above overlays */
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
  transition: all 0.4s var(--ease-out-expo);
  text-decoration: none;
  opacity: 0;
  pointer-events: none;
  backdrop-filter: blur(8px);
}

.scroll-to-top-fab.visible {
  opacity: 1;
  pointer-events: auto;
}

.scroll-to-top-fab:hover {
  background: var(--white);
  border-color: var(--white);
  transform: scale(1.1) translateY(-4px);
  box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3);
}

.scroll-to-top-fab:hover svg {
  stroke: var(--black);
}

.scroll-to-top-fab svg {
  width: 18px;
  height: 18px;
  stroke: var(--white);
  fill: none;
  stroke-width: 2;
  transition: stroke 0.3s;
}

/* ═══════════════════════════════════════════════════════════════
   CLIENTS SECTION
   ═══════════════════════════════════════════════════════════════ */
.clients-section {
  padding: 100px 48px 40px;
  background: var(--black);
  position: relative;
}

.clients-container {
  max-width: 1200px;
  margin: 0 auto;
}

.clients-header {
  text-align: center;
  margin-bottom: 60px;
}

.clients-eyebrow {
  font-size: 0.85rem;
  color: var(--white);
  letter-spacing: 0.4em;
  text-transform: uppercase;
  margin-bottom: 16px;
  font-weight: 700;
  opacity: 0.8;
}

.clients-headline {
  font-size: clamp(2.8rem, 6vw, 4.8rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1.1;
}

.clients-headline .accent {
  color: var(--green);
  text-shadow: none;
}

.clients-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 60px 80px;
  padding: 20px 0;
}

.client-card {
  flex: 0 1 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 180px;
  height: 80px;
  transition: all 0.5s var(--ease-out-expo);
  filter: grayscale(1) opacity(0.7);
  /* Improved visibility */
}

.client-card img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.client-card:hover {
  filter: grayscale(0) opacity(1);
  transform: translateY(-5px) scale(1.1);
}

@media (max-width: 992px) {
  .clients-grid {
    gap: 40px 60px;
  }

  .client-card {
    width: 140px;
    height: 60px;
  }
}

@media (max-width: 767px) {
  .clients-section {
    padding: 60px 20px;
  }

  .clients-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 30px;
    padding: 10px 0;
  }

  .client-card {
    width: auto;
    height: auto;
    background: none;
    border: none;
    padding: 0;
    flex: 0 0 auto;
  }

  .client-card img {
    height: 40px;
    width: auto;
    filter: grayscale(1) opacity(0.8);
  }
}

/* ═══════════════════════════════════════════════════════════════
   ANIMATIONS & KEYFRAMES
   ═══════════════════════════════════════════════════════════════ */
@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes heroReveal {
  to {
    opacity: 1;
    transform: translateY(0) rotateX(0);
  }
}

@keyframes shimmer {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}


@keyframes pulse {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.5;
    transform: scale(1.2);
  }
}

@keyframes ripple {
  0% {
    width: 16px;
    height: 16px;
    opacity: 0.5;
  }

  100% {
    width: 60px;
    height: 60px;
    opacity: 0;
  }
}

@keyframes scrollPulse {

  0%,
  100% {
    opacity: 1;
    transform: scaleY(1);
  }

  50% {
    opacity: 0.3;
    transform: scaleY(0.6);
  }
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

/* ═══════════════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {


  .hero-blend-overlay {
    background: linear-gradient(to top, var(--black) 0%, var(--black) 25%, transparent 60%);
  }

  .section {
    padding: 120px 32px;
  }

  .nav {
    padding: 16px 24px;
  }

  .nav.scrolled {
    padding: 12px 24px;
  }

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

  .machine-item {
    flex-direction: column !important;
    gap: 40px;
    align-items: center;
    text-align: center;
  }

  .machine-image-wrap {
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
  }

  .machine-info {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .machine-desc {
    margin-left: auto;
    margin-right: auto;
  }

  .machine-tag {
    justify-content: center;
  }

  .machine-specs {
    width: 100%;
    max-width: 440px;
    margin: 0 auto;
  }

  .india-layout {
    flex-direction: column;
    gap: 60px;
  }

  .industry-icon-wrap {
    padding: 0 30px;
  }

  .industry-content {
    padding: 0 30px;
  }

  .remote-hub-container {
    margin-top: 60px;
    padding: 20px 10px;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
  }

  .hub-line-system {
    display: flex;
    flex-direction: row !important;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
  }

  .hub-node {
    padding: 12px 10px;
    min-width: 100px;
    flex: 0 0 auto;
    border-radius: 10px;
  }

  .node-label {
    font-size: 0.4rem !important;
    margin-bottom: 4px;
  }

  .node-title {
    font-size: 0.5rem !important;
    margin-bottom: 2px;
  }

  .hub-logo {
    width: 34px !important;
    height: 34px !important;
    margin-left: 5px !important;
  }

  .node-status {
    font-size: 0.38rem !important;
    gap: 4px;
  }

  .hub-data-stream {
    flex: 0 1 auto;
    width: 70px;
    max-width: 70px;
    height: 30px;
    min-width: 40px;
  }

  .stream-label {
    font-size: 0.25rem !important;
    margin-top: 15px;
    transform: none;
    width: auto;
    color: var(--green);
  }

  .p1,
  .p2,
  .p3 {
    animation-name: streamMove !important;
    top: 50% !important;
    transform: translateY(-50%);
  }
}

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

  .hero {
    padding: 0 20px;
  }

  .hero-chapter {
    max-width: calc(100vw - 48px);
  }

  .hero-chapter.pos-top-left {
    top: 15%;
    left: 24px;
    right: auto;
  }

  .hero-chapter.pos-bottom-right {
    bottom: 15%;
    right: 24px;
    left: auto;
    text-align: right;
  }

  .nav-links {
    display: none;
  }

  .why-staton {
    padding: 100px 20px;
  }

  .split-headline {
    margin-bottom: 60px;
  }

  .machines-section {
    padding: 100px 20px;
  }

  .machine-item {
    margin-bottom: 100px;
  }

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

  .industry-section {
    padding: 100px 20px;
  }

  .industry-item {
    flex-direction: column !important;
    text-align: center;
    padding: 40px 0;
  }

  .industry-icon-wrap {
    width: 100%;
    justify-content: center !important;
    padding: 0;
    margin-bottom: 20px;
  }

  .industry-content {
    width: 100%;
    padding: 0 20px;
    text-align: center !important;
    transform: none !important;
  }

  .industry-item:nth-child(even) .industry-content {
    text-align: center !important;
  }

  .industry-item:nth-child(even) .industry-solution {
    justify-content: center;
  }

  .continuum-line {
    display: none;
  }

  .industry-dot {
    display: none;
  }

  .india-section {
    padding: 80px 20px;
    overflow-x: hidden;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .india-container {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    position: relative;
    z-index: 5;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .india-header {
    width: 100%;
    margin-bottom: 30px;
    text-align: center;
    position: relative;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .india-eyebrow {
    font-size: 0.65rem !important;
    letter-spacing: 0.3em !important;
    margin-bottom: 8px !important;
  }

  .india-headline {
    font-size: clamp(1.5rem, 7vw, 1.9rem) !important;
    margin-bottom: 0;
    width: 100%;
    text-align: center;
  }

  .india-headline-bg {
    font-size: 4.5rem !important;
    top: -5px !important;
    opacity: 0.03 !important;
    white-space: nowrap;
    left: 50%;
    transform: translateX(-50%);
  }

  .india-main-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    /* Increased gap */
    text-align: center;
  }

  .india-visual-col {
    min-height: 450px;
    /* Significantly more space */
    order: 1;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .india-info-col {
    order: 2;
    align-items: center;
    gap: 20px;
  }

  .india-desc-text {
    margin: 0 auto;
    font-size: 0.9rem !important;
    max-width: 100%;
    line-height: 1.5;
  }

  .india-features-matrix {
    grid-template-columns: 1fr;
    width: 100%;
    max-width: 320px;
    margin: 0 auto;
    gap: 12px;
  }

  .india-glass-card {
    padding: 16px !important;
    gap: 12px !important;
    border-radius: 12px !important;
  }

  .card-icon-wrap {
    width: 36px !important;
    height: 36px !important;
    border-radius: 8px !important;
  }

  .card-icon-wrap svg {
    width: 18px !important;
    height: 18px !important;
  }

  .card-title {
    font-size: 0.95rem !important;
    margin-bottom: 4px;
  }

  .card-desc {
    font-size: 0.8rem !important;
    line-height: 1.4;
  }

  .contact-section {
    padding: 100px 20px 80px;
  }

  .floating-nav {
    bottom: 16px;
    width: calc(100% - 32px);
    gap: 8px;
  }

  .nav-links-pill {
    padding: 4px;
    flex: 1;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .nav-links-pill::-webkit-scrollbar {
    display: none;
  }

  .nav-links-pill li a {
    padding: 10px 16px;
    font-size: 0.65rem;
  }

  .contact-pill {
    padding: 10px 20px;
    font-size: 0.65rem;
  }

  .nav {
    padding: 20px;
  }

  .nav.scrolled {
    padding: 15px 20px;
  }

  .nav-logo {
    height: 30px;
  }
}

@media (max-width: 1024px) {
  .hero-title {
    font-size: 2.8rem;
  }

  .bento-card {
    padding: 32px 24px;
  }

  .cta-section {
    position: relative;
    padding: 180px 48px;
    background: var(--black);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    z-index: 10;
  }

  .cta-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60vw;
    height: 60vw;
    background: radial-gradient(circle, rgba(184, 115, 51, 0.12) 0%, transparent 70%);
    filter: blur(80px);
    z-index: -1;
    pointer-events: none;
  }

  .cta-content {
    max-width: 900px;
    position: relative;
    z-index: 2;
  }

  .cta-eyebrow {
    font-size: 0.75rem;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    color: var(--copper-light);
    margin-bottom: 24px;
    font-weight: 700;
    opacity: 0;
    transform: translateY(20px);
  }

  .cta-title {
    font-size: clamp(2.5rem, 6vw, 5rem);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.04em;
    margin-bottom: 32px;
    opacity: 0;
    transform: translateY(30px);
  }

  .cta-title .accent {
    background: linear-gradient(90deg, var(--white) 0%, var(--copper-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }

  .cta-desc {
    font-size: clamp(1rem, 1.2vw, 1.2rem);
    color: var(--text-dim);
    max-width: 650px;
    margin: 0 auto 48px;
    line-height: 1.6;
    opacity: 0;
    transform: translateY(40px);
  }

  /* - Magnetic Button ---------- */
  .magnetic-btn-wrap {
    display: inline-block;
    text-decoration: none;
    opacity: 0;
    transform: translateY(50px);
  }

  .magnetic-btn {
    position: relative;
    padding: 24px 48px;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 100px;
    color: var(--white);
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    cursor: pointer;
    overflow: hidden;
    display: flex;
    align-items: center;
    gap: 16px;
    transition: border-color 0.4s, color 0.4s;
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(10px);
  }

  .magnetic-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: var(--copper);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s var(--ease-out-expo), height 0.6s var(--ease-out-expo);
    z-index: -1;
  }

  .magnetic-btn:hover {
    border-color: var(--copper);
    color: var(--white);
  }

  .magnetic-btn:hover::before {
    width: 300%;
    height: 600%;
  }

  .btn-icon {
    font-size: 1.2rem;
    transition: transform 0.4s var(--ease-out-expo);
  }

  .magnetic-btn:hover .btn-icon {
    transform: translateX(8px);
  }

}

/* ═══════════════════════════════════════════════════════════════
   PREMIUM FOOTER
   ═══════════════════════════════════════════════════════════════ */
.footer-staton {
  position: relative;
  /* Smooth black to green gradient blending */
  background: linear-gradient(to bottom,
      var(--black) 0%,
      rgba(2, 45, 18, 0.8) 35%,
      rgba(4, 90, 35, 0.9) 70%,
      var(--green) 100%);
  padding: 80px 48px 40px;
  overflow: hidden;
  z-index: 20;
  width: 100%;
}

.footer-staton-container {
  position: relative;
  z-index: 2;
  max-width: 1400px;
  margin: 0 auto;
}

.footer-staton-top {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-end;
  /* Align to bottom like in reference */
  gap: 60px;
  margin-top: 20px;
}

.footer-staton-left {
  flex: 1;
  min-width: 300px;
  max-width: 550px;
}

.footer-staton-logo {
  max-width: 140px;
  margin-bottom: 30px;
  display: block;
}

.footer-staton-socials {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
}

.footer-staton-social-link {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: var(--white);
  transition: all 0.4s var(--ease-out-expo);
}

.footer-staton-social-link:hover {
  background: var(--green);
  color: var(--white);
  border-color: var(--green);
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 10px 20px rgba(7, 146, 58, 0.4);
}

.footer-staton-social-link svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.footer-staton-cta-title {
  font-size: clamp(1.1rem, 2vw, 1.6rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.01em;
  margin-bottom: 0;
  color: var(--white);
}

.footer-staton-btn {
  display: inline-flex;
  align-items: center;
  padding: 18px 40px;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: var(--white);
  text-decoration: none;
  font-weight: 700;
  font-size: 0.85rem;
  border-radius: 100px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  transition: all 0.4s var(--ease-out-expo);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-staton-btn:hover {
  background: var(--white);
  color: var(--green);
  transform: scale(1.05);
}

.footer-staton-right {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 32px;
  flex: 1.5;
  min-width: 400px;
  padding-top: 60px;
}

.footer-staton-col-title {
  font-size: 0.72rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 16px;
  text-transform: capitalize;
}

.footer-staton-certifications {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 16px;
  flex-wrap: nowrap;
  margin-bottom: -20px;
}

.footer-cert-img {
  height: 85px;
  width: auto;
  max-width: 160px;
  object-fit: contain;
  object-position: left center;
  opacity: 0.85;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.footer-cert-img:hover {
  opacity: 1;
  transform: translateY(-2px);
}

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

.footer-staton-list li {
  margin-bottom: 8px;
}

.footer-staton-list a {
  color: var(--white);
  text-decoration: none;
  font-size: 0.78rem;
  font-weight: 500;
  opacity: 0.85;
  transition: opacity 0.3s, transform 0.3s;
  display: inline-block;
}

.footer-staton-list a:hover {
  opacity: 1;
  transform: translateX(4px);
}

.footer-staton-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 80px;
  margin-top: 60px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.6);
}

.footer-staton-bottom-links {
  display: flex;
  gap: 32px;
}

.footer-staton-bottom-links a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-staton-bottom-links a:hover {
  color: var(--white);
}

@media (max-width: 1200px) {
  .footer-staton-top {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
}

@media (max-width: 992px) {
  .footer-staton-right {
    min-width: 100%;
    margin-top: 0;
  }

  .footer-bg-text {
    font-size: 40vw;
    top: -40px;
    transform: translateX(-50%) rotateX(15deg);
  }
}

@media (max-width: 1024px) {
  .footer-staton {
    padding: 80px 20px 40px;
  }

  .footer-staton-top {
    gap: 10px;
  }

  .footer-staton-left {
    min-width: 100%;
    max-width: 100%;
  }

  .footer-staton-right {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    margin-top: 0;
    min-width: 100%;
  }

  .footer-staton-right .footer-staton-col:nth-child(3) {
    grid-column: 1 / -1;
  }

  .footer-staton-certifications {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    gap: 16px;
    margin-bottom: 0;
  }

  .footer-staton-cta-title {
    font-size: 1.8rem;
  }

  .footer-staton-bottom {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 20px;
    padding-top: 40px;
    margin-top: 40px;
  }

  .footer-staton-bottom-links {
    justify-content: center;
    flex-wrap: wrap;
    gap: 16px;
  }
}

/* ═══════════════════════════════════════════════════════════════
   TECHNOLOGY PAGE SPECIFIC STYLES
   ═══════════════════════════════════════════════════════════════ */

.mt-60 {
  margin-top: 60px;
}

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

.sub-hero-desc {
  font-size: clamp(1rem, 1.8vw, 1.3rem);
  color: var(--text-dim);
  text-align: center;
  max-width: 700px;
  margin: 20px auto 0;
  line-height: 1.6;
}

.bg-dark-glow {
  background: radial-gradient(circle at center, #0a0a0a 0%, #000 100%);
  position: relative;
}

.tech-stack-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 992px) {
  .tech-stack-grid {
    grid-template-columns: 1fr;
  }
}

/* Coating Types Pills */
.types-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
  max-width: 900px;
  margin: 0 auto;
}

.type-pill {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  padding: 14px 28px;
  border-radius: 100px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--white);
  transition: all 0.3s var(--ease-out-expo);
  cursor: default;
}

.type-pill:hover {
  background: var(--green-dim);
  border-color: var(--green);
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(7, 146, 58, 0.1);
}

/* Application Items */
.app-item {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  padding: 30px;
  border-radius: 20px;
  text-align: center;
  transition: all 0.4s var(--ease-out-expo);
}

.app-item:hover {
  background: var(--glass-bg-strong);
  transform: scale(1.02);
}

.app-icon {
  font-size: 40px;
  margin-bottom: 15px;
  display: block;
}

.app-name {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
}

/* Process Flow */
.process-flow-container {
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  flex-direction: column;
  gap: 30px;
  position: relative;
}

.process-flow-container::before {
  content: '';
  position: absolute;
  left: 24px;
  top: 0;
  bottom: 0;
  width: 1px;
  background: linear-gradient(to bottom, transparent, var(--green), transparent);
  opacity: 0.3;
}

.process-step {
  display: flex;
  gap: 30px;
  align-items: flex-start;
  position: relative;
  transition: transform 0.3s;
}

.process-step:hover {
  transform: translateX(10px);
}

.step-number {
  width: 50px;
  height: 50px;
  background: var(--black);
  border: 1px solid var(--green);
  color: var(--green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.8rem;
  flex-shrink: 0;
  z-index: 2;
  box-shadow: 0 0 20px rgba(7, 146, 58, 0.2);
}

.step-content {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  padding: 24px;
  border-radius: 16px;
  flex: 1;
}

.step-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}

.step-desc {
  font-size: 0.9rem;
  color: var(--text-dim);
  line-height: 1.6;
}

@media (max-width: 1024px) {
  .process-flow-container::before {
    display: none;
  }

  .process-step {
    flex-direction: column;
    gap: 15px;
  }
}

/* ═══════════════════════════════════════════════════════════════
   MOBILE HAMBURGER NAVIGATION — ADD-ON LAYER
   Strictly isolated: no desktop/tablet layout is touched.
   Hamburger is display:none globally; only shown at ≤768px.
   ═══════════════════════════════════════════════════════════════ */

/* ── Hamburger button: hidden everywhere by default ─────────── */
.mob-hamburger {
  display: none;
  /* global default — never visible on desktop/tablet */
  position: fixed;
  /* overridden to absolute when inside .nav */
  top: 18px;
  right: 20px;
  z-index: 9000;
  width: 44px;
  height: 44px;
  background: transparent;
  /* no box, no glass — just floating bars */
  border: none;
  border-radius: 0;
  cursor: pointer;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 0;
  box-shadow: none;
  transition: opacity 0.3s;
  pointer-events: none;
  opacity: 0;
}

/* ── Hamburger bar lines ─────────────────────────────────────── */
.mob-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform 0.35s var(--ease-out-expo, cubic-bezier(0.16, 1, 0.3, 1)),
    opacity 0.25s,
    width 0.3s;
  transform-origin: center;
}

/* ── Mobile overlay backdrop ─────────────────────────────────── */
.mob-overlay {
  display: none;
  /* hidden everywhere by default */
  position: fixed;
  inset: 0;
  z-index: 8000;
  background: rgba(0, 0, 0, 0);
  pointer-events: none;
  visibility: hidden;
  /* prevent any "shade" or interaction when closed */
  transition: background 0.4s, visibility 0.4s;
}

/* ── Mobile drawer panel ─────────────────────────────────────── */
.mob-drawer {
  display: none;
  /* hidden everywhere by default */
  position: fixed;
  top: 0;
  right: 0;
  height: 100%;
  width: min(300px, 85vw);
  z-index: 9100;
  /* above hamburger (9000) so close button is never blocked */
  background: #111111;
  /* solid dark — no glass/blur */
  border-left: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: -16px 0 48px rgba(0, 0, 0, 0.8);
  transform: translateX(100%);
  transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.45s;
  pointer-events: none;
  visibility: hidden;
  /* hidden by default */
  flex-direction: column;
  overflow-y: auto;
}

/* ── Drawer inner layout ────────────────────────────────────── */
.mob-drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 24px 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.mob-drawer-logo {
  height: 26px;
  width: auto;
  opacity: 0.9;
}

.mob-drawer-close {
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: 8px;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.04);
  transition: background 0.2s, border-color 0.2s;
}

.mob-drawer-close:hover {
  background: rgba(255, 255, 255, 0.09);
  border-color: rgba(255, 255, 255, 0.18);
}

.mob-drawer-close svg {
  width: 16px;
  height: 16px;
  stroke: rgba(255, 255, 255, 0.75);
  stroke-width: 2;
  stroke-linecap: round;
  pointer-events: none;
  /* let clicks pass through to the parent div */
}

.mob-nav-links {
  list-style: none;
  padding: 20px 16px;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.mob-nav-links li a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  border-radius: 10px;
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  transition: background 0.2s, color 0.2s, transform 0.2s;
}

.mob-nav-links li a:hover,
.mob-nav-links li a.active {
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  transform: translateX(4px);
}

.mob-nav-links li a.active {
  color: var(--green, #07923a);
}

.mob-nav-contact {
  margin: 8px 32px 24px;
}

.mob-nav-contact a {
  display: inline-flex;
  padding: 10px 20px;
  background: var(--copper, #B87333);
  color: #fff;
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  border-radius: 100px;
  box-shadow: 0 10px 30px rgba(184, 115, 51, 0.35);
  transition: background 0.3s, transform 0.3s, box-shadow 0.3s;
}

.mob-nav-contact a:hover {
  background: var(--copper-light, #d59451);
  transform: translateY(-2px);
  box-shadow: 0 14px 36px rgba(184, 115, 51, 0.5);
}

/* ── Open state ─────────────────────────────────────────────── */
.mob-drawer.mob-open {
  transform: translateX(0);
  pointer-events: auto;
  /* enable all child clicks — overrides the base none */
  visibility: visible;
}

.mob-overlay.mob-open {
  background: rgba(0, 0, 0, 0.55);
  pointer-events: auto;
  visibility: visible;
}

/* ── X animation when open ──────────────────────────────────── */
.mob-hamburger.mob-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.mob-hamburger.mob-open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.mob-hamburger.mob-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ══════════════════════════════════════════════════════════════
   MOBILE & TABLET BREAKPOINT — max-width: 1024px
   (Covers all Android devices and mobile sizes)
   ══════════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {

  /* Contact Background Text Scaling */
  .contact-bg-text {
    font-size: clamp(4rem, 18vw, 10rem) !important;
    margin-bottom: -15px !important;
  }

  /* Show hamburger button */
  .mob-hamburger {
    display: flex;
    pointer-events: auto;
    opacity: 1;
  }

  /* Show overlay and drawer (made visible via JS class toggling) */
  .mob-overlay,
  .mob-drawer {
    display: flex;
  }

  /* Hide the floating bottom pill nav on mobile/tablet */
  .floating-nav {
    display: none !important;
  }

  /* FAB stack adjustments */
  .whatsapp-fab,
  .scroll-to-top-fab {
    width: 32px;
    height: 32px;
    right: 9px;
  }

  .whatsapp-fab svg {
    width: 16px;
    height: 16px;
  }

  .scroll-to-top-fab svg {
    width: 14px;
    height: 14px;
  }

  .whatsapp-fab {
    bottom: 20px;
  }

  .whatsapp-fab.has-scroll-top {
    bottom: 66px;
  }

  .scroll-to-top-fab {
    bottom: 20px;
  }
}

/* ═══════ SMALL MOBILE (360x900 etc.) TWEAKS ═══════ */
@media (max-width: 480px) {
  .section {
    padding: 60px 20px 30px !important;
  }

  .sub-hero-title {
    font-size: 2.5rem !important;
  }

  .why-title {
    font-size: 2rem !important;
  }

  .fsarc-title-heading {
    font-size: 2rem !important;
  }

  .india-glass-card,
  .why-card {
    padding: 24px 20px !important;
  }

  .footer-staton {
    padding: 60px 16px 30px !important;
  }

  .footer-staton-cta-title {
    font-size: 1.5rem !important;
  }

  .contact-bg-text {
    font-size: clamp(3rem, 16vw, 8rem) !important;
    margin-bottom: -10px !important;
  }

  .process-step {
    gap: 10px !important;
  }

  .step-content {
    padding: 16px !important;
  }
}

/* ═══════════════════════════════════════════════════════════════
   MOBILE ANIMATION PERFORMANCE — max-width: 768px
   ═══════════════════════════════════════════════════════════════ */
@media (max-width: 768px) {

  /* Force GPU compositor layers for all animated elements */
  .why-tool-container,
  .why-card,
  .machine-item,
  .machine-image-wrap,
  .industry-card,
  .fsarc-tool-grid,
  .india-glass-card,
  .client-card,
  .hero-chapter,
  #hero-canvas {
    will-change: transform;
    transform: translateZ(0);
  }

  /* lifecycle gear: compositor layer hint — NO backface-visibility (breaks MotionPath) */
  #lifecycle-gear {
    will-change: transform;
  }

  /* Remove backdrop-filter on mobile — kills performance */
  .form-glass-wrapper,
  .india-glass-card,
  .floating-nav,
  .why-card,
  .roi-engine,
  .machine-info,
  .remote-hub-container,
  .stage-info {
    -webkit-backdrop-filter: none !important;
    backdrop-filter: none !important;
    background: rgba(10, 10, 10, 0.92) !important;
  }

  /* Simplify box shadows on mobile */
  .machine-item,
  .why-card,
  .client-card,
  .industry-card {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3) !important;
  }

  /* Prevent layout recalculation bleeding between sections */
  .why-staton,
  #fsarc,
  .machine-portfolio,
  .industry-section,
  .india-section,
  #roi,
  #clients {
    contain: layout style;
  }

  /* Force black background on all sections that lack an explicit one */
  .why-staton,
  .fsarc-section,
  .machines-section,
  .industry-section,
  .india-section,
  .clients-section,
  .contact-main,
  .contact-details-banner,
  .section {
    background: var(--black) !important;
  }

  /* Hero canvas — prevent overdraw */
  #hero {
    overflow: hidden;
  }

  /* Solid bottom gradient spread — only black, consistent across sequence */
  .hero-blend-overlay {
    background: linear-gradient(to top, var(--black) 0%, var(--black) 35%, transparent 50%) !important;
    opacity: 1 !important;
  }

  /* Added bottom gradient spread for India Section Canvas — strictly bottom-side only */
  .india-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 250px;
    background: linear-gradient(to top, var(--black) 0%, var(--black) 15%, transparent 100%);
    pointer-events: none;
    z-index: 3;
  }
}

/* ═══════════════════════════════════════════════════════════════
   MACHINE INFO CARD MOBILE FIXES
   ═══════════════════════════════════════════════════════════════ */
@media (max-width: 767px) {
  .machines-section .machine-info {
    padding: 40px 24px !important;
    border-radius: 16px !important;
  }

  .machines-section .machine-info .machine-tag {
    margin-bottom: 12px;
  }

  .machines-section .machine-info .machine-name {
    margin-bottom: 16px;
  }

  .machines-section .machine-info .machine-desc {
    margin-bottom: 32px;
  }
}

/* ═══════════════════════════════════════════════════════════════
   WORKSHOPS & CONFERENCES SECTION
   ═══════════════════════════════════════════════════════════════ */
.events-section {
  padding: 140px 48px;
  background: var(--black);
  position: relative;
  overflow: hidden;
}

.events-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80vw;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.06), transparent);
  pointer-events: none;
}

.events-container {
  max-width: 1400px;
  margin: 0 auto;
}

/* - Section Header --------- */
.events-header {
  text-align: center;
  margin-bottom: 80px;
}

.events-eyebrow {
  font-size: 0.75rem;
  color: var(--copper-light);
  letter-spacing: 0.4em;
  font-weight: 700;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.events-headline {
  font-size: clamp(2.2rem, 4.5vw, 3.6rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.1;
  margin-bottom: 20px;
  color: var(--white);
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s var(--ease-out-expo), transform 0.7s var(--ease-out-expo);
}

.events-headline.visible {
  opacity: 1;
  transform: translateY(0);
}

.events-headline .accent {
  color: var(--green);
}

.events-subtext {
  font-size: clamp(0.95rem, 1.4vw, 1.1rem);
  color: var(--text-dim);
  max-width: 780px;
  margin: 0 auto;
  line-height: 1.8;
  opacity: 0;
  transition: opacity 0.7s var(--ease-out-expo) 0.15s;
}

.events-subtext.visible {
  opacity: 1;
}

/* - Events Group --------- */
.events-group {
  margin-bottom: 56px;
}

.events-group:last-child {
  margin-bottom: 0;
}

.events-group-label {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 28px;
}

.group-flag {
  font-size: 1.25rem;
  line-height: 1;
}

.group-tag {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 40px;
  white-space: nowrap;
}

.india-tag {
  color: #ff9933;
  background: rgba(255, 153, 51, 0.1);
  border: 1px solid rgba(255, 153, 51, 0.25);
}

.intl-tag {
  color: var(--green);
  background: rgba(7, 146, 58, 0.08);
  border: 1px solid rgba(7, 146, 58, 0.2);
}

.group-rule {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.08), transparent);
}

/* - Events Grid --------- */
.events-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

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

/* - "Details Coming Soon" placeholder link --------- */
.event-cta-soon {
  color: rgba(255, 255, 255, 0.3);
  font-size: 0.8rem;
  font-style: italic;
  letter-spacing: 0.04em;
  cursor: default;
}

/* - Event Card --------- */
.event-card {
  background: #080808;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-left: 3px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 32px 28px 28px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: relative;
  overflow: hidden;
  transition: transform 0.45s var(--ease-out-expo),
    background 0.45s var(--ease-out-expo),
    box-shadow 0.45s var(--ease-out-expo);
  opacity: 0;
  transform: translateY(50px);
}

.event-card.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Top-right corner bracket */
.event-card::before {
  content: '';
  position: absolute;
  top: 16px;
  right: 16px;
  width: 18px;
  height: 18px;
  border-top: 1.5px solid rgba(255, 255, 255, 0.12);
  border-right: 1.5px solid rgba(255, 255, 255, 0.12);
  pointer-events: none;
  transition: border-color 0.4s var(--ease-out-expo);
}

.event-card:has(.event-status.upcoming) {
  border-left-color: var(--green);
}

.event-card:hover {
  background: #0d0d0d;
  transform: translateY(-6px);
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.55);
}

.event-card:has(.event-status.upcoming):hover {
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.55),
    -3px 0 20px rgba(7, 146, 58, 0.12);
}

.event-card:hover::before {
  border-color: rgba(255, 255, 255, 0.22);
}

/* - Card Top Row --------- */
.event-card-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

/* Status badge — dot + label, no pill */
.event-status {
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
}

.event-status::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  flex-shrink: 0;
}

.event-status.upcoming {
  color: var(--green);
  background: none;
  border: none;
}

.event-status.upcoming::before {
  background: var(--green);
  box-shadow: 0 0 6px var(--green);
}

.event-status.past {
  color: var(--text-muted);
  background: none;
  border: none;
}

.event-status.past::before {
  background: var(--text-muted);
}

/* Date badge */
.event-date-badge {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 1px;
}

.event-month {
  font-size: 0.55rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  color: var(--copper-light);
  text-transform: uppercase;
}

.event-day {
  font-size: 2.1rem;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
  letter-spacing: -0.05em;
}

.event-year {
  font-size: 0.6rem;
  color: var(--text-muted);
  letter-spacing: 0.1em;
}

/* - Card Body --------- */
.event-card-body {
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}

/* Category tag — copper pip on left */
.event-tag {
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-muted);
  padding-left: 12px;
  position: relative;
}

.event-tag::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 4px;
  background: var(--copper-light);
  border-radius: 50%;
}

.event-name {
  font-size: clamp(1.4rem, 2vw, 1.85rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--white);
  line-height: 1.15;
  margin: 0;
}

.event-desc {
  font-size: 0.9rem;
  color: var(--text-dim);
  line-height: 1.75;
  flex: 1;
}

.event-location {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text-muted);
  font-size: 0.82rem;
  font-weight: 600;
  margin-top: 4px;
}

.event-location svg {
  width: 15px;
  height: 15px;
  stroke: var(--green);
  flex-shrink: 0;
}

/* - Card Footer --------- */
.event-card-footer {
  padding-top: 20px;
  position: relative;
}

/* Gradient divider line coloured by status */
.event-card-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
}

.event-card:has(.event-status.upcoming) .event-card-footer::before {
  background: linear-gradient(90deg, rgba(7, 146, 58, 0.5), transparent);
}

.event-card:has(.event-status.past) .event-card-footer::before {
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.08), transparent);
}

.event-cta-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--text-dim);
  text-decoration: none;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transition: color 0.3s var(--ease-out-expo);
}

.event-cta-link .evt-arrow {
  display: inline-block;
  transition: transform 0.3s var(--ease-out-expo);
  color: var(--green);
}

.event-cta-link:hover {
  color: var(--white);
}

.event-cta-link:hover .evt-arrow {
  transform: translateX(6px);
}

/* - Responsive --------- */
@media (max-width: 1100px) {
  .events-section {
    padding: 100px 32px;
  }
}

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

  .events-section {
    padding: 100px 32px;
  }
}

@media (max-width: 640px) {
  .events-grid,
  .events-grid--two {
    grid-template-columns: 1fr;
  }

  .events-section {
    padding: 80px 20px;
  }

  .event-card {
    padding: 28px 24px;
  }

  .events-header {
    margin-bottom: 56px;
  }
}

/* ═══════════════════════════════════════════════════════════════
   ANDROID / MOBILE CRITICAL FIXES
   Targets all common Android screen sizes (360px–480px)
   ═══════════════════════════════════════════════════════════════ */

/* Disable background-attachment:fixed — broken on Android Chrome */
@media (max-width: 1024px) {
  .fsarc-tool-grid {
    background-attachment: scroll !important;
  }
}

/* Prevent horizontal overflow from glow effects bleeding out of sections */
/* overflow-x: clip (not hidden) — 'hidden' propagates overflow-y:auto which clips */
/* the bridge tool when it translates downward past .why-staton's bottom edge */
@media (max-width: 992px) {
  .why-staton {
    overflow-x: clip;
  }
  .fsarc-section {
    overflow-x: clip;
  }

  .why-tool-glow {
    width: 340px;
    height: 340px;
    max-width: 340px;
    max-height: 340px;
  }
}

@media (max-width: 480px) {

  .footer-cert-img {
    height: 64px;
  }

  /* Spec cards: keep 2-column grid even on very small screens */
  .machine-specs {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 12px;
  }

  .spec-card {
    padding: 14px 10px;
  }

  .spec-value {
    font-size: 1.4rem !important;
  }

  .spec-label {
    font-size: 0.65rem !important;
  }

  /* Hero chapter text: prevent overflow on 360px */
  .chapter-title {
    font-size: clamp(1.6rem, 8vw, 2.4rem) !important;
  }

  .chapter-desc {
    font-size: clamp(0.8rem, 3.5vw, 0.95rem) !important;
  }

  /* ROI meter: shrink on small screens */
  .roi-meter-wrap {
    width: 180px;
    height: 180px;
  }

  .roi-percent-val {
    font-size: 2.5rem;
  }
}

/* Disable hover transforms on touch-only devices (prevents "stuck" hover state on Android) */
@media (hover: none) and (pointer: coarse) {
  .machine-item:hover .machine-image-inner,
  .spec-card:hover,
  .why-card:hover,
  .industry-card:hover,
  .india-glass-card:hover,
  .client-card:hover,
  .event-card:hover,
  .cta-btn:hover,
  .footer-staton-social-link:hover,
  .contact-pill:hover,
  .nav-links-pill li a:hover {
    transform: none !important;
    box-shadow: none !important;
  }

  .footer-staton-list a:hover {
    transform: none !important;
  }
}

/* Touch-action: allow vertical pan on all scroll sections */
@media (max-width: 1024px) {
  .section,
  .hero-sequence-section,
  .lifecycle-section,
  .machines-section,
  .why-staton,
  .fsarc-section,
  .india-section,
  .roi-section,
  .clients-section,
  .contact-section {
    touch-action: pan-y;
  }
}

/* ─── touch-action: manipulation on all tappable elements ─── */
/* Eliminates 300ms tap delay on Android Chrome */
a,
button,
.cta-btn,
.contact-pill,
.nav-links-pill li a,
.query-option,
.submit-line,
.mob-hamburger,
.mob-drawer-close,
.event-cta-link,
.footer-staton-list a,
.footer-staton-social-link,
.industry-card,
.client-card,
.event-card,
.spec-card,
.why-card,
.scroll-to-top-fab,
.whatsapp-fab {
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
}

/* ─── Remove expensive SVG drop-shadow on mobile (ROI meter) ─── */
@media (max-width: 768px) {
  .roi-svg-meter {
    filter: none;
  }
}

/* ─── Industry card: let content breathe on very small screens ─── */
@media (max-width: 480px) {
  .industry-card {
    height: auto;
    min-height: 340px;
  }

  .industry-card-content {
    position: relative;
  }
}

/* ─── Sub-page sections: prevent 48px side padding from overflowing ─── */
/* All pages use --section-pad: 120px 48px but only override at 1024px */
@media (max-width: 600px) {
  [style*="padding: var(--section-pad)"],
  .about-hero,
  .about-tech,
  .about-wwd-trigger {
    padding-left: 20px !important;
    padding-right: 20px !important;
  }
}