/* ===== VERDA MACHINES — Premium Light Glassmorphic Design (Blue + White) ===== */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

/* ---------- Design Tokens ---------- */
:root {
  --primary: #1a237e;
  --primary-light: #3949ab;
  --primary-lighter: #5c6bc0;
  --primary-dark: #0d1259;
  --accent: #2979ff;
  --accent-bright: #448aff;
  --accent-glow: rgba(41, 121, 255, 0.4);
  --primary-glow: rgba(26, 35, 126, 0.25);

  --bg-white: #ffffff;
  --bg-light: #f4f7fc;
  --bg-section: #eef2fb;
  --bg-card: rgba(255, 255, 255, 0.75);
  --bg-card-hover: rgba(255, 255, 255, 0.95);
  --border-card: rgba(26, 35, 126, 0.08);
  --border-card-hover: rgba(41, 121, 255, 0.3);

  --text-primary: #1a1a2e;
  --text-secondary: #4a5568;
  --text-muted: #8896ab;

  --font: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --radius: 16px;
  --radius-sm: 10px;
  --radius-lg: 24px;
  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --shadow-glow: 0 8px 40px rgba(41, 121, 255, 0.12);
  --shadow-card: 0 4px 24px rgba(26, 35, 126, 0.06);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

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

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

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

ul {
  list-style: none;
}

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

/* ---------- Section Base ---------- */
.section {
  position: relative;
  padding: 120px 0;
  overflow: hidden;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
  padding: 6px 16px;
  border-radius: 50px;
  background: rgba(41, 121, 255, 0.06);
  border: 1px solid rgba(41, 121, 255, 0.12);
}

.section-label svg {
  width: 14px;
  height: 14px;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin-bottom: 20px;
  color: var(--text-primary);
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-secondary);
  max-width: 600px;
  line-height: 1.7;
}

.gradient-text {
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 50%, var(--accent-bright) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ---------- Glow Blobs (Background FX) ---------- */
.glow-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  pointer-events: none;
  z-index: 0;
  opacity: 0.35;
}

.glow-blob--blue {
  background: radial-gradient(circle, rgba(41, 121, 255, 0.3) 0%, transparent 70%);
}

.glow-blob--navy {
  background: radial-gradient(circle, rgba(26, 35, 126, 0.2) 0%, transparent 70%);
}

/* ---------- Navigation ---------- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 16px 0;
  transition: all 0.4s ease;
}

.navbar.scrolled {
  padding: 10px 0;
  background: rgba(26, 35, 126, 0.92);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow:
    0 4px 30px rgba(26, 35, 126, 0.3),
    0 0 60px rgba(41, 121, 255, 0.15);
}

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

.navbar-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* Navbar Logo with glow */
.nav-logo-img {
  height: 120px;
  width: auto;
  filter: drop-shadow(0 0 6px rgba(26, 35, 126, 0.2));
  transition: all 0.4s ease;
}

.navbar-logo:hover .nav-logo-img {
  filter: drop-shadow(0 0 12px rgba(41, 121, 255, 0.4));
}

/* Scrolled: logo white glow */
.navbar.scrolled .nav-logo-img {
  filter: brightness(0) invert(1) drop-shadow(0 0 10px rgba(255, 255, 255, 0.5));
}

.navbar-logo img {
  height: 120px;
  width: auto;
}

.navbar-logo span {
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--primary);
  transition: all 0.4s ease;
}

/* Scrolled: brand name white with glow */
.navbar.scrolled .navbar-logo span {
  color: #ffffff;
  text-shadow: 0 0 16px rgba(255, 255, 255, 0.4);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-links a {
  padding: 8px 18px;
  font-size: 0.9rem;
  font-weight: 500;
  color: #ffffff;
  border-radius: 8px;
  transition: all 0.4s ease;
  position: relative;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  box-shadow: 0 2px 12px rgba(26, 35, 126, 0.2);
}

.nav-links a:hover,
.nav-links a.active {
  color: #ffffff;
  background: linear-gradient(135deg, var(--accent) 0%, var(--primary-light) 100%);
  box-shadow: 0 4px 20px rgba(41, 121, 255, 0.3);
  transform: translateY(-1px);
}

/* Scrolled: nav links become white pills with blue text */
.navbar.scrolled .nav-links a {
  background: rgba(255, 255, 255, 0.95);
  color: var(--primary);
  box-shadow:
    0 2px 12px rgba(255, 255, 255, 0.2),
    0 0 20px rgba(255, 255, 255, 0.1);
}

.navbar.scrolled .nav-links a:hover,
.navbar.scrolled .nav-links a.active {
  background: #ffffff;
  color: var(--accent);
  box-shadow:
    0 4px 20px rgba(255, 255, 255, 0.3),
    0 0 30px rgba(255, 255, 255, 0.15);
  transform: translateY(-1px);
}

.nav-links .btn-nav {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  color: #fff;
  padding: 10px 24px;
  border-radius: 10px;
  font-weight: 600;
  margin-left: 8px;
  box-shadow: 0 4px 20px rgba(26, 35, 126, 0.25);
}

.nav-links .btn-nav:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(26, 35, 126, 0.4);
  background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary-lighter) 100%);
}

.nav-links .btn-nav.active {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  color: #fff;
}

/* Scrolled: Contact Us button → white with blue text */
.navbar.scrolled .nav-links .btn-nav {
  background: rgba(255, 255, 255, 0.95);
  color: var(--primary);
  box-shadow:
    0 4px 20px rgba(255, 255, 255, 0.25),
    0 0 30px rgba(255, 255, 255, 0.1);
}

.navbar.scrolled .nav-links .btn-nav:hover {
  background: #ffffff;
  color: var(--accent);
  box-shadow:
    0 6px 30px rgba(255, 255, 255, 0.35),
    0 0 40px rgba(255, 255, 255, 0.15);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
  background: none;
  border: none;
}

.hamburger span {
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: all 0.3s ease;
}

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

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

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

/* ---------- HERO SECTION ---------- */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  padding-top: 140px;
  background: linear-gradient(180deg, var(--bg-white) 0%, var(--bg-light) 100%);
}

.hero .glow-blob--1 {
  width: 600px;
  height: 600px;
  top: -100px;
  right: -150px;
}

.hero .glow-blob--2 {
  width: 500px;
  height: 500px;
  bottom: -100px;
  left: -200px;
}

.hero .glow-blob--3 {
  width: 350px;
  height: 350px;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-content {
  max-width: 580px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--accent);
  padding: 8px 18px;
  border-radius: 50px;
  background: rgba(41, 121, 255, 0.06);
  border: 1px solid rgba(41, 121, 255, 0.15);
  margin-bottom: 28px;
  letter-spacing: 0.05em;
}

.hero-badge svg {
  width: 16px;
  height: 16px;
}

