/* =======================================
   WHITENOVA — Premium B2B Design System
======================================= */

:root {
  --navy: #0A1628;
  --navy-mid: #0F2340;
  --blue: #1E40AF;
  --blue-light: #3B82F6;
  --teal: #14B8A6;
  --teal-soft: #CCFBF1;
  --mint: #A7F3D0;
  --sage: #ECFDF5;
  --light: #F8FAFC;
  --surface: #FFFFFF;
  --text: #475569;
  --text-muted: #64748B;
  --heading: #0A1628;
  --border: #E2E8F0;
  --border-soft: #F1F5F9;

  --shadow-sm: 0 1px 3px rgba(10, 22, 40, 0.06);
  --shadow: 0 12px 40px rgba(10, 22, 40, 0.08);
  --shadow-lg: 0 24px 60px rgba(10, 22, 40, 0.12);
  --shadow-teal: 0 8px 30px rgba(20, 184, 166, 0.18);

  --radius-sm: 10px;
  --radius: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;

  --space-xs: 8px;
  --space-sm: 16px;
  --space-md: 24px;
  --space-lg: 40px;
  --space-xl: 64px;
  --space-2xl: clamp(72px, 8vw, 120px);

  --font-body: 'Inter', system-ui, -apple-system, sans-serif;
  --font-display: 'Plus Jakarta Sans', 'Inter', system-ui, sans-serif;

  --text-xs: 0.8125rem;
  --text-sm: 0.9375rem;
  --text-base: 1.0625rem;
  --text-lg: 1.1875rem;
  --text-xl: clamp(1.75rem, 3vw, 2.875rem);
  --text-2xl: clamp(2rem, 4vw, 3.5rem);
  --text-hero: clamp(2.25rem, 5.5vw, 4rem);

  --nav-height: 80px;
  --transition: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

/* =======================================
   RESET & BASE
======================================= */

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: var(--text-base);
  color: var(--text);
  background: var(--surface);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body.nav-open {
  overflow: hidden;
}

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

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

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  color: var(--heading);
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 32px);
}

section {
  padding: var(--space-2xl) 0;
}

/* =======================================
   NAVBAR
======================================= */

.navbar {
  position: sticky;
  top: 0;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  z-index: 1000;
}

.nav-container {
  height: var(--nav-height);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-md);
}

.logo-wrapper a {
  display: flex;
  align-items: center;
}

.logo {
  height: 52px;
  width: auto;
}

.nav-links {
  display: flex;
  gap: clamp(20px, 3vw, 40px);
  list-style: none;
  align-items: center;
}

.nav-links a {
  color: var(--heading);
  font-size: var(--text-sm);
  font-weight: 600;
  letter-spacing: 0.01em;
  transition: color var(--transition);
  position: relative;
}

.nav-links a:not(.nav-cta)::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--teal);
  transition: width var(--transition);
}

.nav-links a:not(.nav-cta):hover::after,
.nav-links a:not(.nav-cta).active::after {
  width: 100%;
}

.nav-links a:not(.nav-cta):hover {
  color: var(--blue);
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 11px 22px;
  background: var(--navy);
  color: #fff !important;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: var(--text-sm);
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  white-space: nowrap;
}

.nav-cta::after {
  display: none !important;
}

.nav-cta:hover {
  background: var(--blue);
  transform: translateY(-1px);
  box-shadow: var(--shadow-sm);
}

.nav-cta.active {
  background: var(--teal);
  color: #fff !important;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 10px;
  background: transparent;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: border-color var(--transition);
}

.nav-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--heading);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}

.nav-toggle.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

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

.nav-toggle.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* =======================================
   BUTTONS
======================================= */

.btn-primary,
.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 15px 28px;
  border-radius: var(--radius-sm);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--text-sm);
  letter-spacing: 0.01em;
  transition: all var(--transition);
  cursor: pointer;
  border: none;
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--blue) 0%, var(--navy-mid) 100%);
  color: #ffffff;
  box-shadow: 0 4px 14px rgba(30, 64, 175, 0.3);
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--navy) 0%, var(--blue) 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(30, 64, 175, 0.35);
}

.btn-secondary {
  background: transparent;
  border: 1.5px solid var(--teal);
  color: var(--heading);
}

.btn-secondary:hover {
  background: var(--teal-soft);
  border-color: var(--teal);
  transform: translateY(-1px);
}

.btn-primary-light {
  background: #ffffff;
  color: var(--navy);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.12);
}

.btn-primary-light:hover {
  background: var(--teal-soft);
  color: var(--navy);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.btn-secondary-light {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.6);
}

.btn-secondary-light:hover {
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
  border-color: #ffffff;
}

/* =======================================
   HERO
======================================= */

.hero {
  background: linear-gradient(135deg, var(--light) 0%, #fff 55%, var(--sage) 100%);
  padding-top: clamp(80px, 10vw, 120px);
  padding-bottom: clamp(80px, 10vw, 120px);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: 999px;
  background: var(--teal-soft);
  border: 1px solid rgba(20, 184, 166, 0.25);
  color: var(--navy-mid);
  font-family: var(--font-display);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: var(--space-md);
}

.hero h1 {
  font-size: var(--text-hero);
  line-height: 1.08;
  margin-bottom: var(--space-md);
  font-weight: 800;
}

.hero-positioning {
  color: #21d3c7;
  font-size: 18px;
  font-weight: 700;
  margin: 18px 0;
  letter-spacing: 0.2px;
}

.hero p {
  font-size: var(--text-lg);
  color: var(--text);
  max-width: 560px;
  line-height: 1.75;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  margin-top: var(--space-lg);
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  margin-top: var(--space-lg);
}

.stat {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  flex: 1;
  min-width: 200px;
  padding: 18px 20px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition), transform var(--transition);
}

.stat:hover {
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}

.stat-icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--teal-soft), var(--sage));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

.stat-icon::before {
  content: '✓';
  color: var(--teal);
  font-weight: 800;
  font-size: 16px;
}

.stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: var(--text-sm);
  font-weight: 700;
  color: var(--heading);
  margin-bottom: 2px;
}

.stat p {
  font-size: var(--text-xs);
  color: var(--text-muted);
  margin: 0;
  line-height: 1.5;
}

/* Hero Banner */
.hero-banner {
  position: relative;
  background-image: url("Banner.png");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  min-height: clamp(600px, 85vh, 780px);
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(10, 22, 40, 0.88) 0%,
    rgba(15, 35, 64, 0.78) 50%,
    rgba(10, 22, 40, 0.82) 100%
  );
  z-index: 1;
}

.hero-banner .container {
  position: relative;
  z-index: 2;
}

.hero-banner .hero-content h1 {
  color: #ffffff;
}

.hero-banner .hero-content p {
  color: rgba(255, 255, 255, 0.9);
}

.hero-banner .hero-badge {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #ffffff;
  backdrop-filter: blur(12px);
}

.hero-banner .btn-secondary {
  color: #ffffff !important;
  border: 1.5px solid rgba(255, 255, 255, 0.7) !important;
  background: rgba(10, 22, 40, 0.38) !important;
}

.hero-banner .btn-secondary:hover {
  background: #ffffff !important;
  color: var(--heading) !important;
  border-color: #ffffff !important;
}

.hero-banner .stat {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(12px);
  box-shadow: none;
}

.hero-banner .stat strong {
  color: #ffffff;
}

.hero-banner .stat p {
  color: rgba(255, 255, 255, 0.8);
}

.hero-banner .stat-icon {
  background: rgba(20, 184, 166, 0.2);
}

.hero-banner .dashboard-card {
  width: 100%;
  max-width: 420px;
  padding: 30px 34px 34px;
}

/* =======================================
   DASHBOARD CARD
======================================= */

.dashboard-card {
  width: 100%;
  max-width: 420px;
  padding: 30px 34px 34px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.dashboard-header {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 7px;
  margin: 0 0 22px;
}

.dashboard-header h3 {
  margin: 0;
  font-size: 1.15rem;
  font-weight: 700;
  line-height: 1.3;
}

/* Subtitle inside dashboard header only */
.dashboard-header .dashboard-note {
  width: 100%;
  max-width: 300px;
  margin: 0;
  padding: 0;
  border: 0;

  color: var(--text-muted);
  font-size: 0.74rem;
  font-weight: 500;
  line-height: 1.5;
}

.dashboard-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin: 0;
}

