@import url('https://fonts.googleapis.com/css2?family=Onest:wght@100..900&display=swap');

/* ============================================================
   OIKOSHREEM ROBOTICS — COLOR THEME
   Gold    : #C5A059  (primary accent — buttons, icons, borders)
   Navy    : #0A192F  (backgrounds, text, dark sections)
   Pearl   : #F9F9F9  (light backgrounds)
   Charcoal: #333333  (body text)
   ============================================================ */

:root {
  --gold: #C5A059;
  --gold-light: #D4B577;
  --gold-dark: #A8843A;
  --gold-muted: rgba(197, 160, 89, 0.15);
  --navy: #0A192F;
  --navy-mid: #112240;
  --navy-light: #1a2f4a;
  --pearl: #F9F9F9;
  --pearl-dark: #F0EDE8;
  --charcoal: #333333;
  --text-muted: #6B7280;
  --white: #FFFFFF;
  --border: #E8E4DB;
  --border-gold: rgba(197, 160, 89, 0.30);

  --gradient-hero: linear-gradient(135deg, #0A192F 0%, #112240 50%, #0d1f3c 100%);
  --gradient-gold: linear-gradient(135deg, #C5A059 0%, #D4B577 50%, #A8843A 100%);
  --gradient-card: linear-gradient(135deg, #0A192F, #112240);

  --shadow-sm: 0 2px 8px rgba(10, 25, 47, 0.10);
  --shadow-md: 0 8px 32px rgba(10, 25, 47, 0.16);
  --shadow-lg: 0 20px 60px rgba(10, 25, 47, 0.22);
  --shadow-gold: 0 8px 28px rgba(197, 160, 89, 0.28);

  --radius: 12px;
  --radius-lg: 20px;
}

/* ============================================================
   PRELOADER
   ============================================================ */
#preloader {
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

#preloader.preloader-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.preloader-glow {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 50% 40%, rgba(197, 160, 89, 0.08) 0%, transparent 70%),
    radial-gradient(ellipse 40% 60% at 20% 80%, rgba(17, 34, 64, 0.6) 0%, transparent 60%);
  pointer-events: none;
}

.preloader-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
}

.preloader-logo {
  animation: preloader-pulse 1.6s ease-in-out infinite;
  filter: drop-shadow(0 0 24px rgba(197, 160, 89, 0.35));
}

.preloader-logo img {
  display: block;
  max-width: 200px;
  width: 90vw;
}

.preloader-bar-wrap {
  width: 220px;
}

.preloader-bar {
  height: 3px;
  background: rgba(197, 160, 89, 0.18);
  border-radius: 99px;
  overflow: hidden;
}

.preloader-bar-fill {
  display: block;
  height: 100%;
  width: 0%;
  background: var(--gradient-gold);
  border-radius: 99px;
  animation: preloader-fill 1.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
  box-shadow: 0 0 10px rgba(197, 160, 89, 0.6);
}

.preloader-tagline {
  color: rgba(197, 160, 89, 0.65);
  font-size: 0.72rem;
  font-family: 'Onest', sans-serif;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin: 0;
  animation: preloader-fade-in 1s ease 0.3s both;
}

/* ── Scanning line decoration ── */
.preloader-inner::after {
  content: '';
  display: block;
  position: absolute;
  top: -60px;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, transparent, rgba(197, 160, 89, 0.4));
  animation: preloader-scan 2s ease-in-out infinite;
}

@keyframes preloader-pulse {

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

  50% {
    transform: scale(1.04);
    opacity: 0.85;
  }
}

@keyframes preloader-fill {
  0% {
    width: 0%;
  }

  60% {
    width: 80%;
  }

  100% {
    width: 100%;
  }
}

@keyframes preloader-fade-in {
  from {
    opacity: 0;
    transform: translateY(6px);
  }

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

@keyframes preloader-scan {

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

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

/* ============================================================ */

/* ---- RESET ---- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Onest', sans-serif;
  color: var(--charcoal);
  background: var(--white);
  line-height: 1.65;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

::-webkit-scrollbar {
  width: 6px;
}

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

::-webkit-scrollbar-thumb {
  background: var(--gold);
  border-radius: 3px;
}

/* ---- TYPOGRAPHY ---- */
h1 {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.015em;
}

h3 {
  font-size: clamp(1.3rem, 2.5vw, 1.7rem);
  font-weight: 600;
  line-height: 1.3;
}

h4 {
  font-size: 1.2rem;
  font-weight: 600;
}

p {
  margin-bottom: 1rem;
}

a {
  text-decoration: none;
  color: inherit;
}

/* ---- LAYOUT ---- */
.container {
  max-width: 1220px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 96px 0;
}

.section-sm {
  padding: 64px 0;
}

/* ---- BUTTONS ---- */
/* ---- BUTTONS (Signature Professional Style) ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  min-width: 190px;
  height: 58px;
  padding: 0 8px 0 30px;
  background: var(--gradient-gold);
  color: #031630;
  border-radius: 100px;
  font-family: 'Onest', sans-serif;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  border: none;
  transition: all 0.3s ease;
  position: relative;
  text-decoration: none;
}

.btn::after {
  content: '\f061';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  width: 42px;
  height: 42px;
  background: white;
  color: #ad8330;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
  flex-shrink: 0;
  font-size: 14px;
}

.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(173, 131, 48, 0.25);
  color: #031630;
}

.btn:hover::after {
  transform: translateX(4px);
}

/* Primary is same as default btn */
/* Primary is same as default btn */
.btn-primary {
  /* Inherits from .btn */
  border: none;
}

.btn-secondary {
  background: #031630;
  color: white;
}

.btn-secondary::after {
  color: #031630;
}

.btn-secondary:hover {
  box-shadow: 0 12px 30px rgba(3, 22, 48, 0.2);
  color: white;
}

.btn-outline {
  background: white;
  border: 1px solid #EEEEEE;
  color: #031630;
}

.btn-outline:hover {
  background: #fafafa;
  border-color: var(--gold);
}

.btn-white {
  background: white;
  color: #031630;
}

.btn-white::after {
  background: #031630;
  color: white;
}

/* Removing any hardcoded icons in buttons to avoid duplicates */
.btn i {
  display: none !important;
}

.btn-cyan {
  background: #00bcd4;
  color: white;
}

.btn-cyan::after {
  color: #00bcd4;
}

/* ---- HEADER (TOP BAR + NAV) ---- */

.top-header {
  background: #031630;
  color: rgba(255, 255, 255, 0.85);
  font-size: 13px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(197, 160, 89, 0.15);
}

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

.top-header-left {
  display: flex;
  gap: 24px;
}

.top-header-left span {
  display: flex;
  align-items: center;
  gap: 8px;
}

.top-header-left i {
  color: var(--gold);
}

.top-social {
  display: flex;
  gap: 16px;
}

.top-social a {
  color: rgba(255, 255, 255, 0.65);
  transition: color 0.2s;
  font-size: 14px;
}

.top-social a:hover {
  color: var(--gold);
}

/* ---- NAVBAR ---- */
.navbar {
  background: #FFFFFF;
  border-bottom: 1px solid #EEEEEE;
  transition: all 0.3s ease;
  width: 100%;
  position: sticky;
  top: 0;
  z-index: 1001;
}

.navbar.scrolled {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 24px;
  max-width: 1220px;
  margin: 0 auto;
  height: 76px;
}

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

/* ══ NAV LOGO: SVG robot icon ══════════════════════════════ */
.nav-logo-icon {
  width: 42px;
  height: 42px;
  background: var(--gradient-gold);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 2px 10px rgba(197, 160, 89, 0.35);
  transition: transform 0.25s, box-shadow 0.25s;
}

.nav-logo:hover .nav-logo-icon {
  transform: scale(1.07) rotate(-3deg);
  box-shadow: 0 4px 18px rgba(197, 160, 89, 0.55);
}

/* nav-logo-icon SVG elements inherit styling from parent */
.nav-logo-text {
  display: flex;
  flex-direction: column;
}

.nav-logo-name {
  color: var(--navy);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.2;
}

.nav-logo-sub {
  color: var(--gold);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.05em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
}

.nav-links a {
  color: #333333;
  font-size: 14px;
  font-weight: 600;
  padding: 8px 14px;
  border-radius: 6px;
  transition: all 0.2s;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--gold);
  background: rgba(197, 160, 89, 0.08);
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 12px;
}



.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
  transition: all 0.3s;
}