.hero-title {
  font-size: clamp(2.5rem, 5vw, 3.8rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1.1;
  margin-bottom: 24px;
  color: var(--text-primary);
}

.hero-description {
  font-size: 1.15rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 40px;
  max-width: 500px;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  font-family: var(--font);
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
  transition: all var(--transition);
}

.btn svg {
  width: 18px;
  height: 18px;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  color: #fff;
  box-shadow: 0 4px 24px rgba(26, 35, 126, 0.3);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 36px rgba(26, 35, 126, 0.45);
}

.btn-secondary {
  background: rgba(26, 35, 126, 0.04);
  color: var(--text-primary);
  border: 1px solid rgba(26, 35, 126, 0.12);
}

.btn-secondary:hover {
  background: rgba(26, 35, 126, 0.08);
  border-color: rgba(26, 35, 126, 0.2);
  transform: translateY(-3px);
}

/* Hero Visual — Image with Glow */
.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-image-wrapper {
  width: 420px;
  height: 420px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-image-glow {
  position: absolute;
  inset: -30px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(41, 121, 255, 0.2) 0%, rgba(26, 35, 126, 0.1) 40%, transparent 70%);
  filter: blur(40px);
  animation: pulseGlow 4s ease-in-out infinite;
  z-index: 0;
}

@keyframes pulseGlow {

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

  50% {
    opacity: 0.9;
    transform: scale(1.08);
  }
}

.hero-image-ring {
  position: absolute;
  inset: -15px;
  border-radius: 50%;
  border: 1px solid rgba(41, 121, 255, 0.15);
  animation: rotateRing 30s linear infinite;
  z-index: 1;
}

.hero-image-ring--2 {
  inset: -35px;
  border-color: rgba(41, 121, 255, 0.08);
  animation-duration: 25s;
  animation-direction: reverse;
}

@keyframes rotateRing {
  to {
    transform: rotate(360deg);
  }
}

.hero-main-image {
  width: 340px;
  height: 340px;
  object-fit: cover;
  border-radius: 50%;
  position: relative;
  z-index: 2;
  border: 3px solid rgba(41, 121, 255, 0.15);
  box-shadow: 0 0 50px rgba(41, 121, 255, 0.15), 0 0 100px rgba(26, 35, 126, 0.1), 0 20px 60px rgba(0, 0, 0, 0.08);
  animation: floatImage 8s cubic-bezier(0.45, 0.05, 0.55, 0.95) infinite;
  will-change: transform;
}

@keyframes floatImage {

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

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


.orbit-dot {
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 10px var(--accent-glow);
  z-index: 3;
}

.orbit-dot:nth-child(5) {
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
}

.orbit-dot:nth-child(6) {
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
}

.orbit-dot:nth-child(7) {
  left: -15px;
  top: 50%;
  transform: translateY(-50%);
}

.orbit-dot:nth-child(8) {
  right: -15px;
  top: 50%;
  transform: translateY(-50%);
}

.hero-stats {
  display: flex;
  gap: 40px;
  margin-top: 56px;
  padding-top: 32px;
  border-top: 1px solid rgba(26, 35, 126, 0.08);
}

.hero-stat-value {
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary);
  letter-spacing: -0.03em;
}

.hero-stat-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 4px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 2;
}

.scroll-indicator span {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--text-muted);
}

.scroll-mouse {
  width: 24px;
  height: 38px;
  border: 2px solid rgba(26, 35, 126, 0.2);
  border-radius: 12px;
  position: relative;
}

.scroll-mouse::before {
  content: '';
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  width: 3px;
  height: 8px;
  background: var(--accent);
  border-radius: 3px;
  animation: scrollDown 1.8s ease-in-out infinite;
}

@keyframes scrollDown {

  0%,
  100% {
    opacity: 0;
    transform: translateX(-50%) translateY(0);
  }

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

/* ---------- ABOUT SECTION ---------- */
.about {
  background: var(--bg-section);
}

.about .glow-blob--1 {
  width: 400px;
  height: 400px;
  top: 10%;
  right: -100px;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
  position: relative;
  z-index: 1;
}

.about-text {
  max-width: 520px;
}

.about-text p {
  color: var(--text-secondary);
  margin-bottom: 20px;
  line-height: 1.8;
}

.about-highlights {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.about-highlight-card {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: var(--radius);
  padding: 24px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: all var(--transition);
  box-shadow: var(--shadow-card);
}

.about-highlight-card:hover {
  border-color: var(--border-card-hover);
  background: var(--bg-card-hover);
  box-shadow: var(--shadow-glow);
  transform: translateY(-4px);
}

.about-highlight-card .icon-box {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(41, 121, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}

.about-highlight-card .icon-box svg {
  width: 22px;
  height: 22px;
  color: var(--accent);
}

.about-highlight-card h4 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--text-primary);
}

.about-highlight-card p {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 0;
}

/* ---------- PRODUCTS SECTION ---------- */
.products .glow-blob--1 {
  width: 500px;
  height: 500px;
  top: 30%;
  left: -200px;
}

.products .glow-blob--2 {
  width: 400px;
  height: 400px;
  bottom: 10%;
  right: -150px;
}

.products-header {
  text-align: center;
  margin-bottom: 64px;
  position: relative;
  z-index: 1;
}

.products-header .section-subtitle {
  margin: 0 auto;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  position: relative;
  z-index: 1;
}

.product-card {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: var(--radius);
  padding: 0;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: all var(--transition);
  cursor: pointer;
  position: relative;
  overflow: visible;
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
}

/* Product Card Image */
.product-card-img {
  width: 100%;
  height: 220px;
  overflow: hidden;
  position: relative;
  background: linear-gradient(135deg, #f0f4ff 0%, #e8eeff 100%);
  border-radius: 16px 16px 0 0;
}

.product-card-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 16px;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 16px 16px 0 0;
}

/* Multi-image product card */
.product-card-img-multi {
  display: grid;
  grid-template-columns: 1fr 1fr;
  height: 220px;
}

.product-card-img-multi img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 10px;
}

.product-card:hover .product-card-img img {
  transform: scale(1.05);
}

.product-card-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(41, 121, 255, 0.08) 0%, transparent 70%);
  opacity: 0;
  transition: opacity var(--transition);
}

.product-card:hover .product-card-img::after {
  opacity: 1;
}

.product-card-img .img-glow {
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 40px;
  background: radial-gradient(ellipse, rgba(41, 121, 255, 0.25) 0%, transparent 70%);
  filter: blur(12px);
  opacity: 0;
  transition: opacity var(--transition);
}

.product-card:hover .product-card-img .img-glow {
  opacity: 1;
}

.spare-parts-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
  padding: 12px;
  background: var(--bg-section);
  border-radius: var(--radius) var(--radius) 0 0;
}

.spare-parts-gallery img {
  width: 100%;
  height: 90px;
  object-fit: contain;
  border-radius: 8px;
  border: 1px solid rgba(26, 35, 126, 0.08);
  transition: transform 0.3s ease;
  background: #fff;
}

.spare-parts-gallery img:hover {
  transform: scale(1.05);
}

.spare-parts-gallery img:nth-child(1),
.spare-parts-gallery img:nth-child(2) {
  grid-column: span 1;
}

.spare-parts-gallery img:first-child {
  grid-column: 1 / 2;
}

.spare-parts-gallery img:nth-child(2) {
  grid-column: 2 / 4;
}

.product-card-body {
  padding: 28px 28px 32px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.product-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  opacity: 0;
  transition: opacity var(--transition);
}

.product-card:hover {
  border-color: var(--border-card-hover);
  background: var(--bg-card-hover);
  box-shadow: var(--shadow-glow);
  transform: translateY(-6px);
}

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

