/* ============================================================
   SPERRY TECHNOLOGIES — Premium Redesign Styles
   Brand: #00609C (Blue) | #08141D (Navy) | #00BA72 (Green)
   Accent: #1AD48A (Cyan-Green) | #0678CC (Sky Blue)
   ============================================================ */

/* ===== ROOT DESIGN TOKENS ===== */
:root {
  --brand-blue: #00609C;
  --brand-navy: #08141D;
  --brand-green: #00BA72;
  --brand-cyan: #1AD48A;
  --brand-sky: #0678CC;
  --brand-white: #FFFFFF;
  --brand-soft: #F3F7FA;
  --brand-light: #E4F0F7;
  --brand-dark: #0A1824;
  --brand-ink: #242424;
  --ease-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-quart: cubic-bezier(0.25, 1, 0.5, 1);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 20px;
  --radius-2xl: 24px;
}

/* ===== GLOBAL BASE ===== */
html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
}

body {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  background: var(--brand-soft);
}

h1, h2, h3, h4, h5 {
  font-family: 'Plus Jakarta Sans', 'Inter', system-ui, sans-serif;
  letter-spacing: -0.03em;
}

::selection {
  background: rgba(0, 96, 156, 0.15);
  color: var(--brand-navy);
}

/* ===== SCROLL REVEAL SYSTEM ===== */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s var(--ease-expo), transform 0.7s var(--ease-expo);
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 80ms; }
.reveal-delay-2 { transition-delay: 160ms; }
.reveal-delay-3 { transition-delay: 240ms; }
.reveal-delay-4 { transition-delay: 320ms; }
.reveal-delay-5 { transition-delay: 400ms; }
.reveal-delay-6 { transition-delay: 480ms; }
.reveal-delay-7 { transition-delay: 560ms; }
.reveal-delay-8 { transition-delay: 640ms; }
.reveal-delay-9 { transition-delay: 720ms; }

/* ===== LOGO ===== */
.site-logo {
  height: 52px;
  width: auto;
  max-width: 230px;
  object-fit: contain;
  object-position: left center;
  display: block;
}

.site-logo-nav { height: 52px; max-width: 230px; }
.site-logo-drawer { height: 46px; }
.site-logo-footer { height: 58px; max-width: 260px; }

.logo-link {
  display: flex;
  align-items: center;
  background: transparent;
  border: none;
  box-shadow: none;
  padding: 0;
  border-radius: 0;
  transition: transform 0.3s var(--ease-expo), opacity 0.3s ease;
}

.logo-link:hover {
  transform: translateY(-1px);
  opacity: 0.92;
}

@media (max-width: 640px) {
  .site-logo-nav { height: 42px; max-width: 170px; }
}

/* ===== NAVIGATION ===== */
.nav-header {
  background: rgba(241, 248, 252, 0.88);
  backdrop-filter: blur(22px) saturate(180%);
  -webkit-backdrop-filter: blur(22px) saturate(180%);
  transition: background 0.4s var(--ease-quart), box-shadow 0.4s var(--ease-quart);
}

.nav-header::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--brand-green) 0%, var(--brand-blue) 48%, var(--brand-ink) 100%);
  opacity: 0.9;
}

.nav-scrolled {
  background: rgba(255, 255, 255, 0.94) !important;
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  box-shadow: 0 8px 28px rgba(4, 36, 48, 0.08);
}

.nav-link {
  position: relative;
  font-size: 0.875rem;
  font-weight: 600;
  color: #0A3A4A;
  text-decoration: none;
  transition: color 0.3s ease;
  padding: 4px 0;
  white-space: nowrap;
}

@media (min-width: 1280px) {
  .nav-link { font-size: 0.9375rem; }
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--brand-green);
  border-radius: 1px;
  transition: width 0.3s var(--ease-expo), left 0.3s var(--ease-expo);
}

.nav-link:hover {
  color: var(--brand-blue);
}

.nav-link:hover::after,
.nav-link.is-active::after {
  width: 100%;
  left: 0;
}

.nav-link.is-active {
  color: var(--brand-green);
}

/* ===== MOBILE MENU ===== */
.mobile-overlay {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.mobile-overlay.active {
  opacity: 1;
  visibility: visible;
}

.mobile-drawer {
  transform: translateX(100%);
  transition: transform 0.4s var(--ease-expo);
  background: #08141D;
  border-left: 1px solid rgba(0, 96, 156, 0.22);
}

.mobile-drawer.active {
  transform: translateX(0);
}

.mobile-nav-link {
  display: block;
  padding: 14px 0;
  font-size: 1.125rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.82);
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transition: color 0.3s ease, padding-left 0.3s ease;
}

.mobile-nav-link:hover {
  color: var(--brand-cyan);
  padding-left: 8px;
}

/* ===== HERO SECTION ===== */
.hero-section {
  background:
    radial-gradient(ellipse 80% 70% at 92% 12%, rgba(0, 196, 220, 0.28), transparent 58%),
    radial-gradient(ellipse 55% 50% at 8% 86%, rgba(0, 186, 114, 0.22), transparent 52%),
    linear-gradient(155deg, #021820 0%, #04384A 36%, #0A6278 68%, #032830 100%);
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid rgba(0, 186, 180, 0.18);
}

.hero-section::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -10%;
  width: 70%;
  height: 140%;
  background: radial-gradient(ellipse at center, rgba(0, 168, 196, 0.18) 0%, transparent 70%);
  pointer-events: none;
}

.hero-section::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 120px;
  background: linear-gradient(to top, rgba(2, 24, 32, 0.55), transparent);
  pointer-events: none;
}