/* Mobile nav – full-screen fixed overlay */
.mobile-nav {
  display: none;
  flex-direction: column;
  position: relative;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9998;
  background: rgba(10, 25, 47, 0.98);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 80px 32px 40px;
  overflow-y: auto;
  gap: 0;
  animation: mobileNavIn 0.28s ease;
}

@keyframes mobileNavIn {
  from {
    opacity: 0;
    transform: translateX(24px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.mobile-nav-close {
  position: absolute;
  top: 18px;
  right: 20px;
  background: rgba(197, 160, 89, 0.12);
  border: 1px solid rgba(197, 160, 89, 0.25);
  color: var(--gold);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  cursor: pointer;
  line-height: 1;
  transition: background 0.2s;
}

.mobile-nav-close:hover {
  background: rgba(197, 160, 89, 0.22);
}

.mobile-nav a {
  color: rgba(255, 255, 255, 0.82);
  padding: 16px 0;
  font-size: 18px;
  font-weight: 600;
  border-bottom: 1px solid rgba(197, 160, 89, 0.10);
  transition: color 0.2s, padding-left 0.2s;
  display: block;
}

.mobile-nav a:last-child {
  border-bottom: none;
}

.mobile-nav a:hover,
.mobile-nav a.active {
  color: var(--gold);
  padding-left: 8px;
}

.mobile-nav-cta {
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.mobile-nav-cta .btn {
  justify-content: center;
  width: 100%;
}

/* ══ HERO IMAGE SLIDER ═════════════════════════════════════ */
.hero-bg-slider {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hbs-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.4s ease-in-out;
  will-change: opacity;
}

.hbs-slide.active {
  opacity: 1;
}

.hbs-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(to right, rgba(10, 25, 47, 0.88) 0%, rgba(10, 25, 47, 0.55) 55%, rgba(10, 25, 47, 0.40) 100%),
    linear-gradient(to bottom, rgba(10, 25, 47, 0.30) 0%, rgba(10, 25, 47, 0.20) 60%, rgba(10, 25, 47, 0.70) 100%);
}

/* Dots */
.hbs-dots {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 20;
  display: flex;
  gap: 10px;
  align-items: center;
}

.hbs-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  border: none;
  padding: 0;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.30);
  transition: background 0.3s, transform 0.3s, box-shadow 0.3s;
}

.hbs-dot.active {
  background: var(--gold);
  transform: scale(1.35);
  box-shadow: 0 0 10px rgba(197, 160, 89, 0.65);
}

/* ══ HERO SECTION ══════════════════════════════════════════ */
.hero {
  min-height: 100vh;
  background: var(--gradient-hero);
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 72px;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 2;
  background: radial-gradient(ellipse 80% 60% at 70% 50%, rgba(197, 160, 89, 0.07) 0%, transparent 70%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  z-index: 2;
  width: 3px;
  height: 100%;
  background: linear-gradient(to bottom, transparent, var(--gold), transparent);
  opacity: 0.4;
}

.hero-grid {
  position: absolute;
  inset: 0;
  z-index: 2;
  background-image: linear-gradient(rgba(197, 160, 89, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(197, 160, 89, 0.05) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 5;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  padding: 80px 0;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(197, 160, 89, 0.12);
  border: 1px solid rgba(197, 160, 89, 0.4);
  color: var(--gold);
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 24px;
  letter-spacing: 0.03em;
}

.hero-title {
  color: white;
  margin-bottom: 20px;
}

.hero-title span {
  color: var(--gold);
}

.hero-subtitle {
  color: rgba(255, 255, 255, 0.7);
  font-size: 18px;
  max-width: 500px;
  margin-bottom: 40px;
  line-height: 1.75;
}

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

.hero-stats {
  display: flex;
  gap: 40px;
  margin-top: 56px;
  padding-top: 40px;
  border-top: 1px solid rgba(197, 160, 89, 0.2);
}

.hero-stat-num {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
}

.hero-stat-label {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.55);
  margin-top: 4px;
}

.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-card-main {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(197, 160, 89, 0.2);
  backdrop-filter: blur(12px);
  border-radius: 24px;
  padding: 32px;
  width: 100%;
  max-width: 480px;
}

.robot-showcase {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.robot-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(197, 160, 89, 0.15);
  border-radius: 14px;
  overflow: hidden;
  transition: transform 0.3s;
}

.robot-card:hover {
  transform: translateY(-4px);
  border-color: rgba(197, 160, 89, 0.35);
}

.robot-card-label {
  padding: 10px 12px;
}

.robot-card-name {
  color: white;
  font-size: 12px;
  font-weight: 600;
}

.robot-card-status {
  color: var(--gold);
  font-size: 10px;
  margin-top: 2px;
}

.made-in-badge {
  position: absolute;
  top: -16px;
  right: -16px;
  background: var(--gradient-gold);
  color: var(--navy);
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 700;
  box-shadow: var(--shadow-gold);
  letter-spacing: 0.04em;
  animation: pulse 2s infinite;
  z-index: 2;
}

@keyframes pulse {

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

  50% {
    transform: scale(1.04)
  }
}

/* ---- SECTION HEADER ---- */
.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-tag {
  display: inline-block;
  background: rgba(197, 160, 89, 0.12);
  color: var(--gold);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 16px;
  border: 1px solid rgba(197, 160, 89, 0.3);
}

.section-title {
  color: var(--navy);
  margin-bottom: 16px;
}

.section-desc {
  color: var(--text-muted);
  font-size: 17px;
  max-width: 580px;
  margin: 0 auto;
}

/* ---- WHAT WE DO ---- */
.what-we-do {
  background: var(--white);
}

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

.wwd-card {
  background: var(--pearl);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  position: relative;
  overflow: hidden;
  transition: all 0.35s ease;
  border: 1px solid var(--border);
}

.wwd-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
}

.wwd-card:hover {
  border-color: var(--border-gold);
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.wwd-card:hover::after {
  transform: scaleX(1);
}

.wwd-icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
}

.wwd-icon.blue {
  background: var(--navy);
}

.wwd-icon.cyan {
  background: var(--gradient-gold);
}

.wwd-icon.orange {
  background: rgba(197, 160, 89, 0.15);
  border: 1px solid var(--border-gold);
}

.wwd-card h3 {
  color: var(--navy);
  margin-bottom: 12px;
  font-size: 1.4rem;
}

.wwd-card p {
  color: var(--text-muted);
  font-size: 15px;
  margin-bottom: 20px;
}

.wwd-apps {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.app-tag {
  background: rgba(197, 160, 89, 0.1);
  color: var(--gold-dark);
  font-size: 12px;
  padding: 4px 12px;
  border-radius: 50px;
  font-weight: 500;
  border: 1px solid var(--border-gold);
}

/* ---- PRODUCTS ---- */
.products-section {
  background: var(--pearl);
}

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

.product-card {
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all 0.35s ease;
  border: 1px solid var(--border);
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
  border-color: var(--border-gold);
}

.product-img {
  position: relative;
  overflow: hidden;
}

.product-img img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s;
}

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

.status-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.status-beta {
  background: rgb(196 156 87);
  color: #ffffff;
}

.status-rd {
  background: rgb(196 156 87);
  color: #ffffff;
  /* border: 1px solid var(--border-gold); */
}

.status-proto {
  background: rgb(196 156 87);
  color: #ffffff;
}

.status-concept {
  background: rgb(196 156 87);
  color: #ffffff;
}

.product-body {
  padding: 28px;
}

.product-body h3 {
  color: var(--navy);
  font-size: 1.3rem;
  margin-bottom: 10px;
}

.product-body p {
  color: var(--text-muted);
  font-size: 14px;
  margin-bottom: 20px;
}

.product-features {
  list-style: none;
  margin-bottom: 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.product-features li {
  font-size: 13px;
  color: var(--charcoal);
  display: flex;
  align-items: center;
  gap: 6px;
}

.product-features li::before {
  content: '✓';
  color: var(--gold);
  font-weight: 700;
  flex-shrink: 0;
}

/* ---- WHY SECTION (dark) ---- */
.why-section {
  /* background: var(--navy); */
  position: relative;
  overflow: hidden;
}

.why-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 70% at 80% 20%, rgba(197, 160, 89, 0.06) 0%, transparent 60%);
}

.why-section .section-title {
  color: white;
}

.why-section .section-desc {
  color: rgba(255, 255, 255, 0.6);
}

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

.why-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(197, 160, 89, 0.15);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: all 0.3s;
}