.product-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: rgba(41, 121, 255, 0.06);
  border: 1px solid rgba(41, 121, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: all var(--transition);
}

.product-card:hover .product-icon {
  background: rgba(41, 121, 255, 0.12);
  box-shadow: 0 0 20px rgba(41, 121, 255, 0.15);
}

.product-icon svg {
  width: 28px;
  height: 28px;
  color: var(--accent);
}

.product-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 10px;
  letter-spacing: -0.01em;
  color: var(--text-primary);
}

.product-card .product-desc {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.65;
  margin-bottom: 18px;
}

.product-card .product-spec {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  color: var(--accent);
  font-weight: 500;
  padding: 8px 14px;
  border-radius: 8px;
  background: rgba(41, 121, 255, 0.04);
  width: fit-content;
  margin-bottom: 16px;
}

.product-card .product-spec svg {
  width: 14px;
  height: 14px;
}

.product-toggle {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  color: var(--accent);
  font-weight: 600;
  cursor: pointer;
  background: none;
  border: none;
  font-family: var(--font);
  padding: 0;
  transition: all var(--transition);
}

.product-toggle svg {
  width: 16px;
  height: 16px;
  transition: transform 0.3s;
}

.product-toggle.active svg {
  transform: rotate(180deg);
}

.product-toggle:hover {
  color: var(--primary);
}

/* Product Details (expandable) */
.product-details {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.product-details.open {
  max-height: 800px;
}

.product-details-inner {
  padding: 24px 20px;
  margin-top: 16px;
  border-top: none;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  border-radius: var(--radius);
  box-shadow:
    0 8px 40px rgba(26, 35, 126, 0.25),
    0 0 30px rgba(41, 121, 255, 0.15);
  transition: all 0.4s ease;
}

.product-details h4 {
  font-size: 0.85rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 12px;
}

.spec-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 18px;
  font-size: 0.72rem;
}

.spec-table th,
.spec-table td {
  padding: 6px 8px;
  text-align: left;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.spec-table th {
  color: rgba(255, 255, 255, 0.6);
  font-weight: 600;
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.spec-table td {
  color: rgba(255, 255, 255, 0.9);
}

.product-highlights {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.product-highlights li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.84rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.5;
}

.product-highlights li svg {
  width: 16px;
  height: 16px;
  color: rgba(255, 255, 255, 0.8);
  flex-shrink: 0;
  margin-top: 2px;
}

/* ---------- PROCESS SECTION ---------- */
.process {
  background: var(--bg-section);
  padding-top: 60px;
}

.process .glow-blob--1 {
  width: 400px;
  height: 400px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.process-header {
  text-align: center;
  margin-bottom: 36px;
  position: relative;
  z-index: 1;
}

.process-header .section-subtitle {
  margin: 0 auto;
}

.process-timeline {
  display: flex;
  justify-content: space-between;
  position: relative;
  z-index: 1;
  padding: 0 20px;
}

.process-timeline::before {
  content: '';
  position: absolute;
  top: 40px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(41, 121, 255, 0.25), transparent);
}

.process-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  flex: 1;
  position: relative;
  cursor: pointer;
}

.process-step-number {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(145deg, #1a2a5e, #0d1852);
  border: 2px solid rgba(41, 121, 255, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: all var(--transition);
  position: relative;
  box-shadow: 0 4px 20px rgba(26, 35, 126, 0.25), 0 0 30px rgba(41, 121, 255, 0.08);
}

.process-step:hover .process-step-number {
  border-color: var(--accent-bright);
  box-shadow: 0 4px 30px rgba(26, 35, 126, 0.35), 0 0 40px rgba(41, 121, 255, 0.2);
  transform: scale(1.1);
}

.process-step-number svg {
  width: 32px;
  height: 32px;
  color: #ffffff;
  filter: drop-shadow(0 0 4px rgba(255, 255, 255, 0.3));
}

/* Hide the img inside step-number (not used in this design) */
.process-step-number img {
  display: none;
}

.process-step-num {
  position: absolute;
  top: -8px;
  right: -4px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  font-size: 0.7rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}

.process-step h4 {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--text-primary);
}

.process-step p {
  font-size: 0.8rem;
  color: var(--text-muted);
  max-width: 120px;
}

.process-step.active .process-step-number {
  border-color: var(--accent-bright);
  box-shadow: 0 4px 30px rgba(26, 35, 126, 0.35), 0 0 40px rgba(41, 121, 255, 0.25);
  transform: scale(1.1);
}

/* Process Image Reveal */
.process-image-reveal {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.6s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.5s ease, margin 0.4s ease, transform 0.4s ease;
  margin-top: 0;
  position: relative;
  border-radius: 50%;
  width: 100%;
  transform: translateY(10px);
  display: flex;
  justify-content: center;
}

.process-step.active .process-image-reveal {
  max-height: 300px;
  opacity: 1;
  margin-top: 16px;
  transform: translateY(0);
}

/* Process page: images always visible without clicking */
.inner-page-first .process-image-reveal {
  max-height: 300px;
  opacity: 1;
  margin-top: 16px;
  transform: translateY(0);
}

.inner-page-first .process-timeline {
  gap: 24px;
  align-items: flex-start;
}

.inner-page-first .process-step p {
  min-height: 48px;
}

.inner-page-first .process-image-reveal img {
  width: 120px;
  height: 120px;
  border: 2px solid rgba(220, 220, 220, 0.5);
  animation: none;
}

@keyframes processImgGlow {

  0%,
  100% {
    border-color: rgba(220, 220, 220, 0.5);
    box-shadow:
      0 4px 20px rgba(0, 0, 0, 0.06);
  }

  50% {
    border-color: rgba(200, 200, 200, 0.6);
    box-shadow:
      0 6px 25px rgba(0, 0, 0, 0.08);
  }
}

.process-image-glow {
  display: none;
}

.process-image-reveal img {
  width: 180px;
  height: 180px;
  object-fit: contain;
  border-radius: 50%;
  border: 2px solid rgba(220, 220, 220, 0.5);
  box-shadow:
    0 4px 20px rgba(0, 0, 0, 0.06);
  position: relative;
  z-index: 1;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  background: rgba(255, 255, 255, 0.95);
  padding: 14px;
}

.process-image-reveal img:hover {
  transform: scale(1.05);
  box-shadow:
    0 8px 30px rgba(0, 0, 0, 0.1);
  border-color: rgba(200, 200, 200, 0.6);
}

.process-step.active .process-image-reveal img {
  animation: fadeSlideUp 0.6s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

@keyframes fadeSlideUp {
  from {
    opacity: 0;
    transform: translateY(20px) scale(0.95);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* ---------- WHY CHOOSE US ---------- */
.why-us .glow-blob--1 {
  width: 350px;
  height: 350px;
  top: 20%;
  right: -100px;
}

.why-us-header {
  text-align: center;
  margin-bottom: 64px;
  position: relative;
  z-index: 1;
}

.why-us-header .section-subtitle {
  margin: 0 auto;
}

.why-us-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
  z-index: 1;
}

.why-us-card {
  text-align: center;
  padding: 40px 24px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  border: 1px solid rgba(41, 121, 255, 0.5);
  border-radius: var(--radius);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: all 0.4s ease;
  box-shadow:
    0 8px 32px rgba(26, 35, 126, 0.25),
    0 0 24px rgba(41, 121, 255, 0.15);
}

.why-us-card:hover {
  transform: translateY(-10px) scale(1.03);
  box-shadow:
    0 16px 48px rgba(26, 35, 126, 0.35),
    0 0 40px rgba(41, 121, 255, 0.25);
}

.why-us-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.1);
}

.why-us-card:hover .why-us-icon {
  background: rgba(255, 255, 255, 0.25);
  box-shadow: 0 0 30px rgba(255, 255, 255, 0.2);
}

.why-us-icon svg {
  width: 28px;
  height: 28px;
  color: #ffffff;
}

.why-us-card h4 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: #ffffff;
}

.why-us-card p {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.6;
}

/* Stats bar */
.stats-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 32px;
  position: relative;
  z-index: 1;
}