.hero-particles {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.hero-particle {
  position: absolute;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--brand-cyan);
  opacity: 0;
  animation: particle-float 8s ease-in-out infinite;
}

@keyframes particle-float {
  0% { opacity: 0; transform: translateY(100px) scale(0); }
  20% { opacity: 0.6; }
  80% { opacity: 0.4; }
  100% { opacity: 0; transform: translateY(-200px) scale(1); }
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  pointer-events: none;
  animation: glow-drift 10s ease-in-out infinite;
}

@keyframes glow-drift {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(15px, -20px) scale(1.04); }
  66% { transform: translate(-10px, 15px) scale(0.96); }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  border-radius: 50px;
  background: rgba(0, 212, 196, 0.12);
  border: 1px solid rgba(0, 212, 196, 0.28);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: #7EF0DE;
}

/* ===== STATS BAR ===== */
.stats-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-lg);
  padding: 24px 0;
  backdrop-filter: blur(10px);
}

.stats-bar-light {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  background: rgba(0, 96, 156, 0.04);
  border: 1px solid rgba(0, 96, 156, 0.08);
  border-radius: var(--radius-lg);
  padding: 28px 0;
}

.stat-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 0 28px;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
}

.stat-item:last-child {
  border-right: none;
}

.stat-item-light {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 0 28px;
  border-right: 1px solid rgba(0, 96, 156, 0.1);
}

.stat-item-light:last-child {
  border-right: none;
}

.stat-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.stat-icon-blue {
  background: rgba(0, 96, 156, 0.12);
}

.stat-icon-green {
  background: rgba(0, 186, 114, 0.12);
}

.stat-number {
  font-variant-numeric: tabular-nums;
}

/* ===== SECTION HEADING ===== */
.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--brand-blue);
  margin-bottom: 16px;
  padding: 6px 16px;
  border-radius: 50px;
  background: rgba(0, 96, 156, 0.06);
  border: 1px solid rgba(0, 96, 156, 0.12);
}

.section-eyebrow-green {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--brand-green);
  margin-bottom: 16px;
  padding: 6px 16px;
  border-radius: 50px;
  background: rgba(0, 186, 114, 0.06);
  border: 1px solid rgba(0, 186, 114, 0.15);
}

.section-eyebrow-dark {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--brand-green);
  margin-bottom: 16px;
}

.section-eyebrow-dark::before,
.section-eyebrow-dark::after {
  content: '';
  display: block;
  width: 32px;
  height: 2px;
  background: var(--brand-green);
  border-radius: 1px;
}

/* ===== GRADIENT TEXT ===== */
.gradient-text {
  background: linear-gradient(135deg, var(--brand-blue), var(--brand-green));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.gradient-text-green {
  background: linear-gradient(135deg, var(--brand-green), var(--brand-cyan));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ===== SERVICE CARDS (New 3x3 grid) ===== */
.service-card-new {
  position: relative;
  background: white;
  border: 1px solid rgba(0, 96, 156, 0.08);
  border-radius: var(--radius-xl);
  padding: 2rem;
  transition: all 0.45s var(--ease-expo);
  overflow: hidden;
}

.service-card-new::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--brand-green), var(--brand-blue));
  opacity: 0;
  transition: opacity 0.35s ease;
}

.service-card-new:hover {
  transform: translateY(-6px);
  border-color: rgba(0, 96, 156, 0.18);
  box-shadow: 0 20px 60px rgba(8, 20, 29, 0.08), 0 4px 12px rgba(0, 96, 156, 0.06);
}

.service-card-new:hover::after {
  opacity: 1;
}

.service-card-new .service-icon-new {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--brand-light);
  margin-bottom: 20px;
  transition: all 0.4s var(--ease-expo);
}

.service-card-new:hover .service-icon-new {
  background: var(--brand-blue);
}

.service-card-new:hover .service-icon-new svg {
  stroke: white;
}

.service-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid rgba(0, 96, 156, 0.12);
  margin-top: 16px;
  margin-left: auto;
  transition: all 0.3s ease;
  color: var(--brand-blue);
}

.service-card-new:hover .service-arrow {
  background: var(--brand-blue);
  border-color: var(--brand-blue);
  color: white;
}

/* ===== FLAGSHIP SERVICES (Biometric + Applications) ===== */
.hero-core-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.hero-core-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: #E8FBFF;
  font-size: 0.75rem;
  font-weight: 650;
  letter-spacing: 0.02em;
  text-decoration: none;
  transition: background 0.3s ease, border-color 0.3s ease, transform 0.3s var(--ease-expo);
}

.hero-core-pill:hover {
  background: rgba(0, 186, 114, 0.16);
  border-color: rgba(26, 212, 138, 0.45);
  transform: translateY(-2px);
}

.hero-core-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--brand-cyan);
  box-shadow: 0 0 0 4px rgba(26, 212, 138, 0.18);
}

.flagship-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  margin-bottom: 1.75rem;
}