.why-card:hover {
  background: rgba(197, 160, 89, 0.06);
  border-color: rgba(197, 160, 89, 0.4);
  transform: translateY(-4px);
}

.why-num {
  font-size: 3rem;
  font-weight: 900;
  color: rgba(197, 160, 89, 0.18);
  line-height: 1;
  margin-bottom: 16px;
}

.why-card h4 {
  /* color: white; */
  font-size: 1.05rem;
  margin-bottom: 10px;
}

.why-card p {
  /* color: rgba(255, 255, 255, 0.6); */
  font-size: 14px;
  margin: 0;
}

/* ---- NEWS ---- */
.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.news-card {
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: all 0.3s;
  cursor: pointer;
}

.news-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: var(--border-gold);
}

.news-img img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
}

.news-body {
  padding: 24px;
}

.news-tag {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}

.news-body h4 {
  color: var(--navy);
  /* font-size: 1rem; */
  margin-bottom: 10px;
  line-height: 1.45;
}

.news-body p {
  color: var(--text-muted);
  /* font-size: 13px; */
  margin-bottom: 16px;
}

.news-meta {
  /* font-size: 12px; */
  color: var(--text-muted);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.read-more {
  color: var(--gold);
  font-size: 13px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 4px;
  transition: gap 0.2s;
}

.news-card:hover .read-more {
  gap: 8px;
}

/* ---- CTA BANNER ---- */
.cta-banner {
  background: var(--gradient-gold);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%230A192F' fill-opacity='0.06'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/svg%3E");
}

.cta-banner h2 {
  color: var(--navy);
  margin-bottom: 16px;
  position: relative;
}

.cta-banner p {
  color: rgba(10, 25, 47, 0.75);
  font-size: 17px;
  max-width: 560px;
  margin: 0 auto 36px;
  position: relative;
}

.cta-banner-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
}

.cta-banner .btn-white {
  background: var(--navy);
  color: white;
  border-color: var(--navy);
}

.cta-banner .btn-white:hover {
  background: var(--navy-light);
  transform: translateY(-2px);
}

.cta-banner .btn-white-outline {
  background: transparent;
  color: var(--navy);
  border-color: rgba(10, 25, 47, 0.45);
}

.cta-banner .btn-white-outline:hover {
  background: rgba(10, 25, 47, 0.1);
}

/* ---- FOOTER ---- */
footer {
  background-image: linear-gradient(rgb(6 13 26 / 0%), rgb(6 13 26 / 0%)), url(../img/footer_pattern.png), url(../img/footer_bg.png);
  background-size: cover, auto, cover;
  background-position: center;
  background-repeat: no-repeat, repeat, no-repeat;
  padding: 80px 0 0;
  position: relative;
}

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

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.footer-logo-icon {
  width: 44px;
  height: 44px;
  background: var(--gradient-gold);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: var(--navy);
  font-weight: 900;
}

.footer-logo-name {
  color: white;
  font-size: 16px;
  font-weight: 700;
}

.footer-logo-sub {
  color: var(--gold);
  font-size: 11px;
}

.footer-tagline {
  color: #ffffff;
  /* font-size: 14px; */
  line-height: 1.7;
  margin-bottom: 28px;
  max-width: 300px;
}

.footer-social {
  display: flex;
  gap: 12px;
}

.social-btn {
  width: 38px;
  height: 38px;
  border-radius: 8px;
  background: rgb(255 255 255);
  border: 1px solid rgba(197, 160, 89, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgb(3 22 48);
  font-size: 15px;
  transition: all 0.25s;
  text-decoration: none;
}

.social-btn:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--navy);
  transform: translateY(-3px);
}

.footer-col h5 {
  color: var(--gold);
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  color: #ffffff;
  /* font-size: 14px; */
  transition: color 0.2s;
}

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

.footer-bottom {
  border-top: 1px solid rgba(197, 160, 89, 0.12);
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom p {
  color: rgb(255 255 255);
  /* font-size: 13px; */
}

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

.footer-bottom-links a {
  color: rgb(255 255 255);
  /* font-size: 13px; */
  transition: color 0.2s;
}

.footer-bottom-links a:hover {
  color: rgb(255 255 255);
}

/* ---- PAGE HERO (inner pages) ---- */
.page-hero {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 100px 0 100px;
  position: relative;
  overflow: hidden;
  background-color: var(--navy);
  /* Deep blue fallback */
}

.page-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  background: linear-gradient(to bottom, rgba(10, 25, 47, 0.85) 0%, rgba(10, 25, 47, 0.7) 100%);
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 2;
  background: radial-gradient(ellipse 60% 80% at 80% 50%, rgba(197, 160, 89, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0.5;
}

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

.page-hero h1 {
  color: white;
  margin-bottom: 16px;
}

.page-hero p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 18px;
  max-width: 600px;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
}

.breadcrumb a {
  color: rgba(255, 255, 255, 0.45);

  transition: color 0.2s;
}

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

.breadcrumb span {
  color: rgba(255, 255, 255, 0.25);
  /* font-size: 13px; */
}

.breadcrumb .current {
  color: var(--gold);
  font-size: 13px;
  font-weight: 600;
}

/* ---- SPEC TABLE ---- */
.spec-table {
  width: 100%;
  border-collapse: collapse;
}

.spec-table th {
  background: var(--navy);
  color: var(--gold);
  padding: 14px 20px;
  text-align: left;
  font-size: 14px;
  font-weight: 600;
}

.spec-table td {
  padding: 12px 20px;
  border-bottom: 1px solid var(--border);
  font-size: 14px;
}

.spec-table tr:nth-child(even) td {
  background: var(--pearl);
}

.spec-table td:first-child {
  color: var(--text-muted);
  font-weight: 500;
}

.spec-table td:last-child {
  color: var(--charcoal);
  font-weight: 600;
}

/* ---- PRODUCT DETAIL ---- */
.product-detail {
  padding: 80px 0;
}

.product-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.product-detail-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.product-detail-img img {
  width: 100%;
  display: block;
}

.detail-status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
}

