/* Lorikeet Inks Design System - Vanilla CSS */
@import url('https://fonts.googleapis.com/css2?family=PT+Sans:wght@400;700&family=Space+Grotesk:wght@400;500;700&display=swap');

:root {
  /* Color Tokens */
  --bg-color: hsl(150, 15%, 98%);       /* Soft green-grey off-white */
  --fg-color: hsl(160, 50%, 8%);        /* Deep charcoal ink-black */
  --primary-color: hsl(155, 70%, 18%);  /* Deep Forest Green */
  --primary-rgb: 15, 68, 46;
  --accent-color: hsl(172, 80%, 32%);   /* Technical Teal */
  --accent-rgb: 13, 148, 136;
  --border-color: hsl(150, 12%, 88%);   /* Soft border */
  --card-bg: hsl(0, 0%, 100%);
  --muted-text: hsl(160, 10%, 40%);
  
  /* Lorikeet Parrot Accents */
  --accent-cobalt: hsl(217, 91%, 56%);
  --accent-coral: hsl(20, 86%, 53%);
  --accent-gold: hsl(43, 96%, 48%);
  
  /* Layout & Animation variables */
  --radius-lg: 12px;
  --radius-md: 8px;
  --radius-sm: 4px;
  --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.05), 0 1px 2px rgba(0,0,0,0.03);
  --shadow-md: 0 4px 6px -1px rgba(0,0,0,0.05), 0 2px 4px -1px rgba(0,0,0,0.03);
  --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.08), 0 4px 6px -2px rgba(0,0,0,0.03);
}

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

body {
  background-color: var(--bg-color);
  color: var(--fg-color);
  font-family: 'PT Sans', sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6, .font-headline {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  line-height: 1.25;
}

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

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

/* Container */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 28px;
  font-family: var(--font-headings);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: var(--transition-smooth);
  border: 1px solid transparent;
}

.btn-primary {
  background-color: var(--accent-color);
  color: #FFFFFF;
  box-shadow: 0 4px 12px rgba(var(--accent-rgb), 0.2);
}

.btn-primary:hover {
  background-color: hsl(172, 80%, 28%);
  box-shadow: 0 6px 16px rgba(var(--accent-rgb), 0.3);
  transform: translateY(-1px);
}

.btn-secondary {
  background-color: var(--primary-color);
  color: #FFFFFF;
}

.btn-secondary:hover {
  background-color: hsl(155, 70%, 14%);
  transform: translateY(-1px);
}

.btn-outline {
  background-color: transparent;
  border-color: rgba(244, 247, 245, 0.2);
  color: #F4F7F5;
}

.btn-outline:hover {
  background-color: rgba(255, 255, 255, 0.05);
  border-color: #FFFFFF;
  color: #FFFFFF;
}

.btn-outline-dark {
  background-color: transparent;
  border-color: var(--border-color);
  color: var(--fg-color);
}

.btn-outline-dark:hover {
  background-color: var(--border-color);
  color: var(--fg-color);
}

/* Sticky Header & Glassmorphism */
header {
  position: sticky;
  top: 0;
  z-index: 100;
  width: 100%;
  border-bottom: 1px solid rgba(15, 68, 46, 0.1);
  background-color: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: var(--transition-smooth);
}

header.scrolled {
  background-color: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow-sm);
  border-bottom-color: var(--border-color);
}

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

header.scrolled .header-inner {
  height: 70px;
}

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

.logo-wrapper {
  padding: 4px;
  background-color: #FFFFFF;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-sm);
}

.logo-img {
  height: 48px;
  width: auto;
  object-fit: contain;
}

.logo-text {
  display: flex;
  flex-col: column;
}

.logo-title {
  color: var(--primary-color);
  font-size: 18px;
  font-weight: 900;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  line-height: 1.1;
}

.logo-subtitle {
  color: var(--muted-text);
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-family: monospace;
}

/* Desktop Navigation */
.desktop-nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-link {
  font-family: var(--font-headings);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: rgba(10, 19, 15, 0.7);
  padding: 8px 0;
  position: relative;
}

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