@media (min-width: 900px) {
  .flagship-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.flagship-card {
  position: relative;
  border-radius: var(--radius-xl);
  padding: 2.1rem 2.15rem 1.9rem;
  overflow: hidden;
  min-height: 100%;
  display: flex;
  flex-direction: column;
  isolation: isolate;
  transition: transform 0.5s var(--ease-expo), box-shadow 0.5s var(--ease-expo);
}

.flagship-card::before {
  content: '';
  position: absolute;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

.flagship-card > * {
  position: relative;
  z-index: 1;
}

.flagship-card-bio {
  background:
    radial-gradient(circle at 88% 12%, rgba(26, 212, 138, 0.22), transparent 42%),
    linear-gradient(148deg, #062833 0%, #0A4E5E 52%, #0B5A48 100%);
  color: white;
  box-shadow: 0 24px 60px rgba(6, 40, 51, 0.28);
}

.flagship-card-bio::before {
  right: -80px;
  top: -90px;
  background: radial-gradient(circle, rgba(26, 212, 138, 0.28), transparent 68%);
}

.flagship-card-app {
  background:
    radial-gradient(circle at 92% 8%, rgba(6, 120, 204, 0.12), transparent 40%),
    linear-gradient(148deg, #F4FBFF 0%, #FFFFFF 48%, #ECF9F3 100%);
  border: 1px solid rgba(0, 96, 156, 0.12);
  box-shadow: 0 18px 48px rgba(8, 20, 29, 0.06);
}

.flagship-card-app::before {
  right: -90px;
  bottom: -110px;
  background: radial-gradient(circle, rgba(0, 96, 156, 0.14), transparent 70%);
}

.flagship-card:hover {
  transform: translateY(-8px);
}

.flagship-card-bio:hover {
  box-shadow: 0 32px 72px rgba(6, 40, 51, 0.38), 0 0 0 1px rgba(26, 212, 138, 0.18);
}

.flagship-card-app:hover {
  box-shadow: 0 28px 64px rgba(8, 20, 29, 0.1), 0 0 0 1px rgba(0, 96, 156, 0.12);
}

.flagship-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  width: fit-content;
  padding: 5px 11px;
  border-radius: 999px;
  font-size: 0.625rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 1.15rem;
}

.flagship-card-bio .flagship-badge {
  background: rgba(26, 212, 138, 0.16);
  color: #7EF0DE;
  border: 1px solid rgba(26, 212, 138, 0.28);
}

.flagship-card-app .flagship-badge {
  background: rgba(0, 96, 156, 0.08);
  color: var(--brand-blue);
  border: 1px solid rgba(0, 96, 156, 0.14);
}

.flagship-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.1rem;
}

.flagship-card-bio .flagship-icon {
  background: rgba(26, 212, 138, 0.14);
  color: #7EF0DE;
  box-shadow: inset 0 0 0 1px rgba(26, 212, 138, 0.18);
}

.flagship-card-app .flagship-icon {
  background: rgba(0, 96, 156, 0.08);
  color: var(--brand-blue);
}

.flagship-list {
  list-style: none;
  padding: 0;
  margin: 1.15rem 0 1.4rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 16px;
}

.flagship-list li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.8125rem;
  line-height: 1.4;
  font-weight: 550;
}

.flagship-card-bio .flagship-list li {
  color: rgba(255, 255, 255, 0.78);
}

.flagship-card-app .flagship-list li {
  color: rgba(8, 20, 29, 0.62);
}

.flagship-list svg {
  flex-shrink: 0;
  margin-top: 2px;
}

.flagship-cta {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.875rem;
  font-weight: 700;
  text-decoration: none;
  width: fit-content;
  transition: gap 0.3s ease;
}

.flagship-card-bio .flagship-cta {
  color: #7EF0DE;
}

.flagship-card-app .flagship-cta {
  color: var(--brand-blue);
}

.flagship-cta:hover {
  gap: 12px;
}

.service-card-featured {
  border-color: rgba(0, 186, 114, 0.22);
  background:
    linear-gradient(180deg, rgba(232, 247, 241, 0.7) 0%, #ffffff 42%);
}

.service-card-featured::after {
  opacity: 1;
  background: linear-gradient(90deg, var(--brand-green), var(--brand-cyan));
}

/* ===== WHY CHOOSE US (Dark Glass Cards) ===== */
.why-section {
  background: linear-gradient(170deg, #08141D 0%, #0C2A42 50%, #08141D 100%);
  position: relative;
  overflow: hidden;
}

.why-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(0, 96, 156, 0.08) 1px, transparent 1px);
  background-size: 24px 24px;
  pointer-events: none;
}

.why-section::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 200px;
  background: linear-gradient(to top, rgba(8, 20, 29, 0.4), transparent);
  pointer-events: none;
}

.glass-card {
  position: relative;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(0, 96, 156, 0.15);
  border-radius: var(--radius-xl);
  padding: 2rem;
  transition: all 0.45s var(--ease-expo);
  overflow: hidden;
  backdrop-filter: blur(8px);
}

.glass-card:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(0, 186, 114, 0.28);
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.28), 0 0 0 1px rgba(0, 96, 156, 0.12);
}

.glass-card-number {
  font-size: 4.5rem;
  font-weight: 900;
  line-height: 1;
  color: rgba(255, 255, 255, 0.04);
  position: absolute;
  top: 1rem;
  right: 1.5rem;
  pointer-events: none;
}

.glass-card-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 96, 156, 0.15);
  margin-bottom: 16px;
}

.glass-card-dots {
  display: grid;
  grid-template-columns: repeat(4, 6px);
  grid-template-rows: repeat(4, 6px);
  gap: 4px;
  position: absolute;
  bottom: 1.5rem;
  right: 1.5rem;
}

.glass-card-dots span {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(26, 212, 138, 0.2);
}

/* ===== CASE STUDY ===== */
.case-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px 0;
}

.case-feature-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: rgba(0, 96, 156, 0.06);
  border: 1px solid rgba(0, 96, 156, 0.1);
}