.metric {
  min-width: 0;
  padding: 15px 18px;
  background: var(--light);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-sm);
  transition:
    border-color var(--transition),
    transform var(--transition);
}

.metric:hover {
  border-color: var(--teal);
  transform: translateY(-1px);
}

.metric span {
  display: block;
  margin: 0;
  color: var(--text-muted);
  font-size: 0.72rem;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.metric strong {
  display: block;
  margin-top: 7px;
  color: var(--heading);
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.35;
}

@media (max-width: 480px) {
  .dashboard-card {
    padding: 26px 24px 28px;
  }

  .dashboard-grid {
    grid-template-columns: 1fr;
  }
}
/* =======================================
   TRUST STRIP
======================================= */

.trust-strip {
  background: var(--navy);
  padding: var(--space-md) 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.trust-strip-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: clamp(16px, 4vw, 48px);
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.85);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.02em;
}

.trust-item-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: rgba(20, 184, 166, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  flex-shrink: 0;
}

/* =======================================
   SECTION HEADINGS
======================================= */

.section-heading {
  max-width: 760px;
  margin: 0 auto var(--space-xl);
  text-align: center;
}

.section-heading h1,
.section-heading h2 {
  font-size: var(--text-xl);
  margin-bottom: var(--space-sm);
  font-weight: 800;
}

.section-heading p {
  font-size: var(--text-base);
  color: var(--text-muted);
  line-height: 1.75;
  max-width: 640px;
  margin: 0 auto;
}

.section-label {
  display: inline-block;
  font-family: var(--font-display);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: var(--space-sm);
}

/* =======================================
   CARDS
======================================= */

.challenge-grid,
.controls-grid,
.knowledge-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-md);
}

.card {
  background: var(--surface);
  padding: clamp(24px, 3vw, 32px);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  height: 100%;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: rgba(20, 184, 166, 0.25);
}

.card-icon {
  font-size: 2rem;
  margin-bottom: var(--space-sm);
  line-height: 1;
}

.card-icon img {
  width: 150px;
  height: 150px;
  object-fit: contain;
}

/* Home page / Product Assurance control cards */
.controls-section .card-icon img {
  width: 110px;
  height: 110px;
  object-fit: contain;
  margin: 0 auto 18px;
}

.card h3 {
  color: var(--heading);
  margin-bottom: 10px;
  font-weight: 700;
  font-size: 1.0625rem;
}

.card p {
  font-size: var(--text-sm);
  color: var(--text-muted);
  line-height: 1.7;
}

.philosophy-title {
  font-weight: 800;
  text-align: center;
  font-size: clamp(1.25rem, 2.5vw, 1.5rem);
  margin-bottom: var(--space-md);
  color: var(--heading);
}

/* ======================================
   COMPACT FULFILLMENT BENEFITS STRIP
====================================== */

.benefit-strip-section {
  position: relative;
  padding: clamp(56px, 7vw, 84px) 0;
  background:
    radial-gradient(
      circle at 10% 20%,
      rgba(20, 184, 166, 0.08),
      transparent 30%
    ),
    linear-gradient(
      180deg,
      #ffffff 0%,
      #f8fafc 100%
    );
  overflow: hidden;
}

.benefit-strip-section *,
.benefit-strip-section *::before,
.benefit-strip-section *::after {
  box-sizing: border-box;
}

.benefit-strip-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: min(92%, 1180px);
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(20, 184, 166, 0.35),
    transparent
  );
  transform: translateX(-50%);
}


/* ======================================
   HEADING
====================================== */

.benefit-strip-heading {
  max-width: 780px;
  margin: 0 auto;
  padding: 0 18px;
  text-align: center;
}

.benefit-strip-eyebrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  padding: 7px 14px;
  background: rgba(20, 184, 166, 0.08);
  border: 1px solid rgba(20, 184, 166, 0.24);
  border-radius: 999px;
  color: var(--teal);
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.benefit-strip-heading h2 {
  margin: 0 0 14px;
  line-height: 1.14;
}

.benefit-strip-heading p {
  max-width: 720px;
  margin: 0 auto;
  color: var(--text-muted);
  line-height: 1.7;
}


/* ======================================
   BENEFIT GRID
====================================== */

.benefit-strip-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: stretch;
  gap: 14px;
  width: 100%;
  max-width: 1120px;
  margin: var(--space-lg) auto 0;
}

.benefit-strip-item {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
  min-height: 278px;
  padding: 25px 20px 23px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  text-align: center;

  opacity: 0;
  transform: translateY(18px);
  animation: benefitStripReveal 0.6s ease forwards;

  transition:
    transform var(--transition),
    box-shadow var(--transition),
    border-color var(--transition),
    background var(--transition);
}

.benefit-strip-item:nth-child(1) {
  animation-delay: 0.1s;
}

.benefit-strip-item:nth-child(2) {
  animation-delay: 0.2s;
}

.benefit-strip-item:nth-child(3) {
  animation-delay: 0.3s;
}

.benefit-strip-item:nth-child(4) {
  animation-delay: 0.4s;
}

.benefit-strip-item:hover {
  transform: translateY(-4px);
  background: #ffffff;
  border-color: rgba(20, 184, 166, 0.34);
  box-shadow: var(--shadow);
}


/* ======================================
   CHALLENGE ICONS
====================================== */

.benefit-strip-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  width: clamp(94px, 8vw, 108px);
  height: clamp(94px, 8vw, 108px);
  margin: 0 auto 14px;
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
  overflow: visible;
}

.benefit-strip-icon img {
  display: block;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: contain;
  object-position: center;
}


/* ======================================
   CARD TEXT
====================================== */

.benefit-strip-item h3 {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  margin: 0;
  color: var(--navy);
  font-size: 1rem;
  line-height: 1.35;
}

.benefit-strip-arrow {
  flex: 0 0 auto;
  margin: 5px 0 8px;
  color: var(--teal);
  font-size: 1.2rem;
  font-weight: 800;
  line-height: 1;

  opacity: 0;
  animation: benefitArrowReveal 0.4s ease forwards;
}

.benefit-strip-item:nth-child(1) .benefit-strip-arrow {
  animation-delay: 0.45s;
}

.benefit-strip-item:nth-child(2) .benefit-strip-arrow {
  animation-delay: 0.55s;
}

.benefit-strip-item:nth-child(3) .benefit-strip-arrow {
  animation-delay: 0.65s;
}

.benefit-strip-item:nth-child(4) .benefit-strip-arrow {
  animation-delay: 0.75s;
}

.benefit-strip-item p {
  margin: 0;
  color: var(--text-muted);
  font-size: var(--text-sm);
  line-height: 1.6;
}


/* ======================================
   FINAL RESULT BAR
====================================== */

.benefit-strip-result {
  display: flex;
  align-items: center;
  justify-content: center;
  width: min(760px, 100%);
  min-height: 54px;
  margin: 18px auto 0;
  padding: 16px 24px;
  background: linear-gradient(
    135deg,
    var(--navy) 0%,
    var(--navy-mid) 100%
  );
  border-radius: var(--radius);
  color: #ffffff;
  text-align: center;

  opacity: 0;
  transform: translateY(14px);
  animation: benefitStripReveal 0.6s ease 0.6s forwards;
}

.benefit-strip-result strong {
  display: block;
  margin: 0;
  color: #ffffff;
  font-family: var(--font-display);
  font-size: 0.96rem;
  font-weight: 700;
  line-height: 1.45;
}


/* ======================================
   ANIMATIONS
====================================== */