.nav-link.active {
  color: var(--primary-color);
}

.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background-color: var(--accent-cobalt);
  border-radius: var(--radius-sm);
}

.nav-cta {
  display: flex;
}

/* Mobile Nav Menu Hamburger */
.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  color: var(--fg-color);
}

/* Dot-Matrix Print Background Overlay */
.bg-print-grid {
  background-image: radial-gradient(var(--fg-color) 1.5px, transparent 1.5px);
  background-size: 24px 24px;
}

/* Hero Section Styles */
.hero {
  position: relative;
  background: linear-gradient(135deg, hsl(155, 75%, 10%) 0%, hsl(160, 50%, 6%) 100%);
  color: #F4F7F5;
  padding: 100px 0;
  overflow: hidden;
}

.hero-banner-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.25;
  mix-blend-mode: overlay;
  z-index: 1;
}

.hero-gradient-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, hsl(160, 50%, 6%) 0%, transparent 100%);
  opacity: 0.8;
  z-index: 2;
}

.hero-grid-overlay {
  position: absolute;
  inset: 0;
  opacity: 0.15;
  z-index: 2;
}

.hero-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 48px;
  align-items: center;
  position: relative;
  z-index: 10;
}

.hero-content {
  grid-column: span 7;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background-color: rgba(var(--primary-rgb), 0.45);
  border: 1px solid rgba(var(--accent-rgb), 0.35);
  color: var(--accent-color);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: 50px;
  font-family: monospace;
  margin-bottom: 24px;
}

.hero h1 {
  font-size: 54px;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}

.hero-tagline {
  font-size: 18px;
  color: rgba(244, 247, 245, 0.85);
  max-width: 600px;
  margin-bottom: 36px;
}

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

.hero-visual {
  grid-column: span 5;
  position: relative;
  aspect-ratio: 1 / 1;
}

.hero-visual-blur {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle, rgba(var(--accent-rgb), 0.25) 0%, transparent 70%);
  filter: blur(20px);
  opacity: 0.4;
}

.hero-visual-svg {
  width: 100%;
  height: 100%;
  filter: drop-shadow(0 20px 30px rgba(0,0,0,0.3));
}

/* Features / Advantage Section */
.features-section {
  padding: 100px 0;
}

.section-intro {
  margin-bottom: 64px;
}

.section-label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--accent-color);
  font-weight: 700;
  margin-bottom: 12px;
  display: block;
}

.section-title {
  font-size: 36px;
  max-width: 700px;
  color: var(--fg-color);
}

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

.feature-card {
  background-color: var(--card-bg);
  padding: 40px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(15, 68, 46, 0.08);
  box-shadow: var(--shadow-sm);
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(var(--accent-rgb), 0.4);
}

.feature-icon-wrapper {
  padding: 14px;
  background-color: rgba(var(--primary-rgb), 0.05);
  border-radius: var(--radius-md);
  width: fit-content;
  margin-bottom: 24px;
}

.feature-icon-wrapper svg {
  width: 28px;
  height: 28px;
}

.feature-card h3 {
  font-size: 20px;
  margin-bottom: 12px;
}

.feature-card p {
  font-size: 14px;
  color: var(--muted-text);
  margin-bottom: 32px;
  flex-grow: 1;
}

.feature-stat {
  font-family: monospace;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  display: flex;
  align-items: center;
  gap: 8px;
}

.feature-stat-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

/* Trust Signals Row */
.trust-bar {
  background-color: rgba(var(--primary-rgb), 0.04);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  padding: 32px 0;
}

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

.trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.trust-item svg {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

.trust-title {
  font-family: var(--font-headings);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--fg-color);
}

.trust-desc {
  font-family: monospace;
  font-size: 10px;
  color: var(--muted-text);
  margin-top: 2px;
}

/* Applications Cards Grid */
.applications-section {
  padding: 100px 0;
  background-color: var(--card-bg);
  border-bottom: 1px solid var(--border-color);
}