.metric-card {
  background: white;
  border: 1px solid rgba(0, 96, 156, 0.08);
  border-radius: var(--radius-xl);
  padding: 28px;
  transition: all 0.35s ease;
}

.metric-card:hover {
  box-shadow: 0 12px 40px rgba(8, 20, 29, 0.06);
  transform: translateY(-3px);
}

.metric-card-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* ===== APPROACH / ABOUT CARDS ===== */
.approach-card {
  position: relative;
  background: white;
  border: 1px solid rgba(0, 96, 156, 0.08);
  border-radius: var(--radius-xl);
  padding: 2rem;
  transition: all 0.45s var(--ease-expo);
  overflow: hidden;
}

.approach-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 48px rgba(8, 20, 29, 0.07);
  border-color: rgba(0, 96, 156, 0.15);
}

.approach-card-number {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--brand-blue);
  margin-bottom: 8px;
}

.approach-card-line {
  width: 32px;
  height: 3px;
  background: var(--brand-green);
  border-radius: 2px;
  margin-bottom: 16px;
}

.approach-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 186, 114, 0.08);
  margin-bottom: 16px;
  transition: all 0.4s var(--ease-expo);
}

/* ===== VALUES BANNER ===== */
.values-banner {
  background: linear-gradient(135deg, #00609C 0%, #0A4F7A 40%, #0C6B4F 78%, #00BA72 100%);
  border-radius: var(--radius-xl);
  padding: 28px 40px;
  display: flex;
  align-items: center;
  gap: 20px;
  box-shadow: 0 18px 48px rgba(0, 96, 156, 0.18);
}

.values-banner-dark {
  background: linear-gradient(135deg, var(--brand-navy) 0%, #0C2A42 50%, var(--brand-navy) 100%);
  border-radius: var(--radius-xl);
  padding: 32px 40px;
}

.value-item {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 1;
}

.value-icon {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  flex-shrink: 0;
}

/* ===== PRODUCT CARDS ===== */
.product-card-new {
  position: relative;
  padding: 2rem;
  border-radius: var(--radius-xl);
  background: white;
  border: 1px solid rgba(0, 96, 156, 0.08);
  transition: all 0.45s var(--ease-expo);
  overflow: hidden;
}

.product-card-new:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 56px rgba(8, 20, 29, 0.09);
  border-color: rgba(0, 96, 156, 0.15);
}

.product-card-new::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
}

.product-card-blue::before {
  background: linear-gradient(to right, var(--brand-blue), var(--brand-sky));
}

.product-card-green::before {
  background: linear-gradient(to right, var(--brand-green), var(--brand-cyan));
}

.product-card-new.product-card-featured {
  background:
    radial-gradient(circle at 96% 0%, rgba(26, 212, 138, 0.16), transparent 36%),
    linear-gradient(145deg, #062833 0%, #0A4E5E 58%, #0B5A48 100%);
  border: 1px solid rgba(26, 212, 138, 0.18);
  color: white;
}

.product-card-new.product-card-featured:hover {
  border-color: rgba(26, 212, 138, 0.35);
  box-shadow: 0 24px 64px rgba(6, 40, 51, 0.28);
}

.product-card-new.product-card-featured::before {
  background: linear-gradient(to right, var(--brand-green), var(--brand-cyan));
}

.product-card-featured h3,
.product-card-featured p:not(.product-badge) {
  color: white;
}

.product-card-featured p.text-sm {
  color: rgba(255, 255, 255, 0.68);
}

.product-card-featured .product-badge {
  color: #7EF0DE;
}

.product-card-featured .check-item {
  color: rgba(255, 255, 255, 0.78);
}

.product-card-featured .learn-more-link {
  color: #7EF0DE;
}

.product-card-featured .learn-more-arrow {
  border-color: rgba(26, 212, 138, 0.35);
}

.product-card-featured .learn-more-link:hover .learn-more-arrow {
  background: var(--brand-green);
  border-color: var(--brand-green);
  color: white;
}

.product-icon-featured {
  background: rgba(26, 212, 138, 0.14);
  color: #7EF0DE;
}

.product-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.4s var(--ease-expo);
}

.product-icon-blue {
  background: rgba(0, 96, 156, 0.08);
}

.product-icon-green {
  background: rgba(0, 186, 114, 0.08);
}

.product-badge {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--brand-blue);
}

.product-badge-green {
  color: var(--brand-green);
}

.check-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.check-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.875rem;
  color: rgba(8, 20, 29, 0.7);
  padding: 5px 0;
}

.check-icon {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 186, 114, 0.1);
  flex-shrink: 0;
}

.learn-more-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--brand-blue);
  text-decoration: none;
  margin-top: 16px;
  transition: gap 0.3s ease;
}

.learn-more-link:hover {
  gap: 12px;
}

.learn-more-arrow {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(0, 96, 156, 0.15);
  transition: all 0.3s ease;
}

.learn-more-link:hover .learn-more-arrow {
  background: var(--brand-blue);
  border-color: var(--brand-blue);
  color: white;
}

/* ===== TECH ROWS ===== */
.tech-row {
  display: flex;
  align-items: center;
  background: white;
  border: 1px solid rgba(0, 96, 156, 0.06);
  border-radius: var(--radius-lg);
  padding: 20px 28px;
  transition: all 0.35s ease;
}

.tech-row:hover {
  border-color: rgba(0, 96, 156, 0.12);
  box-shadow: 0 8px 24px rgba(8, 20, 29, 0.04);
}