@keyframes benefitStripReveal {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

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

@keyframes benefitArrowReveal {
  from {
    opacity: 0;
    transform: translateY(-5px);
  }

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


/* ======================================
   SMALL DESKTOP
====================================== */

@media (max-width: 1100px) {

  .benefit-strip-grid {
    padding: 0 18px;
  }

  .benefit-strip-result {
    width: calc(100% - 36px);
  }

}


/* ======================================
   TABLET
====================================== */

@media (max-width: 900px) {

  .benefit-strip-section {
    padding: 58px 0;
  }

  .benefit-strip-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    max-width: 740px;
  }

  .benefit-strip-item {
    min-height: 265px;
    padding: 24px 22px;
  }

  .benefit-strip-icon {
    width: 102px;
    height: 102px;
  }

  .benefit-strip-result {
    max-width: 704px;
  }

}


/* ======================================
   MOBILE
====================================== */

@media (max-width: 640px) {

  .benefit-strip-section {
    padding: 50px 0;
  }

  .benefit-strip-heading {
    padding: 0 20px;
  }

  .benefit-strip-heading h2 {
    font-size: clamp(1.75rem, 8vw, 2.25rem);
    line-height: 1.16;
  }

  .benefit-strip-heading h2 br {
    display: none;
  }

  .benefit-strip-heading p {
    font-size: 0.96rem;
    line-height: 1.65;
  }

  .benefit-strip-grid {
    grid-template-columns: 1fr;
    gap: 14px;
    max-width: 460px;
    padding: 0 16px;
    margin-top: 32px;
  }

  .benefit-strip-item {
    min-height: auto;
    padding: 23px 22px 24px;
  }

  .benefit-strip-icon {
    width: 96px;
    height: 96px;
    margin-bottom: 12px;
  }

  .benefit-strip-item h3 {
    min-height: auto;
    font-size: 1rem;
  }

  .benefit-strip-arrow {
    margin: 7px 0 9px;
  }

  .benefit-strip-item p {
    max-width: 320px;
  }

  .benefit-strip-result {
    width: calc(100% - 32px);
    max-width: 428px;
    min-height: 58px;
    margin-top: 16px;
    padding: 16px 20px;
  }

  .benefit-strip-result strong {
    font-size: 0.9rem;
  }

}


/* ======================================
   VERY SMALL MOBILE
====================================== */

@media (max-width: 380px) {

  .benefit-strip-eyebrow {
    padding: 6px 11px;
    font-size: 0.64rem;
    letter-spacing: 0.08em;
  }

  .benefit-strip-item {
    padding: 21px 18px 22px;
  }

  .benefit-strip-icon {
    width: 88px;
    height: 88px;
  }

  .benefit-strip-result strong {
    font-size: 0.84rem;
  }

}


/* ======================================
   REDUCED MOTION
====================================== */

@media (prefers-reduced-motion: reduce) {

  .benefit-strip-item,
  .benefit-strip-arrow,
  .benefit-strip-result {
    opacity: 1;
    transform: none;
    animation: none;
  }

  .benefit-strip-item {
    transition: none;
  }

}

/* =======================================
   SECTION BACKGROUNDS
======================================= */

.services-overview,
.industries-section,
.ideal-section {
  background: var(--surface);
}

.why-whitenova {
  background: linear-gradient(180deg, var(--light) 0%, var(--surface) 100%);
  padding: var(--space-xl) 0;
}

.challenge-section {
  background: var(--light);
}

.controls-section {
  background: var(--surface);
}

.process-section {
  background: linear-gradient(180deg, var(--sage) 0%, var(--light) 100%);
}

.faq-section {
  background: var(--light);
}

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

/* =======================================
   INDUSTRIES
======================================= */

.industries-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-md);
  margin-top: var(--space-lg);
}

.industry-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: clamp(24px, 3vw, 32px) var(--space-md);
  text-align: center;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.industry-card img {
  width: 64px;
  height: 64px;
  object-fit: contain;
  margin: 0 auto;
}

.industry-card h3 {
  margin-top: var(--space-sm);
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--heading);
}

.industry-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: rgba(20, 184, 166, 0.3);
}

/* =======================================
   CAPABILITY BAR
======================================= */

.capability-strip {
  padding: var(--space-xl) 0;
  background: var(--navy);
}

.capability-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-md);
}

.capability-item {
  text-align: center;
  padding: var(--space-md);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.04);
  transition: all var(--transition);
}

.capability-item:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(20, 184, 166, 0.3);
  box-shadow: var(--shadow-teal);
}

.capability-icon {
  margin-bottom: var(--space-sm);
}

.capability-icon img {
  width: 120px;
  height: 120px;
  object-fit: contain;
  display: block;
  margin: 0 auto;
  filter: brightness(1.1);
}

.capability-item h4 {
  margin-top: var(--space-xs);
  color: #ffffff;
  font-size: var(--text-sm);
  font-weight: 700;
}


/* ======================================
   CAPABILITY STATEMENT
====================================== */

.capability-statement-section {
  text-align: center;
}

.capability-qr-wrapper {
  display: flex;
  justify-content: center;
  margin-top: 32px;
}

.capability-qr-card {
  width: 100%;
  max-width: 360px;
  padding: 36px 30px;
  background: #ffffff;
  border: 1px solid rgba(20, 46, 86, 0.12);
  border-radius: 18px;
  box-shadow: 0 12px 35px rgba(20, 46, 86, 0.08);
}

.capability-qr-image {
  display: block;
  width: 190px;
  height: 190px;
  object-fit: contain;
  margin: 0 auto 22px;
  padding: 10px;
  background: #ffffff;
  border-radius: 12px;
}

.capability-qr-card h3 {
  margin: 0 0 10px;
}

.capability-qr-card p {
  margin: 0 auto 18px;
  max-width: 280px;
  line-height: 1.7;
}

.capability-qr-note {
  display: inline-block;
  padding: 7px 14px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: #274f86;
  background: rgba(39, 79, 134, 0.08);
  border-radius: 100px;
}

@media (max-width: 600px) {

  .capability-qr-card {
    padding: 30px 20px;
  }

  .capability-qr-image {
    width: 170px;
    height: 170px;
  }

}

/* =======================================
   APPROACH FLOW - BLACK TEXT + NAVY CARDS
======================================= */

.approach-section {
  background: var(--light);
  padding: var(--space-2xl) 0 0;
}

.approach-section .container {
  text-align: center;
}

.approach-section .section-heading {
  margin-bottom: 52px;
}

.approach-section .section-heading h2 {
  color: var(--heading);
}

.approach-section .section-heading p {
  color: var(--text-muted);
}


/* Navy bottom panel */
.approach-panel {
  padding: 72px 0 88px;
  background:
    radial-gradient(circle at top left, rgba(20, 184, 166, 0.16), transparent 32%),
    linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 55%, #0F3460 100%);
}


/* Layout */
.approach-flow {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  align-items: stretch;
}


/* Card */
.flow-item {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 22px;
  padding: 34px 24px 32px;
  text-align: center;
  position: relative;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(10px);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.flow-item:hover {
  transform: translateY(-6px);
  border-color: rgba(20, 184, 166, 0.45);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.26);
}


/* Icon box */
.flow-circle {
  width: 86px;
  height: 86px;
  margin: 0 auto 22px;
  border-radius: 20px;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.18);
}

.flow-circle img {
  width: 58px;
  height: 58px;
  object-fit: contain;
  display: block;
}


/* Card text */
.flow-item h3 {
  font-size: var(--text-sm);
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 12px;
}

.flow-item p {
  font-size: var(--text-xs);
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.65;
  margin: 0;
}


/* Arrow between cards */
.flow-item:not(:last-child)::after {
  content: "→";
  position: absolute;
  right: -19px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--teal);
  font-size: 20px;
  font-weight: 700;
  z-index: 2;
}


/* Hide old arrow div if still exists */
.flow-arrow {
  display: none;
}


/* Tablet */
@media (max-width: 992px) {
  .approach-flow {
    grid-template-columns: repeat(2, 1fr);
  }

  .flow-item:not(:last-child)::after {
    display: none;
  }
}


/* Mobile */
@media (max-width: 576px) {
  .approach-section {
    padding-top: 72px;
  }

  .approach-panel {
    padding: 56px 0 70px;
  }

  .approach-flow {
    grid-template-columns: 1fr;
  }

  .flow-item {
    padding: 32px 22px;
  }
}

/* =======================================
   PROCESS STEPS
======================================= */