.section-header-flex {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 64px;
}

.section-header-flex .section-intro {
  margin-bottom: 0;
}

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

.app-card {
  background-color: var(--bg-color);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-color);
  overflow: hidden;
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
}

.app-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.app-img-wrapper {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

.app-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

.app-img-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background-color: rgba(255,255,255,0.8);
  border: 1px solid rgba(255,255,255,0.3);
  backdrop-filter: blur(8px);
  padding: 4px 12px;
  border-radius: 50px;
  font-family: monospace;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
}

.app-content {
  padding: 24px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.app-title-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.app-icon {
  padding: 8px;
  background-color: var(--card-bg);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
  display: flex;
}

.app-icon svg {
  width: 20px;
  height: 20px;
}

.app-content h4 {
  font-size: 18px;
  color: var(--fg-color);
}

.app-desc {
  font-size: 13px;
  color: var(--muted-text);
  line-height: 1.5;
}

/* Manufacturing & R&D Section */
.manufacturing-section {
  padding: 100px 0;
}

.mfg-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 48px;
  align-items: center;
}

.mfg-visual {
  grid-column: span 5;
  background-color: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-sm);
}

.mfg-content {
  grid-column: span 7;
}

.mfg-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 4px 12px;
  background-color: rgba(var(--accent-rgb), 0.1);
  color: var(--accent-color);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border-radius: 50px;
  font-family: monospace;
  margin-bottom: 16px;
}

.mfg-content h2 {
  font-size: 32px;
  margin-bottom: 16px;
}

.mfg-desc {
  color: var(--muted-text);
  margin-bottom: 24px;
}

.mfg-stats-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  border-top: 1px solid var(--border-color);
  padding-top: 24px;
  margin-bottom: 32px;
}

.mfg-stat-num {
  font-size: 32px;
  font-family: var(--font-headings);
  font-weight: 900;
}

.mfg-stat-lbl {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted-text);
  font-family: monospace;
  margin-top: 4px;
}

/* Call to Action Band */
.cta-band {
  background: linear-gradient(135deg, var(--primary-color) 0%, hsl(155, 75%, 12%) 100%);
  color: #FFFFFF;
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-band .bg-print-grid {
  position: absolute;
  inset: 0;
  opacity: 0.1;
}

.cta-band-inner {
  position: relative;
  z-index: 10;
  max-width: 700px;
  margin: 0 auto;
}

.cta-band h2 {
  font-size: 36px;
  margin-bottom: 16px;
}

.cta-band p {
  color: rgba(244, 247, 245, 0.85);
  margin-bottom: 32px;
}

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

/* Product Catalog Cards */
.products-catalog {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.product-card {
  display: flex;
  flex-direction: column;
  background-color: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition-smooth);
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(var(--accent-rgb), 0.4);
}

.product-card-body {
  padding: 24px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.product-card-info {
  margin-bottom: 24px;
}

.product-card-meta {
  font-family: monospace;
  font-size: 9px;
  font-weight: 700;
  color: var(--muted-text);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 8px;
  display: block;
}

.product-card h3 {
  font-size: 20px;
  margin-bottom: 12px;
}

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

.product-desc {
  font-size: 14px;
  color: var(--muted-text);
  line-height: 1.6;
  margin-bottom: 20px;
}

.product-tags-title {
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--fg-color);
  font-family: var(--font-headings);
  font-weight: 700;
  margin-bottom: 8px;
}

.product-tags-flex {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 16px;
}

.tag-app {
  font-size: 10px;
  font-weight: 600;
  background-color: rgba(var(--primary-rgb), 0.05);
  border: 1px solid rgba(var(--primary-rgb), 0.1);
  color: var(--primary-color);
  padding: 2px 8px;
  border-radius: 4px;
}

.product-bullet-list {
  list-style: none;
  margin-bottom: 16px;
}

.product-bullet-list li {
  font-size: 13px;
  color: var(--muted-text);
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 6px;
}

.product-bullet-list li svg {
  width: 14px;
  height: 14px;
  color: var(--accent-color);
  flex-shrink: 0;
}

.color-swatch-row {
  border-top: 1px solid var(--border-color);
  padding-top: 16px;
}

.color-swatch-meta {
  display: flex;
  justify-content: space-between;
  font-family: monospace;
  font-size: 9px;
  color: var(--muted-text);
  font-weight: 700;
  margin-bottom: 8px;
}

.color-dot-stack {
  display: flex;
  gap: 6px;
}

.color-dot {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 1px solid rgba(0,0,0,0.1);
  box-shadow: var(--shadow-sm);
}

/* About Journey Timeline */
.timeline {
  position: relative;
  margin-top: 48px;
}

.timeline-event {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.timeline-event-visual {
  background-color: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-sm);
}

.timeline-event-content h3 {
  font-size: 28px;
  margin-bottom: 16px;
}

.timeline-event-content p {
  color: var(--muted-text);
  font-size: 15px;
  line-height: 1.6;
}

/* QC QA Grid Section */
.qc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.qc-card {
  display: flex;
  gap: 16px;
  padding: 24px;
  background-color: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: var(--transition-smooth);
}

.qc-card:hover {
  border-color: rgba(var(--accent-rgb), 0.4);
}

.qc-icon {
  padding: 10px;
  background-color: rgba(var(--primary-rgb), 0.05);
  border: 1px solid rgba(var(--primary-rgb), 0.1);
  border-radius: var(--radius-md);
  height: fit-content;
}

.qc-icon svg {
  width: 22px;
  height: 22px;
  display: block;
}

.qc-card-body h4 {
  font-size: 16px;
  margin-bottom: 8px;
}

.qc-card-body p {
  font-size: 12.5px;
  color: var(--muted-text);
  line-height: 1.5;
}

/* Contact Layout Grid */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 48px;
  align-items: start;
}