.tech-row-label {
  width: 200px;
  flex-shrink: 0;
  padding-right: 28px;
  border-right: 1px solid rgba(0, 96, 156, 0.08);
  margin-right: 28px;
}

.tech-items {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: center;
  flex: 1;
}

.tech-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--brand-navy);
  white-space: nowrap;
}

.tech-item-icon {
  width: 28px;
  height: 28px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 96, 156, 0.06);
  flex-shrink: 0;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--brand-blue);
}

/* ===== COMPLIANCE BANNER ===== */
.compliance-banner {
  background: linear-gradient(135deg, var(--brand-navy) 0%, #0C2A42 100%);
  border-radius: var(--radius-xl);
  padding: 28px 40px;
  display: flex;
  align-items: center;
}

.compliance-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 0 24px;
}

.compliance-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

/* ===== INDUSTRY CARDS ===== */
.industry-card {
  position: relative;
  padding: 2rem;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(0, 96, 156, 0.08);
  background: white;
  overflow: hidden;
  transition: all 0.45s var(--ease-expo);
}

.industry-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 4px;
  background: var(--brand-blue);
  border-radius: 0 2px 2px 0;
  opacity: 0;
  transition: opacity 0.35s ease;
}

.industry-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 40px rgba(8, 20, 29, 0.08);
  border-color: rgba(0, 96, 156, 0.15);
}

.industry-card:hover::before {
  opacity: 1;
}

.industry-card-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  transition: all 0.4s var(--ease-expo);
}

.industry-icon-blue { background: rgba(0, 96, 156, 0.08); }
.industry-icon-green { background: rgba(0, 186, 114, 0.08); }
.industry-icon-cyan { background: rgba(26, 212, 138, 0.08); }

/* ===== CTA BANNER ===== */
.cta-industry-banner {
  background: linear-gradient(135deg, var(--brand-navy) 0%, #0C2A42 50%, var(--brand-navy) 100%);
  border-radius: var(--radius-xl);
  padding: 36px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
}

.cta-industry-banner::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--brand-blue), var(--brand-green), var(--brand-cyan));
}

/* ===== JOURNEY / PROCESS TIMELINE ===== */
.journey-timeline {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  padding: 20px 0;
  position: relative;
}

.journey-circle {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
  flex-shrink: 0;
  box-shadow: 0 8px 24px rgba(0, 96, 156, 0.15);
  transition: all 0.35s var(--ease-expo);
}

.journey-circle:hover {
  transform: scale(1.1);
  box-shadow: 0 12px 32px rgba(0, 96, 156, 0.25);
}

.journey-connector {
  height: 3px;
  flex: 1;
  max-width: 80px;
  position: relative;
  z-index: 1;
}

.journey-connector-line {
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, rgba(0, 96, 156, 0.15), rgba(0, 186, 114, 0.15));
  border-radius: 2px;
}

.journey-number {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--brand-blue);
  text-align: center;
  margin-top: 8px;
}

.journey-card {
  text-align: center;
  padding: 2rem;
  background: white;
  border: 1px solid rgba(0, 96, 156, 0.08);
  border-radius: var(--radius-xl);
  transition: all 0.45s var(--ease-expo);
}

.journey-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 48px rgba(8, 20, 29, 0.07);
  border-color: rgba(0, 96, 156, 0.15);
}

.journey-card-title {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--brand-blue);
  margin-bottom: 8px;
}

.journey-card-line {
  width: 32px;
  height: 3px;
  background: var(--brand-green);
  border-radius: 2px;
  margin: 0 auto 12px;
}

