/* =========================================
   Heritage Industrials — Landing Page Styles
   Color Palette: Royal Blue + Gold
   ========================================= */

:root {
  /* Royal Blue */
  --blue-900: #0a1628;
  --blue-800: #0f2044;
  --blue-700: #142d61;
  --blue-600: #1a3a7e;
  --blue-500: #1e4d9b;
  --blue-400: #2d6bc4;
  --blue-300: #5a92db;
  --blue-200: #93b8e8;
  --blue-100: #d0e0f5;
  --blue-50:  #eaf1fb;

  /* Gold — muted champagne / antique brass */
  --gold-600: #7a6c45;
  --gold-500: #96845a;
  --gold-400: #b0a07a;
  --gold-300: #c4b896;
  --gold-200: #d8ceb2;
  --gold-100: #ebe5d4;
  --gold-50:  #f5f2ea;

  /* Neutrals */
  --white: #ffffff;
  --gray-50: #f8f9fa;
  --gray-100: #f0f1f3;
  --gray-200: #e2e4e8;
  --gray-300: #c8cbd0;
  --gray-400: #9ea3ab;
  --gray-500: #6c727d;
  --gray-600: #4a4f58;
  --gray-700: #2e3238;
  --gray-800: #1a1d22;
  --gray-900: #0d0f12;
  --black: #000000;

  /* Semantic */
  --bg-dark: var(--blue-900);
  --bg-light: var(--gray-50);
  --text-primary: var(--gray-900);
  --text-secondary: var(--gray-500);
  --text-light: var(--gray-200);
  --text-on-dark: var(--white);
  --accent: var(--gold-400);
  --accent-hover: var(--gold-300);

  /* Spacing */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2.5rem;
  --space-xl: 4rem;
  --space-2xl: 6rem;
  --space-3xl: 8rem;

  /* Typography */
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-serif: 'Playfair Display', Georgia, serif;

  /* Transitions */
  --ease-out: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-out-expo: cubic-bezier(0.19, 1, 0.22, 1);
}

/* =========================================
   Reset & Base
   ========================================= */

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text-primary);
  background: var(--bg-dark);
  overflow-x: hidden;
}

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

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

button, input, textarea, select {
  font-family: inherit;
  font-size: inherit;
}

/* =========================================
   Layout
   ========================================= */

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.section {
  padding: var(--space-3xl) 0;
  position: relative;
}

.section--dark {
  background: var(--bg-dark);
  color: var(--text-on-dark);
}

.section--light {
  background: var(--bg-light);
  color: var(--text-primary);
}

.section--blue {
  background: linear-gradient(160deg, var(--blue-800) 0%, var(--blue-900) 100%);
  color: var(--text-on-dark);
}

/* =========================================
   Navigation
   ========================================= */

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: var(--space-sm) 0;
  transition: background 0.4s var(--ease-out), padding 0.4s var(--ease-out),
              backdrop-filter 0.4s var(--ease-out);
}

.nav.scrolled {
  background: rgba(10, 22, 40, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 0.6rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-md);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  z-index: 1001;
}

.logo-mark {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--accent);
  letter-spacing: -0.02em;
  line-height: 1;
}

.logo-text {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text-on-dark);
  letter-spacing: 0.02em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
}

.nav-link {
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 0.01em;
  transition: color 0.3s var(--ease-out);
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--accent);
  transition: width 0.3s var(--ease-out);
}

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

.nav-link:hover::after {
  width: 100%;
}

.nav-link--cta {
  color: var(--bg-dark);
  background: var(--accent);
  padding: 0.5rem 1.25rem;
  border-radius: 100px;
  font-weight: 600;
  transition: background 0.3s var(--ease-out), transform 0.3s var(--ease-out);
}

.nav-link--cta::after {
  display: none;
}

.nav-link--cta:hover {
  background: var(--accent-hover);
  color: var(--bg-dark);
  transform: translateY(-1px);
}

/* Mobile toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 1001;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.3s var(--ease-out);
}

.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);
}

/* =========================================
   Hero
   ========================================= */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

#heroCanvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

/* Floating gradient orbs */
.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.15;
  z-index: 0;
}

.hero-orb--1 {
  width: 500px;
  height: 500px;
  background: var(--blue-600);
  top: -10%;
  right: -10%;
  animation: orbFloat1 20s ease-in-out infinite;
}

.hero-orb--2 {
  width: 400px;
  height: 400px;
  background: var(--gold-500);
  bottom: -5%;
  left: -5%;
  animation: orbFloat2 25s ease-in-out infinite;
}

.hero-orb--3 {
  width: 300px;
  height: 300px;
  background: var(--blue-400);
  top: 40%;
  left: 50%;
  animation: orbFloat3 18s ease-in-out infinite;
}