.detail-launch {
  color: var(--text-muted);
  font-size: 14px;
  margin-bottom: 24px;
}

.feature-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 24px 0;
}

.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
}

.feature-list li::before {
  content: '→';
  color: var(--gold);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

/* ---- USE CASES ---- */
.use-case-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.use-case-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 32px;
  border: 1px solid var(--border);
  transition: all 0.3s;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.use-case-card:hover {
  border-color: var(--border-gold);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.uc-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  flex-shrink: 0;
}

.uc-icon.blue {
  background: rgba(10, 25, 47, 0.08);
}

.uc-icon.cyan {
  background: rgba(197, 160, 89, 0.12);
}

.uc-icon.orange {
  background: rgba(197, 160, 89, 0.1);
}

.use-case-card h4 {
  color: var(--navy);
}

.use-case-card p {
  color: var(--text-muted);
  font-size: 14px;
  margin: 0;
  flex: 1;
}

.uc-benefits {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-top: 4px;
}

.uc-benefit {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--charcoal);
}

.uc-benefit::before {
  content: '✓';
  color: var(--gold);
  font-weight: 700;
}

/* ---- R&D ---- */
.rd-pillar {
  background: white;
  border-radius: var(--radius-lg);
  padding: 40px;
  border: 1px solid var(--border);
  transition: all 0.3s;
}

.rd-pillar:hover {
  border-color: var(--border-gold);
  box-shadow: var(--shadow-md);
}

.rd-icon {
  font-size: 36px;
  margin-bottom: 20px;
}

.rd-pillar h3 {
  color: var(--navy);
  margin-bottom: 12px;
}

.rd-pillar p {
  color: var(--text-muted);
  font-size: 14px;
  margin-bottom: 20px;
}

.rd-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.rd-tag {
  background: rgba(197, 160, 89, 0.08);
  color: var(--gold-dark);
  font-size: 12px;
  padding: 4px 12px;
  border-radius: 50px;
  border: 1px solid rgba(197, 160, 89, 0.2);
}

.pipeline-table {
  width: 100%;
  border-collapse: collapse;
}

.pipeline-table th {
  background: var(--navy);
  color: var(--gold);
  padding: 16px 24px;
  text-align: left;
  font-size: 14px;
  font-weight: 600;
}

.pipeline-table td {
  padding: 16px 24px;
  border-bottom: 1px solid var(--border);
  font-size: 14px;
}

.pipeline-table tr:hover td {
  background: rgba(197, 160, 89, 0.04);
}

/* ---- ABOUT / VALUES ---- */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.value-card {
  padding: 32px;
  border-radius: var(--radius-lg);
  background: white;
  border: 1px solid var(--border);
  text-align: center;
  transition: all 0.3s;
}

.value-card:hover {
  border-color: var(--border-gold);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.value-icon {
  font-size: 36px;
  margin-bottom: 16px;
}

.value-card h4 {
  color: var(--navy);
  margin-bottom: 10px;
}

.value-card p {
  color: var(--text-muted);
  font-size: 14px;
  margin: 0;
}

/* ---- CONTACT ---- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 64px;
}

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

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

.contact-info-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(197, 160, 89, 0.1);
  border: 1px solid var(--border-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}

.contact-info-label {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-muted);
  margin-bottom: 4px;
}

.contact-info-value {
  color: var(--charcoal);
  font-size: 15px;
}

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

.form-label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 8px;
}

.form-control {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  font-family: 'Onest', sans-serif;
  font-size: 15px;
  color: var(--charcoal);
  background: white;
  transition: border-color 0.2s;
  outline: none;
}

.form-control:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(197, 160, 89, 0.1);
}

.form-control::placeholder {
  color: #aaa;
}

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

select.form-control {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23C5A059' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-tabs {
  display: flex;
  gap: 8px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}

.form-tab {
  padding: 10px 20px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  border: 2px solid var(--border);
  background: white;
  color: var(--text-muted);
  transition: all 0.2s;
  font-family: 'Onest', sans-serif;
}

.form-tab.active {
  background: var(--navy);
  color: var(--gold);
  border-color: var(--navy);
}

.form-panel {
  display: none;
}

.form-panel.active {
  display: block;
}

/* ---- CAREERS ---- */
.job-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  transition: all 0.3s;
}

.job-card:hover {
  border-color: var(--border-gold);
  box-shadow: var(--shadow-sm);
}

.job-dept {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--gold);
  margin-bottom: 6px;
}

.job-card h4 {
  color: var(--navy);
  margin-bottom: 6px;
}

.job-meta {
  display: flex;
  gap: 16px;
  font-size: 13px;
  color: var(--text-muted);
}

/* ---- ANIMATIONS ---- */
.fade-up {
  opacity: 0;
  transform: translateY(32px);
  animation: fadeUp 0.6s ease forwards;
}

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

.delay-1 {
  animation-delay: 0.1s;
}

.delay-2 {
  animation-delay: 0.2s;
}

.delay-3 {
  animation-delay: 0.3s;
}

.delay-4 {
  animation-delay: 0.4s;
}

/* ---- PLACEHOLDER IMAGES ---- */
.placeholder-img {
  background: linear-gradient(135deg, #0A192F 0%, #112240 60%, #0d1f3c 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 12px;
  color: rgba(197, 160, 89, 0.45);
  font-size: 13px;
  font-family: 'Onest', sans-serif;
  text-align: center;
  border: 1px solid rgba(197, 160, 89, 0.1);
}

.placeholder-img .ph-icon {
  font-size: 36px;
  opacity: 0.5;
}

.placeholder-img .ph-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: rgba(197, 160, 89, 0.4);
}