/* ===== DARK CTA SECTION ===== */
.cta-dark {
  background: linear-gradient(160deg, var(--brand-navy) 0%, #0C2A42 50%, var(--brand-navy) 100%);
  border-radius: var(--radius-xl);
  padding: 48px;
  position: relative;
  overflow: hidden;
}

.cta-dark::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -20%;
  width: 50%;
  height: 200%;
  background: radial-gradient(ellipse at center, rgba(0, 186, 114, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.cta-dark::after {
  content: '';
  position: absolute;
  bottom: -50%;
  right: -20%;
  width: 50%;
  height: 200%;
  background: radial-gradient(ellipse at center, rgba(0, 96, 156, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.cta-glow-ring {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  border: 2px solid rgba(26, 212, 138, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  flex-shrink: 0;
}

.cta-glow-ring::before {
  content: '';
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  border: 1px solid rgba(26, 212, 138, 0.08);
}

.cta-glow-ring-inner {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(0, 96, 156, 0.3), rgba(0, 186, 114, 0.3));
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ===== CONTACT SECTION ===== */
.contact-benefit-line {
  position: relative;
  padding-left: 0;
}

.contact-benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 20px 0;
  position: relative;
}

.contact-benefit-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
  z-index: 2;
}

.contact-benefit-connector {
  position: absolute;
  left: 26px;
  top: 72px;
  bottom: -20px;
  width: 2px;
  background: linear-gradient(to bottom, rgba(0, 96, 156, 0.15), rgba(0, 186, 114, 0.15));
}

.contact-form-card {
  background: white;
  border: 1px solid rgba(0, 96, 156, 0.08);
  border-radius: var(--radius-2xl);
  padding: 2.5rem;
  box-shadow: 0 20px 60px rgba(8, 20, 29, 0.05);
}

.contact-form-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 28px;
}

.contact-form-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 186, 114, 0.06);
}

/* ===== FORM STYLES ===== */
.form-group {
  margin-bottom: 1rem;
}

.form-label {
  display: block;
  margin-bottom: 6px;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--brand-navy);
  letter-spacing: 0.01em;
}

.form-label .required {
  color: #ef4444;
  margin-left: 2px;
}

.form-input {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid rgba(0, 96, 156, 0.12);
  border-radius: var(--radius-md);
  background: white;
  font-family: 'Inter', sans-serif;
  font-size: 0.9375rem;
  color: var(--brand-navy);
  transition: all 0.3s ease;
  outline: none;
}

.form-input:focus {
  border-color: var(--brand-blue);
  box-shadow: 0 0 0 3px rgba(0, 96, 156, 0.08);
}

.form-input::placeholder {
  color: #94a3b8;
}

textarea.form-input {
  resize: vertical;
  min-height: 100px;
}

select.form-input {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%2308141D' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
}

.form-privacy {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 16px;
  font-size: 0.8125rem;
  color: rgba(8, 20, 29, 0.5);
}

/* ===== BUTTONS ===== */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  background: linear-gradient(180deg, #0678CC 0%, #00609C 100%);
  color: white;
  font-family: 'Plus Jakarta Sans', 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.9375rem;
  border: none;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all 0.3s var(--ease-expo);
  text-decoration: none;
  line-height: 1.4;
  box-shadow: 0 8px 20px rgba(0, 96, 156, 0.22);
}

.btn-primary:hover {
  background: linear-gradient(180deg, #00609C 0%, #004E80 100%);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(0, 96, 156, 0.32);
}

.btn-primary-green {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  background: linear-gradient(135deg, var(--brand-green), #009E62);
  color: white;
  font-family: 'Plus Jakarta Sans', 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.9375rem;
  border: none;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all 0.3s var(--ease-expo);
  text-decoration: none;
  line-height: 1.4;
  box-shadow: 0 8px 20px rgba(0, 186, 114, 0.22);
}

.btn-primary-green:hover {
  background: linear-gradient(135deg, #009E62, #008554);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 186, 114, 0.3);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  background: transparent;
  color: var(--brand-navy);
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.9375rem;
  border: 1.5px solid rgba(0, 96, 156, 0.2);
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all 0.3s var(--ease-expo);
  text-decoration: none;
  line-height: 1.4;
}

.btn-secondary:hover {
  border-color: var(--brand-blue);
  color: var(--brand-blue);
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(0, 96, 156, 0.08);
}

.btn-hero-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.7);
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.9375rem;
  border: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  line-height: 1.4;
}

.btn-hero-secondary:hover {
  color: white;
  border-color: rgba(255, 255, 255, 0.5);
}

.btn-primary-light {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  background: var(--brand-green);
  color: white;
  font-family: 'Plus Jakarta Sans', 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.875rem;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s var(--ease-expo);
  text-decoration: none;
  line-height: 1.4;
  box-shadow: 0 6px 18px rgba(0, 186, 114, 0.28);
}

.btn-primary-light:hover {
  background: #009E62;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 186, 114, 0.3);
}

.btn-outline-light {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  background: transparent;
  color: white;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.9375rem;
  border: 1.5px solid rgba(255, 255, 255, 0.3);
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s var(--ease-expo);
  text-decoration: none;
  line-height: 1.4;
}

.btn-outline-light:hover {
  border-color: rgba(255, 255, 255, 0.6);
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-2px);
}

/* ===== FOOTER ===== */
.footer-section {
  background: var(--brand-navy);
  position: relative;
}

.footer-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--brand-green) 0%, var(--brand-blue) 48%, var(--brand-ink) 100%);
}

.footer-link {
  color: rgba(255, 255, 255, 0.55);
  transition: color 0.3s ease;
  text-decoration: none;
  font-size: 0.9375rem;
}

.footer-link:hover {
  color: var(--brand-green);
}

.footer-divider {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.social-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.6);
  transition: all 0.3s ease;
}

.social-icon:hover {
  background: rgba(0, 186, 114, 0.15);
  border-color: rgba(0, 186, 114, 0.3);
  color: var(--brand-green);
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 6px 0;
}

.footer-contact-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.06);
  flex-shrink: 0;
}

.footer-glow {
  position: absolute;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--brand-cyan);
  opacity: 0.5;
}

/* ===== HIGHLIGHT PILLARS ===== */
.pillar-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 20px;
  border: 1px solid rgba(0, 96, 156, 0.06);
  border-radius: var(--radius-lg);
  background: white;
  transition: all 0.35s ease;
}

.pillar-item:hover {
  border-color: rgba(0, 96, 156, 0.12);
  box-shadow: 0 8px 24px rgba(8, 20, 29, 0.04);
  transform: translateY(-3px);
}

.pillar-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
}

/* ===== FOCUS VISIBLE ===== */
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: 2px solid var(--brand-blue);
  outline-offset: 2px;
  border-radius: 4px;
}

/* ===== COUNTER ANIMATION ===== */
.stat-number {
  font-variant-numeric: tabular-nums;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .stats-bar, .stats-bar-light {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    padding: 20px;
  }

  .stat-item, .stat-item-light {
    border-right: none;
    padding: 12px;
  }

  .tech-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .tech-row-label {
    width: 100%;
    border-right: none;
    border-bottom: 1px solid rgba(0, 96, 156, 0.08);
    padding-right: 0;
    padding-bottom: 12px;
    margin-right: 0;
    margin-bottom: 0;
  }

  .values-banner {
    flex-direction: column;
    padding: 24px;
    gap: 16px;
  }

  .compliance-banner {
    flex-direction: column;
    gap: 20px;
    padding: 28px;
  }

  .cta-industry-banner {
    flex-direction: column;
    text-align: center;
    gap: 20px;
    padding: 32px;
  }

  .cta-dark {
    padding: 32px 24px;
  }

  .journey-timeline {
    flex-wrap: wrap;
    gap: 8px;
  }

  .journey-connector {
    display: none;
  }
}