/* Section floating orbs */
.floating-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.08;
  pointer-events: none;
  z-index: 0;
}

.floating-orb--1 {
  width: 400px;
  height: 400px;
  background: var(--gold-400);
  top: 10%;
  right: -5%;
  animation: orbFloat2 22s ease-in-out infinite;
}

.floating-orb--2 {
  width: 350px;
  height: 350px;
  background: var(--blue-500);
  bottom: 10%;
  left: -5%;
  animation: orbFloat3 18s ease-in-out infinite;
}

.floating-orb--3 {
  width: 300px;
  height: 300px;
  background: var(--gold-500);
  top: 20%;
  left: 60%;
  animation: orbFloat1 20s ease-in-out infinite;
}

@keyframes orbFloat1 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(30px, -40px) scale(1.05); }
  66% { transform: translate(-20px, 20px) scale(0.95); }
}

@keyframes orbFloat2 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(-40px, 30px) scale(1.08); }
  66% { transform: translate(25px, -25px) scale(0.92); }
}

@keyframes orbFloat3 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(35px, 35px) scale(1.1); }
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 60% 60% at 50% 50%, black 20%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse 60% 60% at 50% 50%, black 20%, transparent 70%);
}

.hero-gradient {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 40% 50% at 50% 40%, rgba(26, 58, 126, 0.4) 0%, transparent 70%),
    radial-gradient(ellipse 30% 40% at 70% 60%, rgba(176, 160, 122, 0.08) 0%, transparent 60%);
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 800px;
  padding: var(--space-3xl) var(--space-md);
}

.hero-eyebrow {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: var(--space-md);
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.8s var(--ease-out-expo) 0.2s forwards;
}

.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--text-on-dark);
  margin-bottom: var(--space-lg);
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 0.8s var(--ease-out-expo) 0.4s forwards;
}

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

.hero-subtitle {
  font-size: 1.125rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.6);
  max-width: 600px;
  margin: 0 auto var(--space-xl);
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 0.8s var(--ease-out-expo) 0.6s forwards;
}

.hero-actions {
  display: flex;
  gap: var(--space-sm);
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 0.8s var(--ease-out-expo) 0.8s forwards;
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  opacity: 0;
  animation: fadeUp 0.8s var(--ease-out-expo) 1.2s forwards;
}

.scroll-line {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, var(--accent), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

/* =========================================
   Buttons
   ========================================= */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.875rem 2rem;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  border-radius: 100px;
  border: none;
  cursor: pointer;
  transition: all 0.3s var(--ease-out);
  white-space: nowrap;
}

.btn-primary {
  background: var(--accent);
  color: var(--bg-dark);
}

.btn-primary:hover {
  background: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(176, 160, 122, 0.25);
}

.btn-secondary {
  background: transparent;
  color: var(--text-on-dark);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-secondary:hover {
  border-color: rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.05);
  transform: translateY(-2px);
}

.btn-full {
  width: 100%;
}

/* =========================================
   Section Headers
   ========================================= */

.section-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--blue-500);
  margin-bottom: var(--space-sm);
}

.section-label--gold {
  color: var(--accent);
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: var(--space-lg);
}

.section-header {
  max-width: 600px;
  margin-bottom: var(--space-2xl);
}

/* =========================================
   About Section
   ========================================= */

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2xl);
  align-items: start;
}

.about-lead {
  font-size: 1.25rem;
  line-height: 1.7;
  color: var(--gray-700);
  margin-bottom: var(--space-md);
  font-weight: 400;
}

.about-body {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--gray-500);
}

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

.stat {
  text-align: center;
  padding: var(--space-lg) var(--space-sm);
  background: var(--white);
  border-radius: 12px;
  border: 1px solid var(--gray-200);
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out);
}

.stat:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.06);
}

.stat-number {
  display: block;
  font-family: var(--font-serif);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--blue-600);
  line-height: 1;
  margin-bottom: var(--space-xs);
}

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

/* =========================================
   Division Blocks (SaaS & Manufacturing)
   ========================================= */

.division-block {
  max-width: 1000px;
}

.division-header {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  margin-bottom: var(--space-md);
}

.division-number {
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 600;
  color: var(--accent);
  opacity: 0.5;
}

.division-title {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: var(--space-md);
}

.division-subtitle {
  font-size: 1.125rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.55);
  max-width: 600px;
  margin-bottom: var(--space-2xl);
}

/* Feature Cards (SaaS) */
.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-md);
}

.feature-card {
  padding: var(--space-xl);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 16px;
  transition: all 0.4s var(--ease-out);
}

.feature-card:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(176, 160, 122, 0.2);
  transform: translateY(-4px);
}

.feature-icon {
  width: 48px;
  height: 48px;
  color: var(--accent);
  margin-bottom: var(--space-md);
}