.process-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: var(--space-md);
  position: relative;
}

.process-step {
  text-align: center;
  position: relative;
}

.process-step img {
  width: 100px;
  height: 100px;
  object-fit: contain;
  margin: 0 auto var(--space-sm);
}

.step-number {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--teal), #0D9488);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: var(--text-sm);
  color: #fff;
  margin: 0 auto var(--space-sm);
  box-shadow: var(--shadow-teal);
}

.process-step h4 {
  font-size: var(--text-sm);
  font-weight: 700;
  margin-bottom: 8px;
}

.process-step p {
  font-size: var(--text-xs);
  color: var(--text-muted);
  line-height: 1.6;
}

/* =======================================
   KNOWLEDGE FLIP CARDS
======================================= */

.knowledge-section .container {
  max-width: 1200px;
}

.knowledge-note {
  max-width: 900px;
  margin: var(--space-xl) auto 0;
  padding: var(--space-md) var(--space-lg);
  background: var(--surface);
  border-left: 4px solid var(--teal);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-sm);
  line-height: 1.8;
  font-size: var(--text-sm);
}

.flip-grid {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: var(--space-lg);
  width: 100%;
  margin-top: var(--space-lg);
  flex-wrap: wrap;
}

.flip-card {
  width: 300px;
  height: 300px;
  flex: 0 0 300px;
  perspective: 1000px;
}

.flip-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
  transform-style: preserve-3d;
}

.flip-card:hover .flip-card-inner,
.flip-card:focus-within .flip-card-inner {
  transform: rotateY(180deg);
}

.flip-card-front,
.flip-card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: var(--radius);
  backface-visibility: hidden;
  padding: var(--space-md);
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}

.flip-card-front {
  background: var(--surface);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.flip-card-front h3 {
  font-size: var(--text-sm);
  margin-bottom: 8px;
}

.flip-card-front p {
  font-size: var(--text-xs);
  color: var(--text-muted);
}

.flip-card-back {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  color: white;
  transform: rotateY(180deg);
  display: flex;
  justify-content: center;
  align-items: center;
  border-color: transparent;
}

.flip-card-back h3 {
  color: #fff;
  margin-bottom: var(--space-sm);
  font-size: var(--text-sm);
}

.flip-card-back ul {
  padding-left: 18px;
  text-align: left;
}

.flip-card-back li {
  margin-bottom: 6px;
  line-height: 1.45;
  font-size: var(--text-xs);
}

.knowledge-icon {
  font-size: 3rem;
  margin-bottom: var(--space-sm);
}

/* =======================================
   KNOWLEDGE PAGE - SMALLER CARDS & ICONS
======================================= */

.knowledge-section .flip-card {
  width: 260px;
  height: 260px;
  flex: 0 0 260px;
}

.knowledge-section .flip-card-front,
.knowledge-section .flip-card-back {
  padding: 22px;
}

.knowledge-section .knowledge-icon {
  margin-bottom: 18px;
}

.knowledge-section .knowledge-icon img {
  width: 135px;
  height: 135px;
  object-fit: contain;
  margin: 0 auto;
}

.knowledge-section .flip-card-front h3 {
  font-size: 0.95rem;
  margin-bottom: 6px;
}

.knowledge-section .flip-card-front p {
  font-size: 0.8rem;
}

/* =======================================
   FAQ
======================================= */

.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-container details {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: var(--space-sm);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
}

.faq-container details:hover {
  border-color: rgba(20, 184, 166, 0.4);
}

.faq-container details[open] {
  box-shadow: var(--shadow);
  border-color: var(--teal);
}

.faq-container summary {
  padding: 20px 24px;
  font-family: var(--font-display);
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--heading);
  cursor: pointer;
  list-style: none;
  position: relative;
  padding-right: 48px;
}

.faq-container summary::-webkit-details-marker {
  display: none;
}

.faq-container summary::after {
  content: "+";
  position: absolute;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--teal);
  transition: transform var(--transition);
}

.faq-container details[open] summary::after {
  content: "−";
}

.faq-container p {
  padding: 0 24px 20px;
  margin: 0;
  line-height: 1.8;
  color: var(--text);
  font-size: var(--text-sm);
  border-top: 1px solid var(--border-soft);
  padding-top: 16px;
}

/* =======================================
   CTA SECTIONS
======================================= */

.cta-band {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 50%, #0F3460 100%);
  padding: var(--space-2xl) 0;
  position: relative;
  overflow: hidden;
}

.cta-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(20, 184, 166, 0.12) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 50%, rgba(59, 130, 246, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

.cta-band .container {
  position: relative;
  z-index: 1;
}

.cta-band-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-lg);
  text-align: center;
}

.cta-section {
  padding: var(--space-xl) 0;
  text-align: center;
}

.cta-box {
  width: 100%;
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.cta-band .container:not(.cta-band-grid) .cta-box {
  max-width: 720px;
}

.cta-band .cta-box {
  max-width: none;
  padding: var(--space-lg);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(8px);
}

.cta-box h2 {
  text-align: center;
  margin: 0 auto var(--space-sm);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
}

.cta-band .cta-box h2 {
  color: #ffffff;
}

.cta-box p {
  text-align: center;
  margin: 0 auto;
  max-width: 520px;
  font-size: var(--text-base);
  color: var(--text-muted);
  line-height: 1.7;
}

.cta-band .cta-box p {
  color: rgba(255, 255, 255, 0.75);
}

.cta-actions {
  margin-top: var(--space-md);
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  justify-content: center;
}

/* =======================================
   CONTACT PREVIEW
======================================= */

.contact-preview {
  padding: var(--space-2xl) 0;
  text-align: center;
  background: var(--light);
}

.contact-preview-btn {
  margin-top: var(--space-lg);
}

/* =======================================
   PAGE HERO (inner pages)
======================================= */

.page-hero {
  padding: clamp(100px, 12vw, 140px) 0 clamp(60px, 8vw, 80px);
  background: linear-gradient(180deg, var(--light) 0%, var(--surface) 100%);
  border-bottom: 1px solid var(--border-soft);
}

.page-hero h1 {
  font-size: var(--text-2xl);
  font-weight: 800;
  margin-bottom: var(--space-sm);
}

/* =======================================
   CONTENT SECTIONS
======================================= */

.content-section {
  padding: var(--space-xl) 0;
}

.content-section p {
  max-width: 820px;
  margin: 0 auto 20px;
  line-height: 1.8;
  font-size: var(--text-base);
  color: var(--text);
}

.content-section .card {
  max-width: 820px;
  margin: 0 auto;
}

.two-column-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-md);
  margin-top: var(--space-lg);
}

.two-column-grid ul {
  padding-left: 20px;
}

.two-column-grid li {
  margin-bottom: 10px;
  font-size: var(--text-sm);
  color: var(--text);
  line-height: 1.6;
}

.two-column-grid .card h2 {
  font-size: var(--text-lg);
  margin-bottom: var(--space-sm);
}

.ideal-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
  margin-top: var(--space-lg);
}

.monitoring-section {
  padding: var(--space-2xl) 0;
  background: var(--light);
}

/* =======================================
   CONTACT FORM
======================================= */

.contact-layout {
  max-width: 640px;
  margin: 0 auto;
}

.contact-layout h1 {
  font-size: var(--text-2xl);
  margin-bottom: var(--space-sm);
}

.contact-intro {
  margin-bottom: var(--space-xs);
  font-size: var(--text-base);
  color: var(--heading);
  font-weight: 500;
}

.contact-subintro {
  margin-bottom: var(--space-lg);
  color: var(--text-muted);
  font-size: var(--text-sm);
  line-height: 1.7;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 14px 18px;
  font-family: var(--font-body);
  font-size: var(--text-sm);
  color: var(--heading);
  background: var(--surface);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}

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

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(20, 184, 166, 0.12);
}

.form-select {
  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='%23475569' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
  cursor: pointer;
}

.form-textarea {
  resize: vertical;
  min-height: 160px;
  line-height: 1.6;
}

.contact-form .btn-primary {
  align-self: flex-start;
  margin-top: var(--space-xs);
}