@media (max-width: 768px) {
  .stats-bar, .stats-bar-light {
    grid-template-columns: 1fr 1fr;
  }

  .contact-form-card {
    padding: 1.5rem;
  }
}

@media (max-width: 640px) {
  .stats-bar, .stats-bar-light {
    grid-template-columns: 1fr;
  }
}

/* ===== PREFERS REDUCED MOTION ===== */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }

  html {
    scroll-behavior: auto;
  }
}

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--brand-soft);
}

::-webkit-scrollbar-thumb {
  background: rgba(0, 96, 156, 0.2);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: rgba(0, 96, 156, 0.35);
}

/* ===== WAVE DECORATION ===== */
.wave-decoration {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 60px;
  overflow: hidden;
  pointer-events: none;
}

.wave-decoration svg {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 60px;
}

/* ===== CUSTOM UI/UX ADDITIONS ===== */
.curved-timeline {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0 40px;
  margin-bottom: 20px;
}
.curved-timeline::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 5%;
  right: 5%;
  height: 2px;
  border-top: 2px dashed rgba(0, 96, 156, 0.2);
  transform: translateY(-10px);
  z-index: 0;
}
.timeline-icon {
  position: relative;
  z-index: 1;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: white;
  border: 1px solid rgba(0, 96, 156, 0.1);
  box-shadow: 0 8px 24px rgba(8, 20, 29, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand-blue);
  transition: transform 0.3s ease;
}
.timeline-icon:hover {
  transform: scale(1.1);
}
.timeline-icon-green {
  color: var(--brand-green);
}
.card-number-bg {
  position: absolute;
  top: 1.5rem;
  left: 1.5rem;
  font-size: 5rem;
  font-weight: 900;
  line-height: 1;
  color: rgba(0, 96, 156, 0.04);
  pointer-events: none;
  z-index: 0;
}
.card-content-top {
  position: relative;
  z-index: 1;
}
.contact-vertical-line {
  position: relative;
}
.contact-vertical-line::before {
  content: '';
  position: absolute;
  top: 24px;
  bottom: 24px;
  left: 23px;
  width: 1px;
  background: linear-gradient(to bottom, rgba(0,96,156,0.2) 0%, rgba(0,186,114,0.2) 100%);
  z-index: 0;
}
.vertical-step-icon {
  position: relative;
  z-index: 1;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  flex-shrink: 0;
}
.bg-gradient-blue {
  background: linear-gradient(135deg, var(--brand-blue), var(--brand-sky));
}
.bg-gradient-green {
  background: linear-gradient(135deg, var(--brand-green), var(--brand-cyan));
}

/* ===== FOOTER LOGO PLATE (header-matching light bg) ===== */
.footer-logo-plate {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  background: #F1F8FC;
  border-radius: 16px;
  padding: 10px 14px;
  margin-bottom: 1.25rem;
  border: 1px solid rgba(255, 255, 255, 0.65);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.22);
  transition: transform 0.35s var(--ease-expo), box-shadow 0.35s ease;
}

.footer-logo-plate:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.28);
}

.drawer-logo-plate {
  margin-bottom: 0;
  padding: 8px 12px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.28);
}

.site-logo-footer {
  height: 64px;
  max-width: 280px;
}

/* ===== HERO 3D VISUAL ===== */
.hero-visual {
  perspective: 1400px;
  transform-style: preserve-3d;
}

.hero-visual-frame {
  position: relative;
  border-radius: 2rem;
  transform: rotateY(-8deg) rotateX(6deg);
  transform-style: preserve-3d;
  animation: hero-float-3d 7s ease-in-out infinite;
  box-shadow:
    0 30px 80px rgba(0, 0, 0, 0.35),
    0 0 60px rgba(0, 196, 210, 0.28);
}

.hero-visual-frame::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 2rem;
  pointer-events: none;
  background: linear-gradient(135deg, rgba(255,255,255,0.16) 0%, transparent 42%);
}

.hero-visual-img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 2rem;
  border: 1px solid rgba(165, 243, 252, 0.12);
  object-fit: cover;
}

@keyframes hero-float-3d {
  0%, 100% { transform: rotateY(-8deg) rotateX(6deg) translateY(0); }
  50% { transform: rotateY(-2deg) rotateX(3deg) translateY(-14px); }
}

.hero-visual.tilt-3d.is-tilting .hero-visual-frame {
  animation: none;
}

/* ===== SECTION-SPECIFIC ENTRANCES ===== */
#home .reveal {
  transform: translateY(28px);
}
#home .reveal.active {
  transform: none;
  transition: opacity 0.8s var(--ease-expo), transform 0.8s var(--ease-expo);
}

#services .flagship-card.reveal {
  transform: translateY(48px) rotateX(10deg) scale(0.96);
}
#services .flagship-card.reveal.active {
  transform: none;
}
#services .flagship-card.reveal.active:hover {
  transform: perspective(1200px) rotateX(5deg) rotateY(-6deg) translateY(-10px) scale(1.02);
}

#services .service-card-new.reveal {
  transform: translateY(56px) scale(0.9);
}
#services .service-card-new.reveal.active {
  transform: none;
}