.contact-info-col {
  grid-column: span 5;
}

.contact-card-dark {
  background-color: #0A130F;
  color: #FFFFFF;
  padding: 40px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(15, 68, 46, 0.2);
  box-shadow: var(--shadow-md);
  margin-bottom: 32px;
}

.contact-card-dark h2 {
  font-size: 24px;
  margin-bottom: 24px;
  border-bottom: 1px solid rgba(255,255,255,0.10);
  padding-bottom: 16px;
}

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

.contact-detail-row {
  display: flex;
  align-items: start;
  gap: 16px;
}

.contact-detail-icon {
  background-color: rgba(var(--primary-rgb), 0.3);
  padding: 10px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(var(--primary-rgb), 0.4);
  display: flex;
  color: var(--accent-color);
}

.contact-detail-icon svg {
  width: 20px;
  height: 20px;
}

.contact-detail-lbl {
  font-family: var(--font-headings);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.5);
  margin-bottom: 4px;
}

.contact-detail-val {
  font-size: 14px;
  color: rgba(255,255,255,0.95);
}

.contact-detail-val a:hover {
  color: var(--accent-color);
}

.map-wrapper {
  background-color: var(--card-bg);
  padding: 24px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

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

.map-title {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-headings);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.map-title svg {
  width: 16px;
  height: 16px;
}

.map-meta {
  font-family: monospace;
  font-size: 10px;
  color: var(--muted-text);
}

.map-svg-container {
  aspect-ratio: 4 / 3;
  background-color: #0A130F;
  border-radius: var(--radius-md);
  border: 1px solid rgba(15, 68, 46, 0.2);
  overflow: hidden;
}

.map-caption {
  font-size: 11px;
  color: var(--muted-text);
  line-height: 1.5;
}

/* Contact Form */
.contact-form-col {
  grid-column: span 7;
}

.form-intro-row {
  margin-bottom: 24px;
}

.form-intro-row h2 {
  font-size: 32px;
  margin-bottom: 8px;
}

.form-intro-row p {
  font-size: 14px;
  color: var(--muted-text);
}

.form-card {
  background-color: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  padding: 32px;
}

.form-row-2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 24px;
}

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

.form-group-last {
  margin-bottom: 0;
}