.contact-info {
  margin-top: var(--space-xl);
  padding: var(--space-lg);
  background: var(--light);
  border-radius: var(--radius);
  border: 1px solid var(--border);
}

.contact-info h3 {
  font-size: var(--text-lg);
  margin-bottom: var(--space-md);
  color: var(--heading);
}

.contact-info p {
  font-size: var(--text-sm);
  color: var(--text);
  margin-bottom: 10px;
  line-height: 1.7;
}

.contact-info strong {
  color: var(--heading);
  font-weight: 600;
}

/* =======================================
   THANK YOU PAGE
======================================= */

.thank-you-wrap {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}

.success-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto var(--space-md);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--sage);
  font-size: 2rem;
  font-weight: 700;
  color: #059669;
  border: 2px solid rgba(20, 184, 166, 0.3);
}

.thank-you-wrap h1 {
  margin-bottom: var(--space-sm);
}

.thank-you-wrap .thank-lead {
  font-size: var(--text-lg);
  margin-bottom: var(--space-xs);
  color: var(--heading);
  font-weight: 500;
}

.thank-you-wrap .thank-sub {
  color: var(--text-muted);
  max-width: 520px;
  margin: 0 auto var(--space-lg);
  line-height: 1.8;
  font-size: var(--text-sm);
}

.thank-actions {
  display: flex;
  justify-content: center;
  gap: var(--space-sm);
  flex-wrap: wrap;
}

/* =======================================
   FOOTER
======================================= */

.footer {
  background: var(--navy);
  padding: clamp(60px, 8vw, 90px) 0 clamp(32px, 4vw, 48px);
  text-align: center;
}

.footer-logo {
  display: flex;
  justify-content: center;
  margin-bottom: var(--space-md);
}

.footer-logo-img {
  height: 56px;
  width: auto;
}

.footer-tagline {
  margin-bottom: var(--space-md);
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
  letter-spacing: 0.02em;
}

.footer-tagline .divider {
  margin: 0 12px;
  opacity: 0.4;
}

.footer-bottom {
  color: rgba(255, 255, 255, 0.5);
  font-size: var(--text-xs);
  padding-top: var(--space-md);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  max-width: 1200px;
  margin: 0 auto;
}

/* =======================================
   CHATBOT
======================================= */

#wn-chat-button {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 58px;
  height: 58px;
  background: #0a1f44;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  cursor: pointer;
  box-shadow: var(--shadow-lg);
  transition: transform var(--transition), background var(--transition);
  z-index: 9999;
  border: 2px solid rgba(20, 184, 166, 0.3);
}

#wn-chat-button:hover {
  background: var(--navy-mid);
  transform: scale(1.05);
  animation: floatPulse 1.2s ease-in-out infinite;
}

@keyframes floatPulse {
  0%, 100% { transform: scale(1.05) translateY(0); }
  50% { transform: scale(1.05) translateY(-3px); }
}

#wn-chatbox {
  position: fixed;
  bottom: 96px;
  right: 24px;
  width: min(360px, calc(100vw - 32px));
  height: 480px;
  background: var(--surface);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  display: none;
  flex-direction: column;
  overflow: hidden;
  z-index: 9999;
  border: 1px solid var(--border);
}

#wn-chatbox.active {
  display: flex;
}

.wn-header {
  background: linear-gradient(135deg, var(--navy), var(--navy-mid));
  color: white;
  padding: 14px 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.wn-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--text-sm);
}

.wn-subtitle {
  font-size: var(--text-xs);
  opacity: 0.75;
  margin-top: 2px;
}

.wn-close {
  cursor: pointer;
  font-size: 22px;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  transition: background var(--transition);
}

.wn-close:hover {
  background: rgba(255, 255, 255, 0.1);
}

.wn-welcome {
  padding: 14px;
  background: #EFF6FF;
  border-bottom: 1px solid var(--border);
  font-size: var(--text-xs);
  color: var(--heading);
  line-height: 1.6;
  margin-bottom: 10px;
}


.wn-messages {
  flex: 1;
  padding: 14px;
  overflow-y: auto;
  background: var(--light);
}

.wn-messages .bot {
  margin-bottom: 10px;
}

.wn-messages .bot .bot-text {
  display: inline-block;
  max-width: 88%;
  background: #EFF6FF;
  padding: 10px 14px;
  border-radius: 14px 14px 14px 4px;
  font-size: var(--text-xs);
  line-height: 1.6;
  text-align: left;
  color: var(--heading);
  border: 1px solid rgba(30, 64, 175, 0.08);
}

.wn-messages .user {
  background: var(--teal-soft);
  padding: 10px 14px;
  border-radius: 14px 14px 4px 14px;
  margin-bottom: 10px;
  text-align: right;
  font-size: var(--text-xs);
  color: var(--heading);
  margin-left: auto;
  max-width: 88%;
  border: 1px solid rgba(20, 184, 166, 0.15);
}

.wn-input-area {
  display: flex;
  border-top: 1px solid var(--border);
  background: var(--surface);
}

.wn-input-area input {
  flex: 1;
  padding: 14px 16px;
  border: none;
  outline: none;
  font-family: var(--font-body);
  font-size: var(--text-sm);
}

.wn-input-area button {
  background: var(--navy);
  color: white;
  border: none;
  padding: 0 20px;
  cursor: pointer;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: var(--text-xs);
  transition: background var(--transition);
}

.wn-input-area button:hover {
  background: var(--blue);
}

/* =======================================
   RESPONSIVE
======================================= */

@media (max-width: 1100px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
  }

  .dashboard-card {
    max-width: 520px;
    margin: 0 auto;
  }

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

  .process-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .industries-grid {
    grid-template-columns: repeat(3, 1fr);
  }

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

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

  .flip-card {
    width: 280px;
    height: 280px;
    flex: 0 0 280px;
  }
}

@media (max-width: 768px) {
  :root {
    --nav-height: 72px;
  }

  .nav-toggle {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: var(--nav-height);
    left: 0;
    right: 0;
    bottom: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--surface);
    padding: var(--space-md);
    transform: translateX(100%);
    transition: transform var(--transition);
    overflow-y: auto;
    border-top: 1px solid var(--border);
  }

  .nav-links.open {
    transform: translateX(0);
  }

  .nav-links li {
    border-bottom: 1px solid var(--border-soft);
  }

  .nav-links a {
    display: block;
    padding: 16px 8px;
    font-size: var(--text-base);
  }

  .nav-links a:not(.nav-cta)::after {
    display: none;
  }

  .nav-cta {
    margin-top: var(--space-sm);
    text-align: center;
    padding: 14px 24px;
  }

  .hero-banner {
    min-height: auto;
    padding: clamp(80px, 12vw, 100px) 0;
  }

  .hero-stats {
    flex-direction: column;
  }

  .stat {
    min-width: 100%;
  }

  .challenge-grid,
  .controls-grid,
  .knowledge-grid,
  .industries-grid,
  .capability-grid,
  .ideal-grid,
  .two-column-grid,
  .cta-band-grid {
    grid-template-columns: 1fr;
  }

  .services-overview .controls-grid {
    grid-template-columns: 1fr;
  }

  .process-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-lg);
  }

  .approach-flow {
    flex-direction: column;
    align-items: center;
  }

  .flow-arrow {
    transform: rotate(90deg);
    padding: 0;
  }

  .flow-item {
    max-width: 100%;
  }

  .section-heading {
    margin-bottom: var(--space-lg);
  }

  .trust-strip-inner {
    flex-direction: column;
    gap: var(--space-sm);
  }

  .flip-grid {
    flex-direction: column;
    align-items: center;
  }

  .flip-card {
    width: 100%;
    max-width: 320px;
    flex: none;
  }

  .contact-form .btn-primary {
    width: 100%;
    align-self: stretch;
  }

  .thank-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .thank-actions .btn-primary,
  .thank-actions .btn-secondary {
    width: 100%;
  }

  #wn-chatbox {
    right: 16px;
    bottom: 88px;
  }

  #wn-chat-button {
    right: 16px;
    bottom: 16px;
  }
}

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

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

  .btn-primary,
  .btn-secondary {
    width: 100%;
    justify-content: center;
  }

  .hero-buttons {
    flex-direction: column;
  }
}