#services .service-card-new.reveal.active:hover {
  transform: perspective(1100px) rotateX(5deg) rotateY(-7deg) translateY(-10px) scale(1.03);
  box-shadow: 0 28px 64px rgba(8, 20, 29, 0.12), 0 0 0 1px rgba(0, 96, 156, 0.08);
}

#biometric,
#application-services {
  scroll-margin-top: 96px;
}

#about .glass-card.reveal {
  transform: perspective(1200px) rotateY(-18deg) translateX(-28px);
}
#about .glass-card.reveal.active {
  transform: perspective(1200px) rotateY(0) translateX(0);
}
#about .glass-card.reveal.active:hover {
  transform: perspective(1200px) rotateY(6deg) translateY(-8px) scale(1.02);
}

#case-study > .max-w-site > .grid > .reveal:first-child {
  transform: translateX(-56px);
}
#case-study > .max-w-site > .grid > .reveal:first-child.active {
  transform: none;
}
#case-study .metric-card.reveal,
#case-study .space-y-5.reveal {
  transform: translateX(56px) scale(0.96);
}
#case-study .space-y-5.reveal.active {
  transform: none;
}
#case-study .metric-card {
  transition: transform 0.45s var(--ease-expo), box-shadow 0.45s ease;
}
#case-study .metric-card:hover {
  transform: perspective(800px) rotateX(4deg) translateY(-6px);
}

#process .approach-card.reveal {
  transform: translateY(48px) scale(0.88);
}
#process .approach-card.reveal.active {
  transform: none;
}
#process .approach-card.reveal.active:hover {
  transform: perspective(900px) rotateX(8deg) translateY(-8px);
}

#products .product-card-new.reveal {
  transform: perspective(1000px) rotateX(14deg) translateY(36px);
}
#products .product-card-new.reveal.active {
  transform: none;
}
#products .product-card-new.reveal.active:hover {
  transform: perspective(1000px) rotateY(-6deg) translateY(-8px) scale(1.02);
}

#technologies .tech-row.reveal {
  transform: translateX(-64px);
}
#technologies .tech-row.reveal.active {
  transform: none;
}
#technologies .tech-row.reveal.active:hover {
  transform: translateX(6px);
}

#industries .reveal {
  transform: perspective(900px) rotateX(12deg) translateY(40px);
}
#industries .reveal.active {
  transform: none;
}

#insights .reveal {
  transform: scale(0.92);
  filter: blur(6px);
}
#insights .reveal.active {
  transform: none;
  filter: none;
}

#contact .reveal {
  transform: translateY(40px);
}
#contact .reveal.active {
  transform: none;
}

/* ===== CARD SHINE ===== */
.service-card-new,
.glass-card,
.product-card-new,
.approach-card,
.flagship-card {
  transform-style: preserve-3d;
}

.service-card-new::before,
.product-card-new::after,
.approach-card::after {
  pointer-events: none;
}

.service-card-new::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(420px circle at var(--mx, 50%) var(--my, 0%), rgba(0, 186, 114, 0.12), transparent 46%);
  opacity: 0;
  transition: opacity 0.35s ease;
  pointer-events: none;
  z-index: 0;
}

.service-card-new:hover::before {
  opacity: 1;
}

.service-card-new > * {
  position: relative;
  z-index: 1;
}

.glass-card {
  background-image: radial-gradient(460px circle at var(--mx, 50%) var(--my, 0%), rgba(0, 212, 196, 0.1), transparent 44%);
}
.card-shine::after {
  content: '';
  position: absolute;
  top: -40%;
  left: -60%;
  width: 40%;
  height: 180%;
  background: linear-gradient(100deg, transparent, rgba(255,255,255,0.22), transparent);
  transform: rotate(20deg);
  transition: left 0.7s var(--ease-expo);
  pointer-events: none;
  z-index: 2;
}
.card-shine:hover::after {
  left: 130%;
}

/* ===== PREMIUM BUTTON SHIMMER ===== */
.btn-primary-green,
.btn-primary-light,
.btn-primary {
  position: relative;
  overflow: hidden;
}
.btn-primary-green::after,
.btn-primary-light::after,
.btn-primary::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 30%, rgba(255,255,255,0.28) 50%, transparent 70%);
  transform: translateX(-120%);
  animation: btn-shimmer 3.6s ease-in-out infinite;
}
@keyframes btn-shimmer {
  0%, 55% { transform: translateX(-120%); }
  75%, 100% { transform: translateX(120%); }
}

.gradient-text-green {
  background-size: 200% 200%;
  animation: gradient-shift 5s ease infinite;
}
@keyframes gradient-shift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

.timeline-icon {
  animation: icon-pulse 3.5s ease-in-out infinite;
}
@keyframes icon-pulse {
  0%, 100% { box-shadow: 0 8px 24px rgba(8, 20, 29, 0.05); }
  50% { box-shadow: 0 10px 28px rgba(0, 186, 114, 0.18); }
}

/* ===== REDUCED MOTION OVERRIDE FOR NEW FX ===== */
@media (prefers-reduced-motion: reduce) {
  .hero-visual-frame,
  .gradient-text-green,
  .btn-primary-green::after,
  .btn-primary-light::after,
  .btn-primary::after,
  .timeline-icon {
    animation: none !important;
  }
  #home .reveal,
  #services .flagship-card.reveal,
  #services .service-card-new.reveal,
  #about .glass-card.reveal,
  #case-study .reveal,
  #process .approach-card.reveal,
  #products .product-card-new.reveal,
  #technologies .tech-row.reveal,
  #industries .reveal,
  #insights .reveal,
  #contact .reveal {
    filter: none;
    transform: none;
  }
}