.stat-item {
  text-align: center;
  padding: 32px 16px;
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(26, 35, 126, 0.04) 0%, rgba(41, 121, 255, 0.06) 100%);
  border: 1px solid rgba(41, 121, 255, 0.08);
  box-shadow: var(--shadow-card);
}

.stat-value {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--primary);
  letter-spacing: -0.03em;
  margin-bottom: 6px;
}

.stat-label {
  font-size: 0.82rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* ---------- WHAT WE OFFER SECTION ---------- */
.services {
  background: var(--bg-white);
  padding-top: 60px;
}

.services .glow-blob--1 {
  width: 400px;
  height: 400px;
  top: 20%;
  left: -100px;
}

.services-header {
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  z-index: 1;
}

.services-header .section-subtitle {
  margin: 0 auto;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  position: relative;
  z-index: 1;
}

.service-card {
  padding: 36px 28px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  border: 1px solid rgba(41, 121, 255, 0.5);
  border-radius: var(--radius);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: all 0.4s ease;
  box-shadow:
    0 8px 32px rgba(26, 35, 126, 0.25),
    0 0 24px rgba(41, 121, 255, 0.15);
  position: relative;
  overflow: hidden;
}

.service-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.6), rgba(255, 255, 255, 0.2));
  opacity: 0;
  transition: opacity var(--transition);
}

.service-card:hover {
  transform: translateY(-10px) scale(1.03);
  box-shadow:
    0 16px 48px rgba(26, 35, 126, 0.35),
    0 0 40px rgba(41, 121, 255, 0.25);
}

.service-card:hover::after {
  opacity: 1;
}

.service-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: all var(--transition);
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.1);
}

.service-card:hover .service-icon {
  background: rgba(255, 255, 255, 0.25);
  box-shadow: 0 0 30px rgba(255, 255, 255, 0.2);
}

.service-icon svg {
  width: 26px;
  height: 26px;
  color: #ffffff;
}

.service-card h4 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: #ffffff;
}

.service-card p {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.65;
}

/* ---------- CTA BANNER SECTION ---------- */
.cta-banner {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 50%, var(--accent) 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.cta-banner .glow-blob--1 {
  width: 500px;
  height: 500px;
  top: -200px;
  right: -100px;
  opacity: 0.2;
}

.cta-banner .glow-blob--1 {
  background: radial-gradient(circle, rgba(255, 255, 255, 0.2) 0%, transparent 70%);
}

.cta-content {
  text-align: center;
  position: relative;
  z-index: 1;
  max-width: 650px;
  margin: 0 auto;
}

.cta-content h2 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  color: #fff;
  margin-bottom: 16px;
  letter-spacing: -0.03em;
  line-height: 1.15;
}

.cta-content p {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.7;
  margin-bottom: 32px;
}

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

.btn-cta-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  font-family: var(--font);
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  background: #fff;
  color: var(--primary);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.15);
}

.btn-cta-primary svg {
  width: 18px;
  height: 18px;
}

.btn-cta-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 36px rgba(0, 0, 0, 0.2);
}

.btn-cta-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  font-family: var(--font);
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: var(--radius-sm);
  border: 2px solid rgba(255, 255, 255, 0.4);
  cursor: pointer;
  transition: all var(--transition);
  background: transparent;
  color: #fff;
}

.btn-cta-secondary svg {
  width: 18px;
  height: 18px;
}

.btn-cta-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #fff;
  transform: translateY(-3px);
}

/* ---------- CONTACT SECTION ---------- */
.contact {
  background: var(--bg-section);
}

.contact .glow-blob--1 {
  width: 400px;
  height: 400px;
  bottom: -100px;
  left: -100px;
}

.contact-header {
  text-align: center;
  margin-bottom: 64px;
  position: relative;
  z-index: 1;
}

.contact-header .section-subtitle {
  margin: 0 auto;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  position: relative;
  z-index: 1;
}

.contact-form {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-lg);
  padding: 40px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: var(--shadow-card);
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--text-secondary);
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 14px 18px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(26, 35, 126, 0.1);
  border-radius: var(--radius-sm);
  color: var(--text-primary);
  font-family: var(--font);
  font-size: 0.95rem;
  transition: all var(--transition);
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 20px rgba(41, 121, 255, 0.1);
  background: #fff;
}

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

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-muted);
}

.btn-submit {
  width: 100%;
  padding: 16px 32px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  color: #fff;
  font-family: var(--font);
  font-size: 1rem;
  font-weight: 700;
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all var(--transition);
  box-shadow: 0 4px 24px rgba(26, 35, 126, 0.3);
  position: relative;
  overflow: hidden;
}

.btn-submit::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 0%, rgba(255, 255, 255, 0.15) 50%, transparent 100%);
  transform: translateX(-100%);
  transition: transform 0.6s;
}

.btn-submit:hover::before {
  transform: translateX(100%);
}

.btn-submit:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 36px rgba(26, 35, 126, 0.4);
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-info-card {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: var(--radius);
  padding: 28px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  display: flex;
  align-items: flex-start;
  gap: 18px;
  transition: all var(--transition);
  box-shadow: var(--shadow-card);
}

.contact-info-card:hover {
  border-color: var(--border-card-hover);
  background: var(--bg-card-hover);
  box-shadow: var(--shadow-glow);
  transform: translateX(6px);
}