/* =======================================
   PRODUCTS WE SUPPORT — CENTERED CARDS
======================================= */

.products-support-section .controls-grid {
  grid-template-columns: repeat(3, minmax(0, 300px));
  justify-content: center;
  gap: var(--space-md);
  max-width: 980px;
  margin-left: auto;
  margin-right: auto;
}

.products-support-section .controls-grid .card {
  width: 100%;
  max-width: none;
  margin: 0;
}

/* Tablet */
@media (max-width: 1000px) {
  .products-support-section .controls-grid {
    grid-template-columns: repeat(2, minmax(0, 300px));
  }
}

/* Mobile */
@media (max-width: 680px) {
  .products-support-section .controls-grid {
    grid-template-columns: minmax(0, 1fr);
    max-width: 360px;
  }
}

/* =======================================
   ABOUT US - WH BACKGROUND
======================================= */

.about-hero-bg {
  position: relative;
  min-height: 430px;
  display: flex;
  align-items: center;
  background:
    linear-gradient(
      rgba(8, 24, 45, 0.62),
      rgba(8, 24, 45, 0.62)
    ),
    url("abt image/WH image.png");
  background-size: cover;
  background-position: center right;
  background-repeat: no-repeat;
  color: #ffffff;
}

.about-hero-bg .container {
  position: relative;
  z-index: 2;
}

.about-hero-bg .section-heading h1,
.about-hero-bg .section-heading p {
  color: #ffffff;
}

.about-hero-bg .section-heading p {
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 768px) {
  .about-hero-bg {
    min-height: 360px;
    background-position: center right;
  }
}

/* =======================================
   SERVICE STRUCTURE FULL-WIDTH BACKGROUND
======================================= */

.service-structure-bg {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background: linear-gradient(180deg, #f8fbfb 0%, #eef6f4 100%);
}

/* full-width background layer */
.service-structure-bg::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100vw; /* force full screen width */
  background:
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.72) 0%,
      rgba(248, 250, 252, 0.74) 55%,
      rgba(236, 253, 245, 0.76) 100%
    ),
    url("services image/Fulfillment layout.png");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover; /* fill both sides */
  z-index: -2;
  pointer-events: none;
}

/* optional soft fade layer */
.service-structure-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.18);
  z-index: -1;
  pointer-events: none;
}

.service-structure-bg .container {
  position: relative;
  z-index: 2;
}

.service-structure-bg .service-timeline-card {
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.service-structure-bg .service-timeline-icon {
  background: rgba(255, 255, 255, 0.95);
}

/* mobile */
@media (max-width: 768px) {
  .service-structure-bg::before {
    background-position: center center;
    background-size: cover;
  }
}

/* =======================================
   HOME PAGE SERVICE CARDS - IMAGE FIX
======================================= */

.services-overview .card-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 24px;
}

.services-overview .card-icon img {
  width: 190px;
  height: 190px;
  object-fit: contain;
  margin: 0 auto;
}

.services-overview .card {
  text-align: left;
}

.services-overview .card h3,
.services-overview .card p {
  text-align: left;
}

/* Make 2nd and 3rd Home service images visually same size as first */
.services-overview .controls-grid .card:nth-child(2) .card-icon img,
.services-overview .controls-grid .card:nth-child(3) .card-icon img {
  transform: scale(1.22);
}

/* =======================================
   HOME CHALLENGE SECTION - CENTER IMAGES
======================================= */

.challenge-section .card-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 22px;
}

.challenge-section .card-icon img {
  width: 150px;
  height: 150px;
  object-fit: contain;
  margin: 0 auto;
}

.challenge-section .card h3,
.challenge-section .card p {
  text-align: left;
}

/* =======================================
   PRODUCT ASSURANCE CONTROLS - SMALLER ICONS
======================================= */

.product-controls-section .card-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 22px;
}

.product-controls-section .card-icon img {
  width: 75px;
  height: 75px;
  object-fit: contain;
  margin: 0 auto;
}



/* =======================================
   HOW IT WORKS - LARGER STEPS
======================================= */

.process-section .process-grid {
  gap: 44px;
  max-width: 1280px;
  margin: 0 auto;
}

.process-section .step-number {
  width: 72px;
  height: 72px;
  font-size: 1.1rem;
  margin-bottom: 22px;
}

.process-section .process-step img {
  width: 155px;
  height: 155px;
  object-fit: contain;
  margin: 0 auto 22px;
}

.process-section .process-step h4 {
  font-size: 1.08rem;
  margin-bottom: 12px;
}

.process-section .process-step p {
  font-size: 0.95rem;
  line-height: 1.7;
}

/* =======================================
   OUR APPROACH - REMOVE ICON WHITE EDGE
======================================= */

.flow-circle {
  overflow: hidden;
}

.flow-circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.75);
}

/* =======================================
   Service Outputs - BIGGER TIMELINE ICONS
======================================= */

.controls-section .service-timeline-item {
  grid-template-columns: 1fr 130px 1fr;
}

.controls-section .service-timeline-icon {
  width: 112px !important;
  height: 112px !important;
  border-radius: 24px;
  overflow: hidden;
  background: #ffffff;
  box-shadow: 0 14px 34px rgba(10, 22, 40, 0.12);
}

.controls-section .service-timeline-icon img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover;
  transform: scale(1.75);
}

/* keep timeline line behind bigger icons */
.controls-section .service-timeline-icon {
  position: relative;
  z-index: 3;
}

@media (max-width: 900px) {
  .controls-section .service-timeline-item {
    grid-template-columns: 112px 1fr;
  }

  .controls-section .service-timeline-icon {
    width: 96px !important;
    height: 96px !important;
  }
}
/* =======================================
   SERVICE MODULES - STRUCTURED WEB MAP
======================================= */

.service-web {
  position: relative;
  max-width: 1120px;
  min-height: auto;
  margin: 58px auto 0;
  display: grid;
  grid-template-columns: minmax(230px, 1fr) 300px minmax(230px, 1fr);
  grid-template-areas:
    "receive hub order"
    "delivery hub inventory"
    "report return value";
  gap: 30px 58px;
  align-items: center;
}

/* reset old circle positioning */
.service-hub,
.service-node,
.node-top-left,
.node-top-right,
.node-left,
.node-right,
.node-bottom-left,
.node-bottom-right,
.node-bottom-center {
  position: relative !important;
  top: auto !important;
  left: auto !important;
  right: auto !important;
  bottom: auto !important;
  transform: none !important;
  width: auto !important;
  z-index: 3;
}

/* assign map positions */
.node-top-left {
  grid-area: receive;
}

.node-top-right {
  grid-area: order;
}

.node-left {
  grid-area: delivery;
}

.node-right {
  grid-area: inventory;
}

.node-bottom-left {
  grid-area: report;
}

.node-bottom-right {
  grid-area: value;
}

.node-bottom-center {
  grid-area: return;
}

/* center hub */
.service-hub {
  grid-area: hub;
  width: 300px !important;
  min-height: 260px;
  align-self: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  color: #ffffff;
  border-radius: 22px;
  padding: 34px 30px;
  text-align: center;
  box-shadow: 0 22px 55px rgba(10, 22, 40, 0.16);
}

.service-hub h3 {
  color: #ffffff;
  font-size: 1.15rem;
  margin-bottom: 12px;
}

.service-hub p {
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.88rem;
  line-height: 1.75;
  margin: 0;
}

/* module cards */
.service-node .card {
  min-height: 158px;
  padding: 24px 22px;
  text-align: center;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 8px 24px rgba(10, 22, 40, 0.055);
}

.service-node .card-icon {
  font-size: 1.2rem;
  margin-bottom: 8px;
}

.service-node .card h3 {
  font-size: 0.92rem;
  margin-bottom: 8px;
}

.service-node .card p {
  font-size: 0.78rem;
  line-height: 1.65;
  margin: 0;
}

/* remove old circle connector lines */
.service-node::after {
  display: none !important;
}