label.form-label {
  display: block;
  font-family: var(--font-headings);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: rgba(10, 19, 15, 0.8);
  margin-bottom: 8px;
}

.form-control {
  width: 100%;
  height: 44px;
  background-color: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 0 16px;
  font-family: inherit;
  font-size: 14px;
  color: var(--fg-color);
  transition: var(--transition-smooth);
}

textarea.form-control {
  height: 120px;
  padding: 12px 16px;
  resize: none;
}

.form-control:focus {
  outline: none;
  border-color: var(--accent-color);
  box-shadow: 0 0 0 3px rgba(var(--accent-rgb), 0.1);
}

.form-group.has-error .form-control {
  border-color: var(--accent-coral);
  background-color: hsl(20, 100%, 99%);
}

.form-group.has-error label.form-label {
  color: var(--accent-coral);
}

.form-error-msg {
  font-size: 11px;
  color: var(--accent-coral);
  font-weight: 700;
  margin-top: 6px;
  display: none;
}

.form-group.has-error .form-error-msg {
  display: block;
}

.hidden-trap {
  display: none !important;
}

/* Contact Toast Container & Styling */
#toast-container {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  gap: 12px;
  pointer-events: none;
}

.toast {
  background-color: var(--card-bg);
  border-left: 4px solid var(--accent-color);
  box-shadow: var(--shadow-lg);
  border-radius: var(--radius-md);
  padding: 16px 24px;
  width: 320px;
  pointer-events: auto;
  display: flex;
  gap: 12px;
  align-items: start;
  transform: translateY(100px);
  opacity: 0;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.toast.show {
  transform: translateY(0);
  opacity: 1;
}

.toast-icon {
  color: var(--accent-color);
  flex-shrink: 0;
}

.toast-content h4 {
  font-size: 14px;
  margin-bottom: 2px;
}

.toast-content p {
  font-size: 12px;
  color: var(--muted-text);
  line-height: 1.4;
}

/* Page Sub-Hero Banner Header */
.subpage-hero {
  position: relative;
  background: linear-gradient(135deg, hsl(155, 75%, 10%) 0%, hsl(160, 50%, 6%) 100%);
  color: #FFFFFF;
  padding: 80px 0;
  text-align: center;
  overflow: hidden;
}

.subpage-hero-banner {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.25;
  mix-blend-mode: overlay;
  z-index: 1;
}

.subpage-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, hsl(160, 50%, 6%) 0%, transparent 100%);
  opacity: 0.8;
  z-index: 2;
}

.subpage-hero-inner {
  position: relative;
  z-index: 10;
  max-width: 700px;
  margin: 0 auto;
}

.subpage-hero-badge {
  display: inline-flex;
  padding: 4px 14px;
  background-color: rgba(var(--accent-rgb), 0.2);
  border: 1px solid rgba(var(--accent-rgb), 0.4);
  color: var(--accent-color);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border-radius: 50px;
  font-family: monospace;
  margin-bottom: 16px;
}

.subpage-hero h1 {
  font-size: 38px;
  margin-bottom: 16px;
}

.subpage-hero p {
  color: rgba(244, 247, 245, 0.85);
  font-size: 15px;
}

/* Footer Section */
footer {
  background-color: #0A130F;
  color: #F4F7F5;
  border-top: 1px solid rgba(15, 68, 46, 0.2);
  padding: 64px 0 32px;
}

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