/* Gold divider */
.gold-divider {
  height: 2px;
  width: 60px;
  margin: 0 auto 32px;
  background: var(--gradient-gold);
  border-radius: 2px;
}

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

  .hero-visual {
    display: none;
  }

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

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

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

  .section-sm {
    padding: 40px 0;
  }

  .container {
    padding: 0 16px;
  }

  /* Hero Tweaks to Remove Excess Space */
  .hero {
    min-height: auto;
    padding-top: 40px;
    padding-bottom: 60px;
  }

  .hero-content {
    padding: 24px 0 40px;
  }


  /* Nav */
  .nav-links,
  .nav-cta {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .nav-inner {
    height: 60px;
    padding: 0 16px;
  }

  /* Prevent auto-hide on mobile scroll — keep navbar always visible */
  .navbar {
    transform: none !important;
    position: fixed !important;
    top: 0;
    left: 0;
    right: 0;
  }

  /* Push content below fixed navbar */
  body {
    padding-top: 60px;
  }

  /* Grids → single column */
  .wwd-grid,
  .products-grid,
  .news-grid,
  .product-detail-grid,
  .use-case-grid,
  .values-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  /* Footer */
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

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

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

  /* Forms */
  .form-row {
    grid-template-columns: 1fr;
  }

  .form-tabs {
    flex-direction: column;
  }

  .form-tab {
    width: 100%;
    text-align: left;
  }

  /* Hero */
  .hero-stats {
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
  }

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

  .hero-subtitle {
    font-size: 16px;
  }

  .hero-actions {
    gap: 12px;
  }

  .hero-actions .btn {
    padding: 12px 20px;
    font-size: 14px;
  }

  /* Page hero */
  .page-hero {
    padding: 56px 0 56px;
  }

  .page-hero p {
    font-size: 16px;
  }

  /* Cards padding */
  .rd-pillar {
    padding: 24px;
  }

  .why-card {
    padding: 24px 20px;
  }

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

  .product-body {
    padding: 20px;
  }

  /* Job cards */
  .job-card {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  /* Pipeline table: make scrollable */
  .pipeline-table-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .pipeline-table {
    font-size: 12px;
    min-width: 480px;
  }

  .pipeline-table th,
  .pipeline-table td {
    padding: 10px 12px;
  }

  /* Section header */
  .section-header {
    margin-bottom: 40px;
  }

  .section-desc {
    font-size: 15px;
  }

  /* CTA banner */
  .cta-banner {
    padding: 56px 0;
  }

  .cta-banner h2 {
    font-size: clamp(1.5rem, 5vw, 2rem);
  }

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

  .cta-banner-btns .btn {
    width: 100%;
    max-width: 320px;
    justify-content: center;
  }

  /* Use case cards */
  .use-case-card {
    padding: 24px;
  }

  /* About intro stat cards – hide floating ones on small screens */
  .about-intro-stat-card {
    display: none;
  }

  /* Products page inline grids */
  .product-oikoassist-grid,
  .product-factorybot-grid {
    grid-template-columns: 1fr !important;
  }

  /* RD page inline grids */
  .rd-philosophy-grid,
  .rd-facility-grid,
  .rd-collab-grid {
    grid-template-columns: 1fr !important;
  }

  /* About page inline grids */
  .about-story-grid,
  .about-whyup-grid,
  .about-vision-mission-grid,
  .product-oikoassist-grid,
  .product-factorybot-grid,
  .product-specs-app-grid,
  .rd-philosophy-grid,
  .rd-facility-grid,
  .rd-collab-grid {
    grid-template-columns: 1fr !important;
  }

  /* Contact info email — wrap long addresses */
  .contact-info-value {
    word-break: break-word;
  }

  .contact-info-value a {
    word-break: break-all;
  }

  /* Spec table wrap */
  .spec-table-wrap {
    overflow-x: auto;
  }

  .spec-table {
    min-width: 340px;
  }

  /* Founder card stats */
  .founder-stats {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Values grid → 2 cols on tablet, 1 on mobile */
  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width:480px) {

  /* Very small screens */
  .values-grid {
    grid-template-columns: 1fr;
  }

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

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

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

  .hero-stats {
    flex-direction: row;
    gap: 24px;
    TEXT-ALIGN: center;
  }

  .product-img-wrap::before {
    content: '';
    position: absolute;
    width: 90%;
    height: 52% !important;
    background: #cba865c2;
    border-radius: 40px;
    top: -20px;
    right: -20px;
    z-index: 0;
  }

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

  .form-tab {
    padding: 10px 14px;
    font-size: 13px;
  }

  .cta-banner-btns .btn {
    max-width: 100%;
  }
}

/* ============================================================
   PRODUCT PAGE SHOWCASE (Clean & Professional)
   ============================================================ */
.product-showcase {
  padding: 100px 0;
}

.product-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: flex-start;
  margin-bottom: 120px;
}

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

.product-item.item-reverse {
  grid-template-columns: 1fr 1fr;
  direction: ltr;
  /* Ensure text flow is correct */
}

/* Image Side with Blob */
.product-img-wrap {
  position: relative;
}

.product-img-wrap::before {
  content: '';
  position: absolute;
  width: 90%;
  height: 60%;
  background: #cba865c2;
  border-radius: 40px;
  top: -20px;
  right: -20px;
  z-index: 0;
}

.product-item.item-reverse .product-img-wrap::before {
  right: auto;
  left: -20px;
}

.product-main-img {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 4/3;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1);
}

.product-main-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Content Side */
.product-content {
  padding-top: 10px;
}

.product-label {
  display: inline-block;
  background: var(--gold-muted);
  color: #ad8330;
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 24px;
}

.product-name {
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 12px;
  line-height: 1.1;
}

.product-launch {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 600;
  color: #ad8330;
  margin-bottom: 25px;
}

.product-summary {
  color: #666;
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 35px;
}

.product-features-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.product-features-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-bottom: 40px;
}

.product-features-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  color: #444;
  line-height: 1.5;
}

.product-features-list li::before {
  content: '→';
  color: #ad8330;
  font-weight: 900;
  flex-shrink: 0;
}

.product-features-list li strong {
  color: var(--navy);
  font-weight: 700;
  display: block;
  /* Stack title and desc for clarity */
  margin-bottom: 2px;
}

/* Tech Specs Table Clean */
.tech-specs-box {
  margin-top: 50px;
  background: #f8fafc;
  border-radius: 20px;
  padding: 30px;
  border: 1px solid #eef2f6;
}

.tech-specs-box h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.tech-table {
  width: 100%;
  border-collapse: collapse;
}

.tech-table td {
  padding: 12px 0;
  border-bottom: 1px solid #e1e8ed;
  font-size: 14px;
  color: #444;
}

.tech-table td:first-child {
  font-weight: 700;
  color: var(--navy);
  width: 40%;
}

.tech-table tr:last-child td {
  border-bottom: none;
}

/* ============================================================
   CUSTOM SOLUTIONS SECTION (Elite Light-Tech Style)
   ============================================================ */
.custom-sec {
  background: #f8fafc;
  /* Crisp Light Grey */
  padding: 120px 0;
  position: relative;
  overflow: hidden;
  border-top: 1px solid #eef2f6;
}

.custom-sec::before {
  content: '';
  position: absolute;
  top: -10%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(173, 131, 48, 0.05) 0%, transparent 70%);
}

.custom-header {
  text-align: center;
  margin-bottom: 80px;
  position: relative;
  z-index: 2;
}

.custom-title {
  color: var(--navy);
  /* Deep Navy Title */
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 20px;
}

.custom-subtitle {
  color: #64748b;
  /* Slate Grey Subtitle */
  max-width: 700px;
  margin: 0 auto;
  font-size: 1.1rem;
}

.custom-process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  position: relative;
  z-index: 2;
}

.process-card {
  background: #ffffff;
  /* White cards on grey bg */
  border: 1px solid #e2e8f0;
  border-radius: 24px;
  padding: 40px 30px;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

.process-card:hover {
  background: #ffffff;
  border-color: #ad8330;
  transform: translateY(-12px);
  box-shadow: 0 30px 60px rgba(10, 25, 47, 0.08);
}

.process-num {
  font-size: 4rem;
  font-weight: 900;
  color: rgba(173, 131, 48, 0.06);
  /* Very faint large numbers */
  position: absolute;
  top: -10px;
  right: 15px;
  transition: all 0.4s ease;
}

.process-card:hover .process-num {
  color: rgba(173, 131, 48, 0.12);
  transform: scale(1.1);
}

.process-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #ffc754 0%, #ad8330 100%);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 24px;
  margin-bottom: 25px;
  box-shadow: 0 10px 20px rgba(173, 131, 48, 0.2);
}