/* clean web connector background */
.service-web::before {
  content: "";
  position: absolute;
  inset: 80px 160px 95px;
  background:
    linear-gradient(to right, transparent 0%, rgba(20, 184, 166, 0.35) 50%, transparent 100%) center 50% / 100% 1px no-repeat,
    linear-gradient(to bottom, transparent 0%, rgba(20, 184, 166, 0.32) 50%, transparent 100%) center center / 1px 100% no-repeat;
  z-index: 1;
  pointer-events: none;
}

/* short connection lines from cards */
.service-node .card::after {
  content: "";
  position: absolute;
  height: 1px;
  background: rgba(20, 184, 166, 0.36);
  z-index: -1;
}

.service-node {
  position: relative;
}

.node-top-left .card::after,
.node-left .card::after,
.node-bottom-left .card::after {
  width: 58px;
  right: -58px;
  top: 50%;
}

.node-top-right .card::after,
.node-right .card::after,
.node-bottom-right .card::after {
  width: 58px;
  left: -58px;
  top: 50%;
}

.node-bottom-center .card::after {
  width: 1px;
  height: 42px;
  left: 50%;
  top: -42px;
}

/* soft center glow */
.service-web::after {
  content: "";
  position: absolute;
  width: 470px;
  height: 360px;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(20, 184, 166, 0.09), transparent 68%);
  z-index: 0;
  pointer-events: none;
}

/* tablet */
@media (max-width: 1100px) {
  .service-web {
    grid-template-columns: 1fr 1fr;
    grid-template-areas:
      "hub hub"
      "receive order"
      "delivery inventory"
      "report value"
      "return return";
    gap: 24px;
  }

  .service-hub {
    width: 100% !important;
    min-height: auto;
  }

  .service-web::before,
  .service-web::after,
  .service-node .card::after {
    display: none;
  }
}

/* mobile */
@media (max-width: 700px) {
  .service-web {
    grid-template-columns: 1fr;
    grid-template-areas:
      "hub"
      "receive"
      "order"
      "delivery"
      "inventory"
      "report"
      "value"
      "return";
  }
}

/* =======================================
   WHAT CLIENTS RECEIVE - SLOW SCROLL APPEAR
======================================= */

.clients-receive-section .service-timeline-item {
  opacity: 0;
  transform: translateY(70px);
  transition:
    opacity 1.15s ease,
    transform 1.15s ease;
}

.clients-receive-section .service-timeline-item.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* slower stagger */
.clients-receive-section .service-timeline-item:nth-child(1) {
  transition-delay: 0.15s;
}

.clients-receive-section .service-timeline-item:nth-child(2) {
  transition-delay: 0.35s;
}

.clients-receive-section .service-timeline-item:nth-child(3) {
  transition-delay: 0.45s;
}

.clients-receive-section .service-timeline-item:nth-child(4) {
  transition-delay: 0.55s;
}

.clients-receive-section .service-timeline-item:nth-child(5) {
  transition-delay: 0.55s;
}

.clients-receive-section .service-timeline-item:nth-child(6) {
  transition-delay: 0.55s;
}

/* =======================================
   INDUSTRIES WE SERVE - MOVING CAROUSEL
======================================= */

.industries-marquee {
  width: 100%;
  overflow: hidden;
  position: relative;
  margin-top: var(--space-lg);
}