.contact-info-card .icon-box {
  width: 48px;
  height: 48px;
  min-width: 48px;
  border-radius: 12px;
  background: rgba(41, 121, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-info-card .icon-box svg {
  width: 22px;
  height: 22px;
  color: var(--accent);
}

.contact-info-card h4 {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--text-primary);
}

.contact-info-card p,
.contact-info-card a {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.contact-info-card a:hover {
  color: var(--accent);
}

/* ---------- ABOUT PAGE PREMIUM ---------- */

/* Hero Grid */
.about-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-hero-text .section-title {
  font-size: 2.6rem;
  line-height: 1.2;
}

.about-hero-desc {
  color: #555;
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 12px;
}

/* Stats Row */
.about-stats-row {
  display: flex;
  gap: 32px;
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.about-stat-item {
  display: flex;
  flex-direction: column;
}

.about-stat-number {
  font-size: 2rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.about-stat-label {
  font-size: 0.85rem;
  color: #777;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 500;
}

/* Image Mosaic */
.about-image-mosaic {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 16px;
}

.about-mosaic-item {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  transition: all 0.4s ease;
}

.about-mosaic-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.15);
}

.about-mosaic-large {
  grid-column: 1 / -1;
}

.about-mosaic-item img {
  width: 100%;
  height: 220px;
  object-fit: contain;
  background: #f8f9fa;
  display: block;
  transition: transform 0.5s ease;
}

.about-mosaic-large img {
  height: 280px;
}

.about-mosaic-item:hover img {
  transform: scale(1.05);
}

.about-mosaic-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 16px 20px;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
  color: white;
  font-weight: 600;
  font-size: 0.95rem;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.about-mosaic-item:hover .about-mosaic-overlay {
  opacity: 1;
}

/* What We Do Section */
.about-services {
  background: var(--bg-light);
  position: relative;
  overflow: hidden;
}

.about-services-header {
  text-align: center;
  margin-bottom: 48px;
}

.about-services-header .section-subtitle {
  text-align: center;
  margin: 0 auto;
}

.about-services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.about-service-card {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 24px;
  padding: 0;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
}

.about-service-card:hover {
  transform: translateY(-8px);
  box-shadow:
    0 20px 50px rgba(37, 99, 235, 0.12),
    0 0 0 1px rgba(37, 99, 235, 0.1);
}

.about-service-img {
  width: 100%;
  height: 180px;
  overflow: hidden;
  background: white;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
}

.about-service-img img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  transition: transform 0.4s ease;
}

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

.about-service-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: -24px auto 12px;
  position: relative;
  z-index: 2;
  box-shadow: 0 6px 20px rgba(37, 99, 235, 0.3);
}

.about-service-icon svg {
  width: 22px;
  height: 22px;
  stroke: white;
}

.about-service-card h4 {
  text-align: center;
  font-size: 1.1rem;
  color: var(--dark);
  margin: 8px 20px 8px;
}

.about-service-card p {
  text-align: center;
  font-size: 0.9rem;
  color: #666;
  line-height: 1.6;
  padding: 0 20px 24px;
}

/* Why Section */
.about-why {
  background: var(--bg-white);
}

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

.about-why-header .section-subtitle {
  text-align: center;
  margin: 0 auto;
}

/* Process Diagram Section */
.process-diagram-section {
  padding: 80px 0;
  background: linear-gradient(180deg, var(--bg-light) 0%, var(--bg-white) 100%);
  position: relative;
  overflow: hidden;
}

.process-diagram-section::before {
  content: '';
  position: absolute;
  top: 20%;
  left: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(60px);
  animation: diagramOrb1 6s ease-in-out infinite alternate;
  pointer-events: none;
}

.process-diagram-section::after {
  content: '';
  position: absolute;
  bottom: 10%;
  right: -10%;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(99, 102, 241, 0.06) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(50px);
  animation: diagramOrb2 5s ease-in-out infinite alternate;
  pointer-events: none;
}

@keyframes diagramOrb1 {
  0% { transform: translateY(0) scale(1); opacity: 0.5; }
  100% { transform: translateY(-30px) scale(1.1); opacity: 1; }
}

@keyframes diagramOrb2 {
  0% { transform: translateX(0) scale(1); opacity: 0.4; }
  100% { transform: translateX(-20px) scale(1.15); opacity: 0.9; }
}

.process-diagram-section .container {
  text-align: center;
  position: relative;
  z-index: 1;
}

.process-diagram-section .section-label {
  margin: 0 auto 12px;
}

/* Flow Diagram Layout */
.flow-diagram {
  position: relative;
  max-width: 950px;
  margin: 50px auto 0;
  display: grid;
  grid-template-columns: 1fr 50px 1fr 50px 1fr;
  grid-template-rows: auto 60px auto;
  justify-items: center;
  align-items: center;
}

/* Center Logo */
.flow-center-logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 120px;
  height: 120px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow:
    0 0 50px rgba(37, 99, 235, 0.2),
    0 0 100px rgba(37, 99, 235, 0.08),
    0 8px 30px rgba(0, 0, 0, 0.1);
  z-index: 10;
  animation: logoPulse 3s ease-in-out infinite;
}

.flow-center-logo::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  background: conic-gradient(
    from 0deg,
    rgba(37, 99, 235, 0.4),
    rgba(99, 102, 241, 0.1),
    rgba(37, 99, 235, 0.4),
    rgba(99, 102, 241, 0.1),
    rgba(37, 99, 235, 0.4)
  );
  z-index: -1;
  animation: logoRingRotate 6s linear infinite;
}