.process-card h4 {
  color: var(--navy);
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 15px;
}

.process-card p {
  color: #64748b;
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 0;
}

.custom-footer-cta {
  text-align: center;
  margin-top: 80px;
  position: relative;
  z-index: 2;
}

/* Responsiveness */
@media (max-width: 1200px) {
  .custom-process-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .custom-process-grid {
    grid-template-columns: 1fr;
  }

  .custom-title {
    font-size: 2.5rem;
  }
}

/* ============================================================
   USE CASES PAGE (Modern & Tech Style)
   ============================================================ */
.use-case-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-top: 50px;
}

.use-case-card {
  background: white;
  border: 1px solid #eef2f6;
  border-radius: 24px;
  padding: 40px;
  transition: all 0.4s ease;
  display: flex;
  flex-direction: column;
  gap: 25px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
}

.use-case-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.08);
  border-color: #ad8330;
}

.uc-icon-wrap {
  width: 56px;
  height: 56px;
  background: #f1f9ff;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: var(--navy);
  margin-bottom: 5px;
}

.use-case-card h4 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 12px;
}

.use-case-card p {
  color: #64748b;
  font-size: 15px;
  line-height: 1.7;
}

.uc-benefits-list {
  list-style: none;
  padding-top: 20px;
  border-top: 1px solid #f1f5f9;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.uc-benefits-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: #444;
  font-weight: 600;
}

.uc-benefits-list li::before {
  content: '✓';
  color: #ad8330;
  font-weight: 900;
  font-size: 16px;
}

/* Responsiveness */
@media (max-width: 991px) {
  .use-case-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }
}

/* ============================================================
   WHY SECTION / UNIVERSAL ADVANTAGES (Light Elite Style)
   ============================================================ */
.why-sec-modern {
  background: #f8fafc;
  /* Crisp Light Grey */
  padding: 120px 0;
  position: relative;
  overflow: hidden;
  border-top: 1px solid #eef2f6;
}

.why-sec-modern::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 10% 20%, rgba(173, 131, 48, 0.03) 0%, transparent 50%);
}

.why-grid-elite {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 60px;
}

.why-card-elite {
  background: #ffffff;
  /* White cards on grey bg */
  border: 1px solid #e2e8f0;
  border-radius: 24px;
  padding: 50px 35px;
  position: relative;
  transition: all 0.4s ease;
  overflow: hidden;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

.why-card-elite:hover {
  background: #ffffff;
  border-color: #ad8330;
  transform: translateY(-10px);
  box-shadow: 0 40px 80px rgba(10, 25, 47, 0.08);
}

.why-card-elite::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 0;
  background: linear-gradient(to bottom, #ffc754, #ad8330);
  transition: all 0.4s ease;
}

.why-card-elite:hover::after {
  height: 100%;
}

.why-index {
  font-size: 5rem;
  font-weight: 900;
  color: transparent;
  -webkit-text-stroke: 1px rgb(173 131 48 / 17%);
  position: absolute;
  top: 10px;
  right: 20px;
  transition: all 0.4s ease;
}

.why-card-elite:hover .why-index {
  -webkit-text-stroke: 1px rgba(173, 131, 48, 0.2);
  transform: scale(1.1);
}

.why-icon-box {
  width: 50px;
  height: 50px;
  background: rgba(173, 131, 48, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: #ad8330;
  margin-bottom: 25px;
}

.why-card-elite h4 {
  color: var(--navy);
  /* Navy Title */
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 15px;
}

.why-card-elite p {
  color: #64748b;
  /* Slate Grey text */
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 0;
}

/* Responsiveness */
@media (max-width: 991px) {
  .why-grid-elite {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .why-grid-elite {
    grid-template-columns: 1fr;
  }

  .why-card-elite {
    padding: 40px 30px;
  }
}

/* ============================================================
   R&D & INNOVATION PAGE (High-Fidelity Engineering)
   ============================================================ */
.rd-approach-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.rd-approach-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 24px;
  background: #f8fafc;
  border-radius: 20px;
  transition: all 0.3s ease;
  border: 1px solid transparent;
}

.rd-approach-item:hover {
  background: white;
  border-color: #ad8330;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05);
  transform: translateX(10px);
}

.rd-pillar-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-top: 50px;
}

.rd-pillar-card {
  background: white;
  border: 1px solid #eef2f6;
  border-radius: 24px;
  padding: 45px;
  transition: all 0.4s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
}

.rd-pillar-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
  border-color: #ad8330;
}

.rd-pillar-icon {
  width: 60px;
  height: 60px;
  background: #f1f9ff;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: #ad8330;
  margin-bottom: 25px;
}

/* Modern Pipeline Table */
.pipeline-container {
  background: white;
  border: 1px solid #eef2f6;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
}

.pipeline-table-modern {
  width: 100%;
  border-collapse: collapse;
}

.pipeline-table-modern th {
  background: #f8fafc;
  padding: 20px 25px;
  text-align: left;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #64748b;
  font-weight: 700;
  border-bottom: 1px solid #eef2f6;
}

.pipeline-table-modern td {
  padding: 22px 25px;
  border-bottom: 1px solid #f1f5f9;
  font-size: 15px;
  color: #444;
}

.pipeline-table-modern tr:last-child td {
  border-bottom: none;
}

.pipeline-table-modern td strong {
  color: var(--navy);
  font-weight: 700;
}

/* Facility Info Cards */
.facility-feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255, 255, 255, 0.05);
  padding: 18px 22px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: white;
  font-size: 14px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.facility-feature-item:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #ad8330;
}

/* Responsiveness */
@media (max-width: 991px) {
  .rd-pillar-grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================================
   MEDIA & NEWS PAGE (Premium Feed Style)
   ============================================================ */
.news-feed-card {
  background: white;
  border: 1px solid #eef2f6;
  border-radius: 24px;
  overflow: hidden;
  transition: all 0.4s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
}

.news-feed-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.08);
  border-color: #ad8330;
}

.news-feed-img {
  height: 220px;
  overflow: hidden;
  position: relative;
}

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

.news-feed-card:hover .news-feed-img img {
  transform: scale(1.1);
}

.news-feed-body {
  padding: 30px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.news-feed-card h4 {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.5;
  margin: 0;
}

.news-feed-card p {
  color: #64748b;
  font-size: 14px;
  line-height: 1.7;
  margin: 0;
}

.news-feed-meta {
  margin-top: auto;
  padding-top: 20px;
  border-top: 1px solid #f1f5f9;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: #94a3b8;
  font-weight: 600;
}

/* Video Modern Cards */
.media-video-card {
  background: white;
  border: 1px solid #eef2f6;
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.4s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
}

.media-video-card:hover {
  transform: scale(1.03);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1);
  border-color: #ad8330;
}

/* Video Play Button Overlay */
.play-btn-wrap {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.play-btn {
  width: 65px;
  height: 65px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  font-size: 22px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 10px 25px rgba(173, 131, 48, 0.3);
  animation: playPulse 2s infinite;
}

.play-btn i {
  margin-left: 4px;
  /* Fix visual centering of triangle */
}

@keyframes playPulse {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(173, 131, 48, 0.5);
  }

  70% {
    transform: scale(1.08);
    box-shadow: 0 0 0 20px rgba(173, 131, 48, 0);
  }

  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(173, 131, 48, 0);
  }
}