.industries-marquee::before,
.industries-marquee::after {
  content: "";
  position: absolute;
  top: 0;
  width: 90px;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.industries-marquee::before {
  left: 0;
  background: linear-gradient(to right, #ffffff, transparent);
}

.industries-marquee::after {
  right: 0;
  background: linear-gradient(to left, #ffffff, transparent);
}

.industries-track {
  display: flex;
  flex-wrap: nowrap;
  align-items: stretch;
  gap: var(--space-md);
  width: max-content;
  animation: industriesScroll 55s linear infinite;
}

@media (prefers-reduced-motion: reduce) {
  .industries-track {
    animation: none;
  }
}

.industries-track .industry-card {
  flex: 0 0 250px;
  min-height: 150px;
}

@keyframes industriesScroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

@media (max-width: 640px) {
  .industries-track {
    gap: 18px;
    animation-duration: 28s;
  }

  .industries-track .industry-card {
    flex-basis: 190px;
    min-height: 135px;
  }

  .industries-marquee::before,
  .industries-marquee::after {
    width: 42px;
  }
}

.industries-track .industry-card img {
  width: 90px;
  height: 90px;
  object-fit: contain;
}

/* =======================================
   ABOUT PAGE — FOUR POSITIONING PILLARS
======================================= */

.who-we-are-pillars {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  width: 100%;
  max-width: 920px;
  margin: 38px auto 0;
  padding: 24px 0;

  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.pillar-item {
  position: relative;
  min-height: 90px;
  padding: 12px 24px;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;

  text-align: center;
}

.pillar-item:not(:last-child) {
  border-right: 1px solid var(--border);
}

.pillar-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;

  display: flex;
  align-items: center;
  justify-content: center;

  background: var(--sage);
  color: #059669;
  font-size: 0.85rem;
  font-weight: 800;
}

.pillar-item h3 {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.35;
  font-weight: 700;
}

/* Tablet */
@media (max-width: 800px) {
  .who-we-are-pillars {
    grid-template-columns: repeat(2, 1fr);
  }

  .pillar-item {
    border-bottom: 1px solid var(--border);
  }

  .pillar-item:nth-child(2) {
    border-right: none;
  }

  .pillar-item:nth-child(3),
  .pillar-item:nth-child(4) {
    border-bottom: none;
  }
}

/* Mobile */
@media (max-width: 520px) {
  .who-we-are-pillars {
    grid-template-columns: 1fr;
    max-width: 340px;
  }

  .pillar-item,
  .pillar-item:nth-child(2),
  .pillar-item:nth-child(3) {
    border-right: none;
    border-bottom: 1px solid var(--border);
  }

  .pillar-item:last-child {
    border-bottom: none;
  }
}

/* =======================================
   CAPABILITY + VISION/MISSION LAYOUT
======================================= */

.capability-statement-section {
  padding-bottom: 48px;
}

.capability-horizontal-card {
  display: grid;
  grid-template-columns: 190px minmax(0, 1fr);
  align-items: center;
  gap: 40px;

  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  padding: 34px 42px;

  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.capability-horizontal-qr {
  width: 180px;
  height: 180px;
  object-fit: contain;
  padding: 10px;
  background: #ffffff;
  border-radius: 12px;
}

.capability-horizontal-content {
  text-align: left;
}

.capability-horizontal-content h3 {
  margin-bottom: 12px;
  font-size: 1.2rem;
}

.capability-horizontal-content p {
  max-width: 540px;
  margin: 0 0 20px;
  font-size: var(--text-sm);
  line-height: 1.75;
}

/* Pull Vision and Mission closer */
.vision-mission-section {
  padding-top: 24px;
}

.vision-mission-section .two-column-grid {
  max-width: 900px;
  margin: 0 auto;
  align-items: stretch;
}

.vision-mission-section .card {
  max-width: none;
  margin: 0;
  padding: 30px 32px;
}

.vision-mission-section .card:first-child {
  border-left: 4px solid var(--teal);
  background: linear-gradient(
    135deg,
    var(--sage) 0%,
    #ffffff 100%
  );
}

/* Tablet and mobile */
@media (max-width: 700px) {
  .capability-horizontal-card {
    grid-template-columns: 1fr;
    max-width: 420px;
    padding: 30px 24px;
    gap: 24px;
    text-align: center;
  }

  .capability-horizontal-qr {
    margin: 0 auto;
  }

  .capability-horizontal-content {
    text-align: center;
  }

  .vision-mission-section {
    padding-top: 16px;
  }
}

/* =======================================
   PRODUCTS SUPPORTED + REVIEW PANEL
======================================= */

.supported-products-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  width: 100%;
  max-width: 720px;
  margin: 0 auto;
}

.supported-products-grid .card {
  width: 100%;
  min-height: 235px;
  margin: 0;
}

.product-review-panel {
  display: flex;
  align-items: center;
  gap: 22px;

  width: 100%;
  max-width: 720px;
  margin: 24px auto 0;
  padding: 24px 28px;

  background: var(--light);
  border: 1px solid var(--border);
  border-left: 4px solid var(--teal);
  border-radius: var(--radius);
}

.review-icon {
  flex-shrink: 0;
  font-size: 1.8rem;
  line-height: 1;
}

.review-content h3 {
  margin: 0 0 6px;
  font-size: 1rem;
}

.review-content p {
  margin: 0;
  color: var(--text-muted);
  font-size: var(--text-sm);
  line-height: 1.7;
}

@media (max-width: 680px) {
  .supported-products-grid {
    grid-template-columns: 1fr;
    max-width: 360px;
  }

  .product-review-panel {
    max-width: 360px;
    align-items: flex-start;
  }
}

/* ======================================
   PRODUCT STORAGE DECISION FLOW
====================================== */

.storage-flow {
  max-width: 980px;
  margin: var(--space-xl) auto 0;
  padding: clamp(28px, 5vw, 48px);
  background: linear-gradient(
    180deg,
    rgba(20, 184, 166, 0.05),
    rgba(255, 255, 255, 1)
  );
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.storage-flow-heading {
  max-width: 680px;
  margin: 0 auto var(--space-lg);
  text-align: center;
}

.storage-flow-label {
  display: inline-block;
  margin-bottom: 10px;
  color: var(--teal);
  font-size: var(--text-sm);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.storage-flow-heading h2 {
  margin-bottom: 10px;
}

.storage-flow-heading p {
  margin: 0;
  color: var(--text-muted);
  line-height: 1.7;
}

.storage-flow-map {
  max-width: 860px;
  margin: 0 auto;
}

.storage-flow-node {
  margin: 0 auto;
  text-align: center;
  font-weight: 700;
}

.storage-flow-start {
  width: fit-content;
  min-width: 180px;
  padding: 14px 28px;
  background: var(--teal);
  color: #ffffff;
  border-radius: 999px;
}

.storage-flow-question {
  max-width: 520px;
  padding: 20px 28px;
  background: var(--navy);
  color: #ffffff;
  border-radius: var(--radius);
  line-height: 1.5;
  box-shadow: var(--shadow-sm);
}

.storage-flow-line {
  margin: 0 auto;
  background: rgba(20, 184, 166, 0.45);
}

.vertical-line {
  width: 2px;
  height: 30px;
}

.storage-flow-split {
  position: relative;
  width: 50%;
  height: 38px;
  margin: 0 auto;
  border-top: 2px solid rgba(20, 184, 166, 0.4);
}

.storage-flow-split::before {
  content: "";
  position: absolute;
  top: -38px;
  left: 50%;
  width: 2px;
  height: 38px;
  background: rgba(20, 184, 166, 0.4);
  transform: translateX(-50%);
}

.storage-flow-split::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 22px;
  border-left: 2px solid rgba(20, 184, 166, 0.4);
  border-right: 2px solid rgba(20, 184, 166, 0.4);
}

.storage-flow-branches {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(22px, 4vw, 38px);
}

.storage-flow-branch {
  position: relative;
  padding-top: 10px;
}

.storage-flow-answer {
  display: block;
  width: fit-content;
  margin: 0 auto 12px;
  padding: 5px 13px;
  background: var(--surface);
  border: 1px solid rgba(20, 184, 166, 0.35);
  border-radius: 999px;
  color: var(--teal-dark);
  font-size: 0.78rem;
  font-weight: 700;
}

.storage-flow-card {
  height: 100%;
  padding: clamp(22px, 3vw, 30px);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  text-align: center;
}

.storage-flow-card h3 {
  max-width: 300px;
  margin: 0 auto 18px;
  font-size: 1.05rem;
  line-height: 1.45;
}

.storage-flow-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  margin: 0 auto 14px;
  border-radius: 14px;
  background: rgba(20, 184, 166, 0.1);
  color: var(--teal);
  font-family: var(--font-display);
  font-weight: 800;
}

.storage-flow-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
}

.storage-flow-tags span {
  padding: 7px 10px;
  background: rgba(15, 23, 42, 0.045);
  border: 1px solid rgba(15, 23, 42, 0.07);
  border-radius: 999px;
  color: var(--text-muted);
  font-size: 0.78rem;
  line-height: 1.3;
}

.storage-flow-result {
  margin-top: 22px;
  padding: 16px;
  background: rgba(20, 184, 166, 0.07);
  border-radius: 12px;
}

.storage-flow-result small {
  display: block;
  margin-bottom: 5px;
  color: var(--text-muted);
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.storage-flow-result strong {
  display: block;
  color: var(--navy);
  font-size: 0.9rem;
  line-height: 1.45;
}

.assessment-path .storage-flow-icon {
  background: rgba(15, 23, 42, 0.08);
  color: var(--navy);
}

.assessment-path .storage-flow-result {
  background: rgba(15, 23, 42, 0.055);
}

.storage-flow-note {
  max-width: 740px;
  margin: var(--space-lg) auto 0;
  padding-top: 18px;
  border-top: 1px solid var(--border);
  color: var(--text-muted);
  font-size: var(--text-sm);
  line-height: 1.7;
  text-align: center;
}

/* MOBILE */

@media (max-width: 760px) {

  .storage-flow {
    padding: 26px 20px;
  }

  .storage-flow-split {
    display: none;
  }

  .storage-flow-branches {
    grid-template-columns: 1fr;
    gap: 26px;
    margin-top: 30px;
  }

  .storage-flow-branch {
    padding-top: 28px;
  }

  .storage-flow-branch::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    width: 2px;
    height: 22px;
    background: rgba(20, 184, 166, 0.4);
    transform: translateX(-50%);
  }

  .storage-flow-question {
    padding: 18px 20px;
  }
}

/* Reduce gap between page hero and knowledge content */
.page-hero .section-heading {
  margin-bottom: 0;
}

.knowledge-section {
  padding-top: 48px;
}

/* ==================================================
   FOOTER LEGAL LINKS + CONTACT-FORM PRIVACY NOTICE
   Paste this at the END of your existing style.css
================================================== */

.footer-legal-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 9px;
  margin: 0 0 var(--space-sm);
  color: rgba(255, 255, 255, 0.72);
  font-size: var(--text-xs);
  font-weight: 600;
}

.footer-legal-links a {
  transition: color var(--transition);
}

.footer-legal-links a:hover,
.footer-legal-links a:focus-visible {
  color: var(--teal);
}

.footer-legal-links span {
  opacity: 0.35;
}

.form-privacy-note {
  margin: 12px 0 0;
  color: var(--text-muted);
  font-size: 0.72rem;
  line-height: 1.6;
}

.form-privacy-note a {
  color: var(--blue);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* =======================================
   FINAL MOBILE NAVIGATION FIX
======================================= */

@media (max-width: 768px) {

  .nav-links {
    position: fixed !important;
    top: var(--nav-height) !important;
    left: 0 !important;
    right: 0 !important;

    width: 100vw !important;
    max-width: 100vw !important;

    height: calc(100dvh - var(--nav-height)) !important;
    min-height: calc(100vh - var(--nav-height)) !important;

    display: flex !important;
    flex-direction: column !important;
    align-items: stretch !important;

    margin: 0 !important;
    padding: 16px 20px 32px !important;

    gap: 0 !important;

    background: #ffffff !important;

    overflow-x: hidden !important;
    overflow-y: auto !important;
    -webkit-overflow-scrolling: touch;

    transform: translateX(100%) !important;
    transition: transform var(--transition);

    z-index: 9998 !important;
  }

  .nav-links.open {
    transform: translateX(0) !important;
  }

  .nav-links li {
    width: 100% !important;
    flex: 0 0 auto !important;
    border-bottom: 1px solid var(--border-soft);
  }

  .nav-links a {
    display: flex !important;
    align-items: center;

    width: 100% !important;
    min-height: 54px;

    padding: 15px 8px;

    font-size: var(--text-base);
  }

  .nav-links a:not(.nav-cta)::after {
    display: none !important;
  }

  .nav-cta {
    width: 100% !important;
    margin-top: 16px;
    text-align: center;
  }

  body {
    overflow-x: hidden;
  }
}