.footer-col-brand {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer-brand-title {
  color: #FFFFFF;
}

.footer-desc {
  font-size: 13.5px;
  color: rgba(244, 247, 245, 0.7);
  max-width: 320px;
  line-height: 1.6;
}

.footer-badge-voc {
  font-family: monospace;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--accent-color);
  background-color: rgba(var(--primary-rgb), 0.2);
  border: 1px solid rgba(var(--primary-rgb), 0.3);
  padding: 6px 14px;
  border-radius: 50px;
  width: fit-content;
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-col-links h3 {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: rgba(244, 247, 245, 0.5);
  margin-bottom: 24px;
}

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

.footer-links-list a {
  font-family: var(--font-headings);
  font-size: 13.5px;
  color: rgba(244, 247, 245, 0.8);
}

.footer-links-list a:hover {
  color: var(--accent-color);
  padding-left: 4px;
}

.footer-col-contact h3 {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: rgba(244, 247, 245, 0.5);
  margin-bottom: 24px;
}

.footer-contact-block {
  margin-bottom: 20px;
}

.footer-contact-lbl {
  font-size: 12px;
  color: white;
  font-weight: 700;
}

.footer-contact-val {
  font-size: 13.5px;
  color: rgba(244, 247, 245, 0.8);
  margin-top: 4px;
  display: flex;
  flex-direction: column;
}

.footer-contact-val a {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 4px;
}

.footer-contact-val a:hover {
  color: var(--accent-color);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 11.5px;
  color: rgba(244, 247, 245, 0.5);
}

.footer-bottom-badges span {
  margin-left: 20px;
}

/* Mobile Drawer Overlay Navigation styles */
.mobile-nav-overlay {
  position: fixed;
  inset: 0;
  background-color: rgba(10, 19, 15, 0.4);
  z-index: 200;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.mobile-nav-overlay.open {
  opacity: 1;
  pointer-events: auto;
}

.mobile-nav-drawer {
  position: fixed;
  top: 0;
  right: -300px;
  width: 300px;
  height: 100%;
  background-color: var(--card-bg);
  border-left: 1px solid var(--border-color);
  z-index: 210;
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: var(--shadow-lg);
  transition: right 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.mobile-nav-overlay.open .mobile-nav-drawer {
  right: 0;
}

.mobile-nav-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
}

.mobile-close-btn {
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  color: var(--fg-color);
}

.mobile-nav-links {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.mobile-nav-link {
  font-family: var(--font-headings);
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 8px 0;
  border-bottom: 1px solid rgba(15, 68, 46, 0.05);
}

.mobile-nav-link.active {
  color: var(--primary-color);
  border-left: 4px solid var(--accent-cobalt);
  padding-left: 8px;
}

/* Responsiveness Styling Breakpoints */
@media (max-width: 1024px) {
  .hero-grid {
    gap: 32px;
  }
  
  .hero h1 {
    font-size: 42px;
  }
  
  .features-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  
  .apps-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .products-catalog {
    grid-template-columns: 1.5fr;
    justify-content: center;
    gap: 24px;
  }
  
  .mfg-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  
  .mfg-visual {
    grid-column: span 1;
    max-width: 400px;
    margin: 0 auto;
  }
  
  .mfg-content {
    grid-column: span 1;
  }
  
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .contact-info-col {
    grid-column: span 1;
  }
  
  .contact-form-col {
    grid-column: span 1;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .footer-col-brand, .footer-col-links, .footer-col-contact {
    align-items: center;
    text-align: center;
  }
  
  .footer-contact-val {
    align-items: center;
  }
  
  .footer-bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }
  
  .footer-bottom-badges span {
    margin: 0 10px;
    display: inline-block;
  }
}

@media (max-width: 768px) {
  .container {
    padding: 0 16px;
  }
  
  .desktop-nav, .nav-cta {
    display: none;
  }
  
  .mobile-menu-btn {
    display: block;
  }
  
  .hero-grid {
    grid-template-columns: 1fr;
  }
  
  .hero-content {
    grid-column: span 1;
    text-align: center;
  }
  
  .hero-badge {
    justify-content: center;
  }
  
  .hero-ctas {
    justify-content: center;
  }
  
  .hero-visual {
    grid-column: span 1;
    max-width: 280px;
    margin: 0 auto;
  }
  
  .trust-grid {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }
  
  .section-header-flex {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
  
  .form-row-2col {
    grid-template-columns: 1fr;
    gap: 0;
  }
  
  .timeline-event {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  
  .timeline-event-visual {
    order: 2;
    max-width: 320px;
    margin: 0 auto;
  }
  
  .qc-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}