.media-video-card:hover .play-btn {
  transform: scale(1.15);
  background: white;
}

/* Filter Tabs */
.filter-btn {
  padding: 10px 22px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  border: 1px solid #e2e8f0;
  background: white;
  color: #64748b;
  transition: all 0.3s ease;
  font-family: 'Onest', sans-serif;
}

.filter-btn:hover {
  border-color: #ad8330;
  color: #ad8330;
}

.filter-btn-active {
  background: #ad8330 !important;
  color: white !important;
  border-color: #ad8330 !important;
  box-shadow: 0 10px 20px rgba(173, 131, 48, 0.2);
}

/* Responsiveness */
@media (max-width: 991px) {

  .product-item,
  .product-item.item-reverse {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .product-name {
    font-size: 2.2rem;
  }
}

.pipeline-btn {
  /* This now maps to the global .btn styles */
}

/* ============================================================
   PIPELINE PROFESSIONAL (High-Fidelity Tech Design)
   ============================================================ */
.pipeline-alternate {
  display: flex;
  flex-direction: column;
  gap: 140px;
  margin-top: 100px;
  padding-bottom: 60px;
}

.pipeline-row {
  display: flex;
  align-items: center;
  gap: 80px;
}

.pipeline-row.row-reverse {
  flex-direction: row-reverse;
}

.pipeline-image-side {
  flex: 1.1;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Artistic Background Elements (Matching Screenshot) */
.pipeline-image-side::before {
  content: '';
  position: absolute;
  width: 90%;
  height: 90%;
  background: #f1f9ff;
  /* Very light blue blob */
  border-radius: 80px;
  top: -30px;
  right: -30px;
  z-index: 0;
}

.pipeline-row.row-reverse .pipeline-image-side::before {
  right: auto;
  left: -30px;
}

.pipe-img-stack {
  position: relative;
  z-index: 2;
  width: 100%;
  /* max-width: 500px; */
  aspect-ratio: 1/1;
  border-radius: 30px;
  /* High radius like screenshot */
  overflow: hidden;
  box-shadow: 0 40px 80px rgba(3, 22, 48, 0.15);
}

.pipe-img-stack img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.pipeline-content-side {
  flex: 1;
}

.pipeline-tag {
  color: #c49c56;
  /* Cyan from screenshot */
  text-transform: uppercase;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 1.5px;
  margin-bottom: 20px;
  display: block;
}

.pipeline-title {
  color: #1a1a1a;
  font-size: 3rem;
  /* Large bold heading */
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 25px;
}

.pipeline-desc {
  color: #666;
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 35px;
}

.pipe-features {
  list-style: none;
  margin-bottom: 45px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.pipe-features li {
  display: flex;
  align-items: center;
  gap: 15px;
  font-size: 16px;
  color: #333;
  font-weight: 600;
}

/* Custom Sphere Bullets (Matching Screenshot) */
.pipe-features li::before {
  content: '';
  width: 26px;
  height: 26px;
  background: linear-gradient(135deg, #ffc754 0%, #ad8330 100%);
  border-radius: 50%;
  flex-shrink: 0;
}

/* Signature Gradient Button (Matching Screenshot) */
.pipeline-btn {
  /* This now maps to the global .btn styles */
}

/* Responsive adjustments */
@media (max-width: 1100px) {
  .pipeline-title {
    font-size: 2.5rem;
  }

  .pipeline-row {
    gap: 50px;
  }
}

@media (max-width: 991px) {

  .pipeline-row,
  .pipeline-row.row-reverse {
    flex-direction: column;
    text-align: center;
    gap: 60px;
  }

  .pipeline-image-side {
    width: 100%;
  }

  .pipe-img-stack {
    border-radius: 60px;
    max-width: 400px;
  }

  .pipe-features {
    text-align: left;
    max-width: 400px;
    margin: 0 auto 40px;
  }

  .pipeline-image-side::before {
    border-radius: 60px;
  }
}

/* ============================================================
   RESPONSIVE TABLE WRAPPER
   ============================================================ */
.table-responsive,
.spec-table-wrap,
.pipeline-table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin-bottom: 4px;
}

/* ============================================================
   PIPELINE ARTISTIC (Boxless Overlapping Layout)
   ============================================================ */
.pipeline-alternate {
  display: flex;
  flex-direction: column;
  gap: 120px;
  margin-top: 80px;
}

.pipeline-row {
  display: flex;
  align-items: center;
  gap: 80px;
  transition: all 0.4s ease;
}

.pipeline-row.row-reverse {
  flex-direction: row-reverse;
}

.pipeline-image-side {
  flex: 1.2;
  position: relative;
  min-height: 440px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Background artistic shape */
.pipeline-image-side::before {
  content: '';
  position: absolute;
  width: 80%;
  height: 80%;
  background: var(--gold-muted);
  border-radius: 40px;
  z-index: 0;
  top: 10%;
  left: 5%;
  opacity: 0.4;
}

.pipeline-row.row-reverse .pipeline-image-side::before {
  left: auto;
  right: 5%;
}

.pipe-img-main {
  position: relative;
  z-index: 2;
  width: 85%;
  border-radius: 30px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  overflow: hidden;
  transition: transform 0.6s ease;
}

.pipe-img-sub {
  position: absolute;
  bottom: -20px;
  right: 0;
  z-index: 3;
  width: 200px;
  height: 200px;
  border-radius: 20px;
  border: 6px solid white;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  overflow: hidden;
  transition: transform 0.6s ease 0.1s;
}

.pipeline-row.row-reverse .pipe-img-sub {
  right: auto;
  left: 0;
}

.pipeline-row:hover .pipe-img-main {
  transform: translateY(-10px);
}

.pipeline-row:hover .pipe-img-sub {
  transform: translateY(-20px) scale(1.05);
}

.pipeline-image-side img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.pipeline-content-side {
  flex: 1;
}

.pipeline-title {
  color: var(--navy);
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 24px;
  line-height: 1.2;
}

.pipeline-desc {
  color: var(--text-muted);
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 32px;
}

.pipe-features li {
  font-size: 16px;
  font-weight: 500;
}

/* Responsiveness */
@media (max-width: 991px) {
  .pipeline-alternate {
    gap: 80px;
  }

  .pipeline-row,
  .pipeline-row.row-reverse {
    flex-direction: column;
    gap: 40px;
    text-align: center;
  }

  .pipeline-image-side {
    min-height: 350px;
    width: 100%;
  }

  .pipe-img-main {
    width: 90%;
  }

  .pipe-img-sub {
    width: 150px;
    height: 150px;
    bottom: -10px;
  }

  .pipe-features {
    text-align: left;
    display: inline-flex;
    margin: 0 auto 32px;
  }
}

.pipe-features li i {
  color: var(--gold);
  font-size: 11px;
  flex-shrink: 0;
  margin-top: 3px;
}

.pipe-target {
  font-size: 11.5px;
  color: var(--text-muted);
  padding: 8px 12px;
  background: var(--pearl);
  border-radius: 6px;
  border: 1px solid var(--border);
  margin-bottom: 4px;
}

.pipe-target i {
  color: var(--gold);
  margin-right: 5px;
}

/* Responsive: 2-col on tablet, 1-col on mobile */
@media (max-width: 1200px) {
  .pipeline-4col {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .pipeline-4col {
    grid-template-columns: 1fr;
  }
}

/* ============================================================
   FONT AWESOME ICON SIZES IN COMPONENTS
   ============================================================ */
.wwd-icon i {
  font-size: 26px;
}

.why-card h4 i {
  font-size: 16px;
}

.hero-badge i {
  font-size: 13px;
}

.made-in-badge i {
  font-size: 12px;
  margin-right: 4px;
}

.section-tag i {
  font-size: 11px;
  margin-right: 4px;
}

.app-tag i {
  font-size: 10px;
}

.btn i {
  font-size: 14px;
}

.news-tag i {
  font-size: 10px;
  margin-right: 4px;
}

/* ============================================================
   FOUNDER CARD (About Page)
   ============================================================ */
.founder-card {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 64px;
  align-items: start;
}

.founder-photo-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.founder-img-wrap {
  position: relative;
  width: 100%;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 3px solid rgba(197, 160, 89, 0.3);
}

.founder-img-wrap img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.founder-card:hover .founder-img-wrap img {
  transform: scale(1.03);
}

.founder-badge {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gradient-gold);
  color: var(--navy);
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 700;
  white-space: nowrap;
  letter-spacing: 0.04em;
  box-shadow: var(--shadow-gold);
}

.founder-social {
  display: flex;
  gap: 12px;
}

.founder-social-btn {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(197, 160, 89, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.65);
  font-size: 16px;
  transition: all 0.25s;
  text-decoration: none;
}

.founder-social-btn:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--navy);
  transform: translateY(-3px);
}

.founder-name {
  color: white;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 800;
  margin-bottom: 10px;
  letter-spacing: -0.02em;
}

.founder-role {
  color: var(--gold);
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 28px;
}

.founder-title-block {
  padding-bottom: 24px;
  margin-bottom: 24px;
  border-bottom: 1px solid rgba(197, 160, 89, 0.2);
}

.founder-quote {
  position: relative;
  background: rgba(197, 160, 89, 0.07);
  border-left: 3px solid var(--gold);
  border-radius: 0 12px 12px 0;
  padding: 20px 24px;
  margin-bottom: 24px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 15px;
  line-height: 1.8;
  font-style: italic;
}

.founder-quote-icon {
  color: var(--gold);
  font-size: 20px;
  margin-bottom: 8px;
  display: block;
  opacity: 0.7;
}

.founder-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 8px;
}

.founder-stat {
  text-align: center;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(197, 160, 89, 0.15);
  border-radius: 12px;
  padding: 16px 12px;
  transition: all 0.25s;
}

.founder-stat:hover {
  background: rgba(197, 160, 89, 0.08);
  border-color: rgba(197, 160, 89, 0.35);
}

.founder-stat-num {
  font-size: 22px;
  color: var(--gold);
  margin-bottom: 6px;
}

.founder-stat-label {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.55);
  font-weight: 500;
  line-height: 1.4;
}