@keyframes logoRingRotate {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.flow-center-logo img {
  width: 80px;
  height: 80px;
  object-fit: contain;
}

@keyframes logoPulse {
  0%, 100% {
    box-shadow:
      0 0 50px rgba(37, 99, 235, 0.2),
      0 0 100px rgba(37, 99, 235, 0.08),
      0 8px 30px rgba(0, 0, 0, 0.1);
  }
  50% {
    box-shadow:
      0 0 70px rgba(37, 99, 235, 0.35),
      0 0 120px rgba(37, 99, 235, 0.15),
      0 8px 30px rgba(0, 0, 0, 0.1);
  }
}

/* Flow Cards */
.flow-card-inner {
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 22px;
  padding: 20px 16px;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow:
    0 8px 32px rgba(0, 0, 0, 0.06),
    0 0 0 1px rgba(37, 99, 235, 0.04);
  position: relative;
  min-width: 170px;
}

.flow-card-inner:hover {
  transform: translateY(-6px);
  box-shadow:
    0 16px 48px rgba(37, 99, 235, 0.12),
    0 0 60px rgba(37, 99, 235, 0.06),
    0 0 0 1px rgba(37, 99, 235, 0.12);
}

.flow-card-output {
  border: 1.5px solid rgba(34, 197, 94, 0.3);
}

.flow-card-output:hover {
  box-shadow:
    0 16px 48px rgba(34, 197, 94, 0.12),
    0 0 60px rgba(34, 197, 94, 0.06);
}

/* Step Badge */
.flow-step-badge {
  position: absolute;
  top: -12px;
  right: -8px;
  width: 32px;
  height: 32px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.85rem;
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
  z-index: 2;
}

.flow-badge-final {
  background: linear-gradient(135deg, #22c55e, #16a34a);
  box-shadow: 0 4px 12px rgba(34, 197, 94, 0.3);
}

/* Card Images */
.flow-card-img {
  width: 110px;
  height: 90px;
  margin: 0 auto 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.flow-card-img img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  transition: transform 0.4s ease;
}

.flow-card-inner:hover .flow-card-img img {
  transform: scale(1.1);
}

.flow-card-inner h4 {
  font-size: 0.95rem;
  color: var(--dark);
  margin-bottom: 4px;
}

.flow-card-inner p {
  font-size: 0.8rem;
  color: #888;
  margin: 0;
}

.flow-sub-label {
  display: inline-block;
  margin-top: 6px;
  font-size: 0.7rem;
  color: var(--primary);
  background: rgba(37, 99, 235, 0.08);
  padding: 3px 10px;
  border-radius: 20px;
  font-weight: 500;
}

/* Grid Positions — 5 columns, 3 rows */
/* Row 1: Step1 → Arrow → Step2 → Arrow → Step3 */
.flow-pos-1 { grid-column: 1; grid-row: 1; }
.flow-arw-12 { grid-column: 2; grid-row: 1; }
.flow-pos-2 { grid-column: 3; grid-row: 1; }
.flow-arw-23 { grid-column: 4; grid-row: 1; }
.flow-pos-3 { grid-column: 5; grid-row: 1; }

/* Row 2: Down arrow on the right side */
.flow-arw-34 { grid-column: 5; grid-row: 2; }

/* Row 3: Step6 ← Arrow ← Step5 ← Arrow ← Step4 */
.flow-pos-4 { grid-column: 5; grid-row: 3; }
.flow-arw-45 { grid-column: 4; grid-row: 3; }
.flow-pos-5 { grid-column: 3; grid-row: 3; }
.flow-arw-56 { grid-column: 2; grid-row: 3; }
.flow-pos-6 { grid-column: 1; grid-row: 3; }

/* Arrows */
.flow-arrow svg {
  width: 40px;
  height: auto;
  filter: drop-shadow(0 2px 6px rgba(37, 99, 235, 0.2));
  animation: arrowPulse 2s ease-in-out infinite;
}

@keyframes arrowPulse {
  0%, 100% { opacity: 0.6; }
  50% { opacity: 1; }
}

.flow-arw-34 svg {
  width: 30px;
}

/* Responsive */
@media (max-width: 768px) {
  .flow-diagram {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
    min-height: auto;
  }

  .flow-center-logo {
    position: relative;
    top: auto;
    left: auto;
    transform: none;
    margin-bottom: 24px;
    order: -1;
  }

  .flow-card { order: unset; }

  .flow-arrow {
    margin: -4px 0;
  }

  /* All arrows point DOWN in vertical mobile layout */
  .flow-arw-12,
  .flow-arw-23 {
    transform: rotate(90deg);
  }

  .flow-arw-34 {
    transform: none;
  }

  .flow-arw-45,
  .flow-arw-56 {
    transform: rotate(-90deg);
  }

  .flow-card-inner {
    min-width: 200px;
  }
}

/* Responsive */
@media (max-width: 1024px) {
  .about-services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .about-hero-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .about-hero-text .section-title {
    font-size: 2rem;
  }

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

  .about-service-img {
    height: 140px;
  }

  .about-stats-row {
    gap: 20px;
    justify-content: center;
    text-align: center;
  }

  .about-stat-item {
    align-items: center;
  }

  .about-stat-number {
    font-size: 1.5rem;
  }
}

@media (max-width: 480px) {
  .about-services-grid {
    grid-template-columns: 1fr;
  }

  .about-stats-row {
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
  }

  .about-mosaic-item img {
    height: 160px;
  }

  .about-mosaic-large img {
    height: 200px;
  }
}

/* ---------- FOOTER ---------- */
.footer {
  padding: 64px 0 32px;
  background: var(--primary-dark);
  color: #fff;
  position: relative;
  z-index: 1;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand .navbar-logo span {
  color: #fff;
}

.footer-brand .nav-logo-img,
.footer-brand .footer-logo-img {
  height: 80px;
  width: auto;
  filter: brightness(0) invert(1) drop-shadow(0 0 10px rgba(255, 255, 255, 0.3));
  display: block;
  margin-bottom: 16px;
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.9rem;
  line-height: 1.7;
  margin-top: 16px;
  max-width: 300px;
}

.footer-col h5 {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 20px;
  color: #fff;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li,
.footer-col ul li a {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.65);
  transition: all var(--transition);
}

.footer-col ul li a:hover {
  color: var(--accent-bright);
  padding-left: 4px;
}

.footer-bottom {
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.45);
}

/* ---------- SCROLL ANIMATIONS ---------- */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* Stagger children */
.stagger-children>* {
  opacity: 0;
  transform: translateY(24px);
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: opacity, transform;
}

.stagger-children.visible>*:nth-child(1) {
  transition-delay: 0s;
}

.stagger-children.visible>*:nth-child(2) {
  transition-delay: 0.1s;
}

.stagger-children.visible>*:nth-child(3) {
  transition-delay: 0.2s;
}

.stagger-children.visible>*:nth-child(4) {
  transition-delay: 0.3s;
}

.stagger-children.visible>*:nth-child(5) {
  transition-delay: 0.4s;
}

.stagger-children.visible>*:nth-child(6) {
  transition-delay: 0.5s;
}

.stagger-children.visible>*:nth-child(7) {
  transition-delay: 0.6s;
}

.stagger-children.visible>*:nth-child(8) {
  transition-delay: 0.7s;
}

.stagger-children.visible>* {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- PAGE HERO (Inner Pages) — HIDDEN, using simple top padding ---------- */
.page-hero {
  display: none;
}

/* Inner page first section gets extra top padding */
.inner-page-first {
  padding-top: 160px;
}

/* ---------- CIRCLE HERO IMAGE ---------- */
.hero-image-wrapper--rect {
  width: 460px;
  height: 460px;
  border-radius: 50%;
}

.hero-image-wrapper--rect .hero-image-glow {
  border-radius: 50%;
  background: radial-gradient(circle, rgba(41, 121, 255, 0.3) 0%, rgba(66, 165, 245, 0.12) 40%, transparent 70%);
  filter: blur(40px);
  animation: pulseGlow 3s ease-in-out infinite;
}

.hero-main-image--rect {
  width: 380px;
  height: 380px;
  object-fit: contain;
  border-radius: 50%;
  border: 3px solid rgba(41, 121, 255, 0.3);
  box-shadow:
    0 0 30px rgba(41, 121, 255, 0.2),
    0 0 60px rgba(41, 121, 255, 0.1),
    0 0 100px rgba(26, 35, 126, 0.06),
    0 20px 60px rgba(0, 0, 0, 0.08);
  animation: floatImage 4s ease-in-out infinite;
  background: rgba(255, 255, 255, 0.95);
  padding: 20px;
  will-change: transform;
}

.hero-main-image--rect:hover {
  box-shadow:
    0 0 40px rgba(41, 121, 255, 0.3),
    0 0 80px rgba(41, 121, 255, 0.12),
    0 0 120px rgba(26, 35, 126, 0.08),
    0 24px 70px rgba(0, 0, 0, 0.1);
  border-color: rgba(41, 121, 255, 0.5);
}

/* ---------- WHY US INLINE (About Page) ---------- */
.why-us-section-inline {
  margin-top: 100px;
  position: relative;
  z-index: 1;
}

.why-us-section-inline .why-us-header {
  text-align: center;
  margin-bottom: 64px;
}

.why-us-section-inline .why-us-header .section-subtitle {
  margin: 0 auto;
}

.why-us-section-inline .why-us-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

/* ---------- Breadcrumb (kept for potential use) ---------- */
.breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 24px;
}

.breadcrumb a {
  color: var(--text-secondary);
  transition: color var(--transition);
}

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

.breadcrumb svg {
  width: 14px;
  height: 14px;
  color: var(--text-muted);
}

.breadcrumb span {
  color: var(--accent);
  font-weight: 600;
}

.page-hero-title {
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1.1;
  margin-bottom: 16px;
}

.page-hero-subtitle {
  font-size: 1.15rem;
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 550px;
  margin: 0 auto;
}

/* ---------- RESPONSIVE ---------- */

/* Tablet */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 48px;
  }

  .hero-content {
    max-width: 100%;
  }

  .hero-description {
    max-width: 100%;
  }

  .hero-buttons {
    justify-content: center;
  }

  .hero-stats {
    justify-content: center;
  }

  .hero-image-wrapper {
    width: 320px;
    height: 320px;
  }

  .hero-main-image {
    width: 260px;
    height: 260px;
  }

  .hero-image-wrapper--rect {
    width: 300px;
    height: 300px;
    margin: 0 auto;
  }

  .inner-page-first {
    padding-top: 120px;
  }

  .why-us-section-inline .why-us-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

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

  .process-timeline {
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
  }

  .process-timeline::before {
    display: none;
  }

  .process-step {
    flex: 0 0 calc(33.33% - 28px);
  }

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

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

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

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

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

  .section-title {
    font-size: clamp(1.6rem, 4vw, 2.4rem);
  }

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

  .inner-page-first .process-timeline {
    gap: 16px;
  }

  .inner-page-first .process-image-reveal img {
    width: 100px;
    height: 100px;
  }

  .inner-page-first .process-step p {
    min-height: 40px;
  }

  .process-step-number {
    width: 65px;
    height: 65px;
  }

  .process-step-number svg {
    width: 26px;
    height: 26px;
  }

  .spec-table {
    font-size: 0.8rem;
  }

  .spec-table th,
  .spec-table td {
    padding: 8px 10px;
  }
}