.feature-icon svg {
  width: 100%;
  height: 100%;
}

.feature-title {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: var(--space-xs);
  letter-spacing: -0.01em;
}

.feature-text {
  font-size: 0.9rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.5);
}

/* Manufacturing Cards */
.mfg-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-md);
}

.mfg-card {
  padding: var(--space-xl);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  transition: all 0.4s var(--ease-out);
  position: relative;
  overflow: hidden;
}

.mfg-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 0;
  background: var(--accent);
  transition: height 0.4s var(--ease-out);
  border-radius: 0 0 3px 0;
}

.mfg-card:hover::before {
  height: 100%;
}

.mfg-card:hover {
  background: rgba(255, 255, 255, 0.07);
  transform: translateY(-4px);
}

.mfg-card-number {
  font-family: var(--font-serif);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--accent);
  opacity: 0.4;
  margin-bottom: var(--space-md);
}

.mfg-card-title {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: var(--space-xs);
  letter-spacing: -0.01em;
}

.mfg-card-text {
  font-size: 0.9rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.5);
}

/* =========================================
   Vision Section
   ========================================= */

.vision-section {
  padding: var(--space-3xl) 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.vision-content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.vision-quote {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 500;
  line-height: 1.3;
  letter-spacing: -0.02em;
  color: rgba(255, 255, 255, 0.9);
}

.vision-highlight {
  color: var(--accent);
  font-style: italic;
}

/* =========================================
   Contact Section
   ========================================= */

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
  align-items: start;
}

.contact-text {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--gray-500);
  margin-bottom: var(--space-lg);
}

.contact-link {
  display: inline-flex;
  align-items: center;
  font-size: 1rem;
  font-weight: 600;
  color: var(--blue-600);
  border-bottom: 2px solid var(--accent);
  padding-bottom: 2px;
  transition: color 0.3s var(--ease-out);
}

.contact-link:hover {
  color: var(--blue-500);
}

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

.form-input {
  width: 100%;
  padding: 1rem 1.25rem;
  font-size: 0.95rem;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 10px;
  color: var(--text-primary);
  transition: border-color 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out);
  outline: none;
}

.form-input::placeholder {
  color: var(--gray-400);
}

.form-input:focus {
  border-color: var(--blue-400);
  box-shadow: 0 0 0 3px rgba(45, 107, 196, 0.1);
}

.form-select {
  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='%239ea3ab' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
  cursor: pointer;
}

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

/* =========================================
   Footer
   ========================================= */

.footer {
  background: var(--gray-900);
  color: var(--gray-400);
  padding: var(--space-2xl) 0 var(--space-lg);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: start;
  margin-bottom: var(--space-2xl);
}

.footer-brand .logo-text {
  color: var(--gray-300);
}

.footer-tagline {
  font-size: 0.85rem;
  color: var(--gray-500);
  margin-top: var(--space-xs);
}

.footer-links {
  display: flex;
  gap: var(--space-2xl);
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
}

.footer-heading {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--gray-300);
  margin-bottom: var(--space-xs);
}

.footer-link {
  font-size: 0.875rem;
  color: var(--gray-500);
  transition: color 0.3s var(--ease-out);
}

.footer-link:hover {
  color: var(--accent);
}

.footer-bottom {
  padding-top: var(--space-lg);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 0.8rem;
  color: var(--gray-600);
}

/* =========================================
   Animations
   ========================================= */

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

@keyframes scrollPulse {
  0%, 100% {
    opacity: 0.3;
    transform: scaleY(0.6);
    transform-origin: top;
  }
  50% {
    opacity: 1;
    transform: scaleY(1);
    transform-origin: top;
  }
}

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s var(--ease-out-expo), transform 0.8s var(--ease-out-expo);
}

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

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* =========================================
   Responsive
   ========================================= */

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

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

  .contact-grid {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
  }
}

@media (max-width: 768px) {
  .section {
    padding: var(--space-2xl) 0;
  }

  .nav-links {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(10, 22, 40, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: var(--space-lg);
    z-index: 1000;
  }

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

  .nav-links .nav-link {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.8);
  }

  .nav-toggle {
    display: flex;
  }

  .features-grid,
  .mfg-grid {
    grid-template-columns: 1fr;
  }

  .about-stats {
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-xs);
  }

  .stat {
    padding: var(--space-md) var(--space-xs);
  }

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

  .hero-actions {
    flex-direction: column;
    align-items: center;
  }

  .btn {
    width: 100%;
    max-width: 300px;
  }

  .footer-inner {
    flex-direction: column;
    gap: var(--space-xl);
  }
}

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

  .hero-subtitle {
    font-size: 1rem;
  }

  .division-title {
    font-size: 2rem;
  }

  .feature-card,
  .mfg-card {
    padding: var(--space-lg);
  }
}