@media (max-width: 1024px) {
  .founder-card {
    grid-template-columns: 280px 1fr;
    gap: 40px;
  }

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

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

  .founder-img-wrap img {
    height: 320px;
  }

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

/* ============================================================
   CONTACT FORM — SUCCESS / ERROR BANNERS
   ============================================================ */
.form-success-banner {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: #d1fae5;
  border: 1px solid #6ee7b7;
  color: #065f46;
  padding: 18px 22px;
  border-radius: 12px;
  margin-bottom: 28px;
}

.form-success-banner i {
  color: #10b981;
  flex-shrink: 0;
  margin-top: 2px;
}

.form-error-banner {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: #fee2e2;
  border: 1px solid #fca5a5;
  color: #991b1b;
  padding: 18px 22px;
  border-radius: 12px;
  margin-bottom: 28px;
}

.form-error-banner i {
  color: #ef4444;
  flex-shrink: 0;
  margin-top: 2px;
}

.required-star {
  color: #ef4444;
  margin-left: 2px;
}

/* ============================================================
   ENHANCED ANIMATIONS & HOVER EFFECTS
   ============================================================ */

/* Buttons handled in base styles */

/* Section tag slide-in underline */
.section-tag {
  position: relative;
  overflow: hidden;
}

/* Nav link underline slide */
.nav-links a {
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 14px;
  right: 14px;
  height: 1.5px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
  transform: scaleX(1);
}

/* Footer link hover indent */
.footer-links a {
  display: inline-flex;
  align-items: center;
  gap: 0;
  transition: gap 0.2s ease, color 0.2s;
}

.footer-links a::before {
  content: '→';
  font-size: 11px;
  opacity: 0;
  max-width: 0;
  overflow: hidden;
  transition: max-width 0.2s ease, opacity 0.2s;
  color: var(--gold);
}

.footer-links a:hover::before {
  max-width: 16px;
  opacity: 1;
  gap: 6px;
}

.footer-links a:hover {
  gap: 6px;
}

/* Spec table row highlight */
.spec-table tbody tr {
  transition: background 0.15s ease;
}

.spec-table tbody tr:hover td {
  background: rgba(197, 160, 89, 0.05) !important;
}

/* Smooth image zoom on news cards */
.news-img {
  overflow: hidden;
}

.news-img img {
  transition: transform 0.5s ease;
}

.news-card:hover .news-img img {
  transform: scale(1.04);
}

/* Why card gold left border on hover */
.why-card {
  position: relative;
  overflow: hidden;
}

.why-card::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--gradient-gold);
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 0.3s ease;
}

.why-card:hover::before {
  transform: scaleY(1);
}

/* Pipeline cards staggered fade-in */
.pipeline-4col .pipe-card:nth-child(1) {
  animation-delay: 0.05s;
}

.pipeline-4col .pipe-card:nth-child(2) {
  animation-delay: 0.12s;
}

.pipeline-4col .pipe-card:nth-child(3) {
  animation-delay: 0.19s;
}

.pipeline-4col .pipe-card:nth-child(4) {
  animation-delay: 0.26s;
}

/* About page colour fix (was using --deep-blue) */
.contact-grid h3,
.product-body h3,
.rd-pillar h3 {
  color: var(--navy);
}

/* ============================================================
   TERMS & PRIVACY CHECKBOX
   ============================================================ */
.terms-checkbox-group {
  background: rgba(197, 160, 89, 0.06);
  border: 1.5px solid var(--border-gold);
  border-radius: 10px;
  padding: 14px 18px;
  margin-bottom: 20px;
}

.terms-checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
  font-size: 14px;
  line-height: 1.6;
  color: var(--charcoal);
  font-weight: 400 !important;
  margin-bottom: 0 !important;
}

.terms-checkbox {
  width: 18px !important;
  height: 18px !important;
  min-width: 18px;
  flex-shrink: 0;
  margin-top: 2px;
  accent-color: var(--gold);
  cursor: pointer;
  border: 2px solid var(--border-gold);
  border-radius: 4px;
}

.terms-checkbox-text {
  color: var(--charcoal);
  font-size: 14px;
  line-height: 1.65;
}

.terms-link {
  color: var(--gold);
  font-weight: 600;
  text-decoration: underline;
  text-decoration-color: rgba(197, 160, 89, 0.4);
  transition: text-decoration-color 0.2s;
}

.terms-link:hover {
  text-decoration-color: var(--gold);
}