/* Page blur when mobile menu opens */
body.menu-open>*:not(nav):not(.navbar) {
  filter: blur(6px);
  pointer-events: none;
  transition: filter 0.3s ease;
}

body.menu-open .navbar {
  filter: none;
}

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

  /* ---- CENTER LOGO ON MOBILE ---- */
  .navbar .container {
    position: relative;
  }

  .navbar-logo {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
  }

  /* ---- PREMIUM GLASSMORPHISM MOBILE NAV ---- */
  .nav-links {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: auto;
    background: linear-gradient(165deg,
        rgba(10, 20, 60, 0.97) 0%,
        rgba(25, 60, 150, 0.95) 40%,
        rgba(37, 99, 235, 0.93) 70%,
        rgba(59, 130, 246, 0.90) 100%);
    backdrop-filter: blur(32px) saturate(200%);
    -webkit-backdrop-filter: blur(32px) saturate(200%);
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding: 90px 28px 40px;
    gap: 10px;
    z-index: 999;
    border-radius: 0 0 32px 32px;
    box-shadow:
      0 20px 60px rgba(37, 99, 235, 0.5),
      0 0 100px rgba(59, 130, 246, 0.2),
      0 0 0 1px rgba(255, 255, 255, 0.08),
      inset 0 1px 0 rgba(255, 255, 255, 0.12);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    animation: menuReveal 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    overflow: hidden;
  }

  .nav-links::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 30% 20%, rgba(59, 130, 246, 0.3) 0%, transparent 50%),
      radial-gradient(circle at 70% 80%, rgba(139, 92, 246, 0.15) 0%, transparent 50%);
    animation: menuGlow 4s ease-in-out infinite alternate;
    pointer-events: none;
  }

  @keyframes menuReveal {
    from {
      opacity: 0;
      transform: translateY(-50px) scale(0.95);
      border-radius: 0 0 0 0;
    }

    to {
      opacity: 1;
      transform: translateY(0) scale(1);
      border-radius: 0 0 32px 32px;
    }
  }

  @keyframes menuGlow {
    from {
      transform: rotate(0deg);
    }

    to {
      transform: rotate(10deg);
    }
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links a {
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    padding: 14px 0;
    color: rgba(255, 255, 255, 0.95);
    width: 100%;
    max-width: 240px;
    text-align: center;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 16px;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    box-shadow:
      0 4px 12px rgba(0, 0, 0, 0.1),
      inset 0 1px 0 rgba(255, 255, 255, 0.08);
    position: relative;
    z-index: 1;
    animation: linkFadeIn 0.4s ease backwards;
    margin: 0 auto;
  }

  .nav-links a:nth-child(1) {
    animation-delay: 0.1s;
  }

  .nav-links a:nth-child(2) {
    animation-delay: 0.15s;
  }

  .nav-links a:nth-child(3) {
    animation-delay: 0.2s;
  }

  .nav-links a:nth-child(4) {
    animation-delay: 0.25s;
  }

  .nav-links a:nth-child(5) {
    animation-delay: 0.3s;
  }

  @keyframes linkFadeIn {
    from {
      opacity: 0;
      transform: translateY(12px) scale(0.95);
    }

    to {
      opacity: 1;
      transform: translateY(0) scale(1);
    }
  }

  .nav-links a:hover,
  .nav-links a.active {
    background: rgba(255, 255, 255, 0.95);
    color: #1a3a8a;
    box-shadow:
      0 8px 32px rgba(255, 255, 255, 0.35),
      0 0 40px rgba(59, 130, 246, 0.25),
      inset 0 0 0 1px rgba(255, 255, 255, 0.5);
    transform: scale(1.02);
    border-color: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
  }

  /* btn-nav hover (Contact Us on desktop pages while scrolled) */

  .hamburger {
    display: flex;
    z-index: 1001;
  }

  .navbar.scrolled .nav-links {
    background: linear-gradient(165deg,
        rgba(10, 20, 60, 0.97) 0%,
        rgba(25, 60, 150, 0.95) 40%,
        rgba(37, 99, 235, 0.93) 100%);
  }

  .navbar.scrolled .nav-links a {
    font-size: 1rem;
    padding: 14px 0;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.95);
  }

  .navbar.scrolled .nav-links a:hover,
  .navbar.scrolled .nav-links a.active {
    background: rgba(255, 255, 255, 0.95);
    color: #1a3a8a;
  }

  .navbar.scrolled .nav-links a.btn-nav {
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.95);
  }

  /* ---- HERO SECTION ---- */
  .hero {
    padding-top: 110px;
  }

  .hero-grid {
    text-align: center;
    justify-items: center;
    gap: 24px;
  }

  .hero-buttons {
    margin-bottom: -8px;
  }

  .hero-visual {
    display: block;
    width: 100%;
    display: flex;
    justify-content: center;
  }

  .hero-title {
    font-size: clamp(1.8rem, 7vw, 2.5rem);
  }

  .hero-stats {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 16px;
    align-items: center;
    justify-content: center;
    margin-top: -10px;
  }

  .hero-stat-value {
    font-size: 1.6rem;
  }

  .hero-stat-label {
    font-size: 0.6rem;
  }

  .hero-image-wrapper,
  .hero-image-wrapper--rect {
    width: 95vw;
    max-width: 440px;
    height: auto;
    aspect-ratio: 1;
    border-radius: 28px;
    margin: 0 auto;
  }

  .hero-main-image {
    width: 100%;
    height: 100%;
    border-radius: 24px;
    object-fit: cover;
  }

  /* Remove gap between hero and next section */
  .hero {
    padding-bottom: 20px;
  }

  /* Hide scroll indicator on mobile */
  .scroll-indicator {
    display: none;
  }

  .inner-page-first {
    padding-top: 100px;
  }

  .page-hero-title {
    font-size: clamp(1.8rem, 6vw, 2.5rem);
  }

  .why-us-section-inline .why-us-grid {
    grid-template-columns: 1fr;
  }

  .products-grid {
    grid-template-columns: 1fr;
    max-width: 380px;
    margin: 0 auto;
  }

  /* Process steps - hide images, show on click */
  .process-image-reveal {
    display: none;
  }

  .process-step.active .process-image-reveal {
    display: flex;
    justify-content: center;
    width: 100%;
    grid-column: 1 / -1;
  }

  .process-step.active .process-image-reveal img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    margin: 8px auto;
  }

  /* Process steps 2x2 grid */
  .process-timeline {
    display: grid !important;
    grid-template-columns: 1fr 1fr;
    gap: 20px 16px;
    justify-items: center;
  }

  .process-timeline::before {
    display: none;
  }

  .process-step {
    flex: unset;
    width: 100%;
    text-align: center;
  }

  .inner-page-first .process-timeline {
    display: grid !important;
    grid-template-columns: 1fr 1fr;
    gap: 20px 12px;
  }

  .inner-page-first .process-image-reveal img {
    width: 55px;
    height: 55px;
  }

  .inner-page-first .process-step p {
    min-height: 32px;
    font-size: 0.68rem;
  }

  .process-step-number {
    width: 70px;
    height: 70px;
  }

  .process-step-number svg {
    width: 28px;
    height: 28px;
  }

  .process-step h4 {
    font-size: 0.85rem;
  }

  .process-step p {
    font-size: 0.72rem;
  }

  .why-us-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .why-us-card,
  .service-card {
    padding: 16px 16px;
    text-align: center;
    align-items: center;
  }

  .why-us-card h4,
  .service-card h4 {
    font-size: 0.92rem;
    text-align: center;
  }

  .why-us-card p,
  .service-card p {
    font-size: 0.78rem;
    line-height: 1.45;
    text-align: center;
  }

  .service-icon svg,
  .why-us-icon svg {
    width: 28px;
    height: 28px;
  }

  .service-icon,
  .why-us-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 10px;
    margin-left: auto;
    margin-right: auto;
  }

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

  .stats-bar {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  .stat-item {
    padding: 16px 12px;
  }

  .stat-value {
    font-size: 1.8rem;
  }

  .stat-label {
    font-size: 0.65rem;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
    text-align: center;
  }

  .footer-brand {
    text-align: center;
    align-items: center;
    display: flex;
    flex-direction: column;
  }

  .footer-brand .navbar-logo {
    position: static;
    transform: none;
    display: block;
    margin: 0 auto 16px;
  }

  .footer-brand .navbar-logo img,
  .footer-brand .nav-logo-img,
  .footer-brand .footer-logo-img {
    height: 80px;
    width: auto;
    position: static;
    transform: none;
    margin: 0 auto;
  }

  .footer-brand p {
    max-width: 100%;
  }

  .footer-col {
    text-align: center;
  }

  .footer-col ul {
    padding: 0;
    list-style: none;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }

  .contact-form {
    padding: 28px 20px;
  }

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

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

  .spare-parts-gallery {
    grid-template-columns: repeat(3, 1fr);
    gap: 4px;
    padding: 8px;
  }

  .spare-parts-gallery img {
    height: 65px;
    object-fit: contain;
  }

  .spare-parts-gallery img:nth-child(2) {
    grid-column: 2 / 4;
  }

  .spec-table {
    font-size: 0.75rem;
  }

  .spec-table th,
  .spec-table td {
    padding: 7px 8px;
  }

  .product-card-body {
    padding: 20px 18px 22px;
  }

  .product-card h3 {
    font-size: 1.05rem;
  }

  .product-desc {
    font-size: 0.8rem;
  }

  .section-title {
    font-size: clamp(1.3rem, 5vw, 1.8rem);
  }

  .section-subtitle {
    font-size: 0.85rem;
  }

  .cta-title {
    font-size: clamp(1.2rem, 5vw, 1.6rem);
  }

  .btn-cta-primary,
  .btn-cta-secondary {
    padding: 14px 24px;
    font-size: 0.88rem;
    width: 100%;
    max-width: 260px;
    text-align: center;
    justify-content: center;
  }

  .hero-buttons .btn {
    width: 100%;
    justify-content: center;
  }

  /* Get In Touch button — off-white grey bg, blue text, glowing */
  .hero-buttons .btn-secondary {
    background: rgba(240, 242, 248, 0.95);
    color: var(--primary);
    border: 1px solid rgba(37, 99, 235, 0.15);
    box-shadow:
      0 4px 20px rgba(37, 99, 235, 0.1),
      0 0 30px rgba(37, 99, 235, 0.05);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    font-weight: 600;
  }

  .hero-buttons .btn-secondary:hover {
    background: rgba(230, 235, 245, 1);
    box-shadow:
      0 6px 28px rgba(37, 99, 235, 0.18),
      0 0 40px rgba(37, 99, 235, 0.08);
  }

  .process-insight-section {
    padding: 60px 0;
  }

  .process-insight-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

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

  .hero-buttons {
    flex-direction: column;
    align-items: stretch;
  }

  .btn {
    justify-content: center;
  }

  .stats-bar {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .stat-item {
    padding: 14px 8px;
  }

  .stat-value {
    font-size: 1.5rem;
  }

  .stat-label {
    font-size: 0.6rem;
  }

  .process-step {
    flex: 0 0 100%;
  }

  .inner-page-first .process-timeline {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }

  .inner-page-first .process-image-reveal img {
    width: 100px;
    height: 100px;
  }

  .inner-page-first .process-step p {
    min-height: unset;
  }

  .spare-parts-gallery {
    grid-template-columns: repeat(3, 1fr);
    gap: 3px;
    padding: 6px;
  }

  .spare-parts-gallery img {
    height: 50px;
    object-fit: contain;
  }

  .hero-image-wrapper--rect,
  .hero-image-wrapper {
    width: 200px;
    height: 200px;
    border-radius: 18px;
  }

  .hero-main-image {
    width: 180px;
    height: 180px;
    border-radius: 14px;
  }

  .page-hero-title {
    font-size: clamp(1.5rem, 7vw, 2rem);
  }

  .section-subtitle {
    font-size: 0.82rem;
  }

  .product-card-body {
    padding: 16px 14px 20px;
  }

  .product-toggle {
    font-size: 0.8rem;
  }

  .spec-table {
    font-size: 0.7rem;
  }

  .spec-table th,
  .spec-table td {
    padding: 6px 6px;
  }

  .cta-content {
    padding: 36px 18px;
  }

  .footer-brand p {
    font-size: 0.82rem;
  }

  .hero-stat-value {
    font-size: 1.4rem;
  }

  .hero-stat-label {
    font-size: 0.55rem;
  }

  .nav-links {
    padding: 72px 20px 28px;
    gap: 8px;
  }

  .nav-links a {
    font-size: 0.92rem;
    padding: 10px 0;
    max-width: 200px;
  }
}