@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

/* ===== CSS Variables ===== */
:root {
  --background: #ffffff;
  --foreground: #1e2a3a;
  --card: #ffffff;
  --card-foreground: #1e2a3a;
  --primary: hsl(220, 50%, 18%);
  --primary-foreground: #ffffff;
  --secondary: hsl(210, 14%, 50%);
  --secondary-foreground: #ffffff;
  --muted: hsl(210, 25%, 96%);
  --muted-foreground: hsl(210, 14%, 45%);
  --accent: hsl(215, 20%, 95%);
  --accent-foreground: hsl(220, 50%, 18%);
  --border: hsl(214, 22%, 90%);
  --highlight: hsl(205, 85%, 45%);
  --highlight-foreground: #ffffff;
  --radius: 0.625rem;
  --shadow-sm: 0 1px 2px 0 rgba(27,42,74,0.04);
  --shadow-md: 0 4px 12px -2px rgba(27,42,74,0.08), 0 2px 4px -2px rgba(27,42,74,0.04);
  --shadow-lg: 0 12px 32px -4px rgba(27,42,74,0.12), 0 4px 8px -2px rgba(27,42,74,0.06);
  --shadow-xl: 0 20px 48px -8px rgba(27,42,74,0.16), 0 8px 16px -4px rgba(27,42,74,0.08);
}

/* ===== Reset & Base ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
body {
  font-family: 'Inter', sans-serif;
  color: var(--foreground);
  background: var(--background);
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
}
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; height: auto; display: block; }
button { cursor: pointer; border: none; font-family: inherit; }
input, textarea { font-family: inherit; }

/* ===== Container ===== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ===== Utility ===== */
.industrial-pattern {
  background-image: radial-gradient(circle at 1px 1px, rgba(30,42,58,0.03) 1px, transparent 0);
  background-size: 24px 24px;
}
.section-gradient {
  background: linear-gradient(180deg, var(--accent) 0%, var(--background) 100%);
}

/* ===== Navbar ===== */
.navbar {
  position: sticky;
  top: 0;
  z-index: 50;
  width: 100%;
  border-bottom: 1px solid rgba(214,220,228,0.5);
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
}
.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.navbar-brand {
  display: flex;
  align-items: center;
  gap: 0.625rem;
}
.navbar-brand .logo-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: var(--primary);
  box-shadow: var(--shadow-sm);
  color: var(--primary-foreground);
  font-size: 18px;
  font-weight: 800;
}
.navbar-brand span {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.02em;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--muted-foreground);
  transition: color 0.2s;
}
.nav-links a:hover, .nav-links a.active { color: var(--primary); }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.375rem;
  font-weight: 600;
  border-radius: 12px;
  transition: all 0.3s;
}
.btn-primary {
  background: var(--primary);
  color: var(--primary-foreground);
  box-shadow: var(--shadow-sm);
}
.btn-primary:hover { opacity: 0.9; box-shadow: var(--shadow-md); }
.btn-highlight {
  background: var(--highlight);
  color: var(--highlight-foreground);
  box-shadow: var(--shadow-lg);
}
.btn-highlight:hover { opacity: 0.9; transform: translateY(-2px); box-shadow: var(--shadow-xl); }
.btn-outline {
  background: transparent;
  color: var(--primary-foreground);
  border: 1px solid rgba(255,255,255,0.25);
  backdrop-filter: blur(4px);
}
.btn-outline:hover { background: rgba(255,255,255,0.1); }
.btn-sm { height: 36px; padding: 0 20px; font-size: 14px; }
.btn-lg { height: 52px; padding: 0 36px; font-size: 16px; }
.btn-full { width: 100%; }
.mobile-toggle {
  display: none;
  background: none;
  padding: 8px;
  border-radius: 8px;
  color: var(--foreground);
}
.mobile-toggle svg { width: 20px; height: 20px; }
.mobile-nav {
  display: none;
  border-top: 1px solid var(--border);
  background: var(--background);
  padding: 0.5rem 1rem 1rem;
}
.mobile-nav.open { display: block; }
.mobile-nav a {
  display: block;
  padding: 0.625rem 0;
  font-size: 14px;
  font-weight: 500;
  color: var(--muted-foreground);
}
.mobile-nav a:hover { color: var(--primary); }
.mobile-nav .btn { margin-top: 0.75rem; width: 100%; }

/* ===== Hero Section ===== */
.hero {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 700px;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}
.hero-overlay-1 {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right,
    rgba(27,42,74,0.97),
    rgba(27,42,74,0.90),
    rgba(27,42,74,0.65));
}
.hero-overlay-2 {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent, transparent 60%, rgba(27,42,74,0.4));
}
.hero-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.3;
}
.hero .container { position: relative; z-index: 10; padding-top: 7rem; padding-bottom: 7rem; }
.hero-content { max-width: 640px; }
.trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.15);
  background: rgba(255,255,255,0.08);
  padding: 0.5rem 1.25rem;
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,0.9);
  backdrop-filter: blur(4px);
  box-shadow: var(--shadow-sm);
  margin-bottom: 2rem;
}
.trust-badge svg { color: var(--highlight); }
.hero h1 {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: var(--primary-foreground);
  margin-bottom: 1.75rem;
  text-wrap: balance;
}
.hero p.subtitle {
  max-width: 540px;
  font-size: clamp(1rem, 2vw, 1.25rem);
  line-height: 1.7;
  color: rgba(255,255,255,0.7);
  margin-bottom: 3rem;
}
.hero-buttons { display: flex; flex-wrap: wrap; gap: 1rem; }
.hero-stats {
  display: flex;
  gap: 2.5rem;
  margin-top: 4rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.hero-stats .stat-number {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--primary-foreground);
}
.hero-stats .stat-label {
  font-size: 12px;
  color: rgba(255,255,255,0.5);
  margin-top: 2px;
}
.hero-fade {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 128px;
  background: linear-gradient(to top, var(--background), transparent);
}

/* ===== Section Headers ===== */
.section-header {
  text-align: center;
  margin-bottom: 4rem;
}
.section-label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--highlight);
  margin-bottom: 0.75rem;
}
.section-title {
  font-size: clamp(1.75rem, 3vw, 3rem);
  font-weight: 700;
  color: var(--foreground);
  margin-bottom: 1.25rem;
}
.section-desc {
  max-width: 640px;
  margin: 0 auto;
  font-size: 1.125rem;
  color: var(--muted-foreground);
}

/* ===== Products Section ===== */
.products-section { padding: 7rem 0; }
.products-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(4, 1fr);
}
.product-card {
  background: var(--card);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: all 0.5s;
}
.product-card:hover {
  box-shadow: var(--shadow-xl);
  transform: translateY(-8px);
}
.product-card .card-img {
  aspect-ratio: 4/3;
  overflow: hidden;
}
.product-card .card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s;
}
.product-card:hover .card-img img { transform: scale(1.1); }
.product-card .card-body { padding: 1.75rem; }
.product-card h3 { font-size: 18px; font-weight: 700; margin-bottom: 0.625rem; }
.product-card p { font-size: 14px; line-height: 1.7; color: var(--muted-foreground); }

/* ===== Capabilities Preview ===== */
.capabilities-section { background: var(--accent); padding: 7rem 0; }
.capabilities-grid {
  display: grid;
  gap: 4rem;
  grid-template-columns: 1fr 1fr;
  align-items: center;
}
.capabilities-list { list-style: none; }
.capabilities-list li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.25rem;
}
.capabilities-list .check-icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(25,147,211,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}
.capabilities-list .check-icon svg { width: 16px; height: 16px; color: var(--highlight); }
.capabilities-list span { font-size: 16px; font-weight: 500; }
.capabilities-image { position: relative; }
.capabilities-image img {
  width: 100%;
  border-radius: 24px;
  box-shadow: var(--shadow-xl);
}
.floating-card {
  position: absolute;
  bottom: -32px;
  left: -32px;
  background: var(--primary);
  padding: 1.5rem;
  border-radius: 16px;
  box-shadow: var(--shadow-xl);
}
.floating-card .big-number { font-size: 2.5rem; font-weight: 800; color: var(--primary-foreground); }
.floating-card .small-text { font-size: 14px; color: rgba(255,255,255,0.6); margin-top: 4px; }
.decorative-ring {
  position: absolute;
  top: -16px;
  right: -16px;
  width: 96px;
  height: 96px;
  border-radius: 50%;
  border: 4px solid rgba(25,147,211,0.2);
}

/* ===== Trust Section ===== */
.trust-section { padding: 7rem 0; }
.trust-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(3, 1fr);
}
.trust-card {
  background: var(--card);
  border-radius: 16px;
  box-shadow: var(--shadow-md);
  text-align: center;
  padding: 2.5rem;
  transition: all 0.5s;
}
.trust-card:hover {
  box-shadow: var(--shadow-xl);
  transform: translateY(-4px);
}
.trust-card .icon-wrap {
  width: 72px;
  height: 72px;
  border-radius: 16px;
  background: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.75rem;
  transition: all 0.3s;
}
.trust-card:hover .icon-wrap { background: rgba(25,147,211,0.1); box-shadow: var(--shadow-sm); }
.trust-card .icon-wrap svg { width: 32px; height: 32px; color: var(--primary); transition: color 0.3s; }
.trust-card:hover .icon-wrap svg { color: var(--highlight); }
.trust-card h3 { font-size: 1.25rem; font-weight: 700; margin-bottom: 0.75rem; }
.trust-card p { font-size: 16px; line-height: 1.7; color: var(--muted-foreground); }

/* ===== Story Section ===== */
.story-section {
  position: relative;
  overflow: hidden;
  background: var(--primary);
  padding: 7rem 0;
}
.story-section .overlay-pattern { position: absolute; inset: 0; opacity: 0.15; }
.story-section .overlay-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent, rgba(27,42,74,0.5), var(--primary));
}
.story-content {
  position: relative;
  z-index: 10;
  max-width: 768px;
  margin: 0 auto;
  text-align: center;
}
.story-content .section-label { color: rgba(255,255,255,0.4); }
.story-content h2 { color: var(--primary-foreground); margin-bottom: 2rem; }
.story-content p { color: rgba(255,255,255,0.7); font-size: 1.125rem; line-height: 1.8; margin-bottom: 1.5rem; }
.story-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  margin-top: 4rem;
  padding-top: 3rem;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.story-stats .stat-number {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--primary-foreground);
}
.story-stats .stat-label {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  margin-top: 0.5rem;
}

/* ===== Contact Preview ===== */
.contact-section { padding: 7rem 0; }
.contact-grid {
  display: grid;
  gap: 4rem;
  grid-template-columns: 1fr 1fr;
}
.contact-info-list li {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin-bottom: 1.5rem;
}
.contact-info-list .info-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 16px;
  background: var(--accent);
  box-shadow: var(--shadow-sm);
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact-info-list .info-icon svg { width: 20px; height: 20px; color: var(--primary); }
.contact-info-list .info-label {
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted-foreground);
  margin-bottom: 2px;
}
.contact-info-list .info-value { font-weight: 600; }
.contact-form-card {
  background: var(--card);
  border-radius: 24px;
  box-shadow: var(--shadow-xl);
  padding: 2.5rem;
}
.contact-form-card h3 { font-size: 1.25rem; font-weight: 700; margin-bottom: 0.5rem; }
.contact-form-card .form-desc { font-size: 14px; color: var(--muted-foreground); margin-bottom: 2rem; }
.form-row {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr 1fr;
  margin-bottom: 1.5rem;
}
.form-group { margin-bottom: 1.5rem; }
.form-group:last-of-type { margin-bottom: 0; }
.form-group label {
  display: block;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 0.5rem;
}
.form-group input,
.form-group textarea {
  width: 100%;
  border: 1px solid rgba(214,220,228,0.6);
  border-radius: 12px;
  padding: 0 1rem;
  font-size: 14px;
  background: rgba(239,241,245,0.5);
  transition: all 0.2s;
  outline: none;
}
.form-group input { height: 48px; }
.form-group textarea { padding: 0.75rem 1rem; resize: vertical; min-height: 100px; }
.form-group input:focus,
.form-group textarea:focus {
  background: var(--background);
  border-color: var(--highlight);
  box-shadow: 0 0 0 3px rgba(25,147,211,0.1);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--muted-foreground); opacity: 0.7; }

/* ===== Footer ===== */
.footer {
  border-top: 1px solid var(--border);
  background: var(--primary);
  color: var(--primary-foreground);
}
.footer .container { padding-top: 3.5rem; padding-bottom: 3.5rem; }
.footer-grid {
  display: grid;
  gap: 2.5rem;
  grid-template-columns: repeat(3, 1fr);
}
.footer-brand .logo-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: var(--primary-foreground);
  color: var(--primary);
  font-size: 14px;
  font-weight: 800;
  margin-right: 0.625rem;
  vertical-align: middle;
}
.footer-brand .brand-name { font-size: 18px; font-weight: 700; vertical-align: middle; }
.footer-brand p { margin-top: 1.25rem; font-size: 14px; line-height: 1.7; color: rgba(255,255,255,0.6); }
.footer h4 {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: rgba(255,255,255,0.4);
  margin-bottom: 1.25rem;
}
.footer-links li { margin-bottom: 0.625rem; }
.footer-links a { font-size: 14px; color: rgba(255,255,255,0.6); transition: color 0.2s; }
.footer-links a:hover { color: var(--primary-foreground); }
.footer-contact li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  margin-bottom: 0.75rem;
}
.footer-contact svg { width: 16px; height: 16px; flex-shrink: 0; }
.footer-bottom {
  margin-top: 3rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  text-align: center;
  font-size: 12px;
  color: rgba(255,255,255,0.4);
}

/* ===== Page Heroes (Capabilities, Contact) ===== */
.page-hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--primary) 0%, hsl(220,45%,24%) 50%, hsl(215,40%,28%) 100%);
  padding: 5rem 0;
}
.page-hero .overlay { position: absolute; inset: 0; opacity: 0.2; }
.page-hero .container { position: relative; z-index: 10; }
.page-hero .section-label { color: rgba(255,255,255,0.5); }
.page-hero h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--primary-foreground);
  margin-bottom: 1.25rem;
}
.page-hero p { font-size: 1.125rem; line-height: 1.7; color: rgba(255,255,255,0.75); max-width: 640px; }

/* ===== Services Grid ===== */
.services-section { padding: 6rem 0; }
.services-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(3, 1fr);
}
.service-card {
  background: var(--card);
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  padding: 1.75rem;
  transition: all 0.3s;
}
.service-card:hover {
  box-shadow: var(--shadow-xl);
  transform: translateY(-4px);
}
.service-card .service-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--accent);
  box-shadow: var(--shadow-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  transition: background 0.3s;
}
.service-card:hover .service-icon { background: rgba(25,147,211,0.1); }
.service-card .service-icon svg { width: 24px; height: 24px; color: var(--primary); transition: color 0.3s; }
.service-card:hover .service-icon svg { color: var(--highlight); }
.service-card h3 { font-size: 18px; font-weight: 700; margin-bottom: 0.75rem; }
.service-card p { font-size: 14px; line-height: 1.7; color: var(--muted-foreground); }

/* ===== Process Section ===== */
.process-section { background: var(--accent); padding: 6rem 0; }
.process-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(4, 1fr);
}
.process-step { text-align: center; position: relative; }
.process-step .step-number {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  background: var(--primary);
  color: var(--primary-foreground);
  font-size: 1.5rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  box-shadow: var(--shadow-md);
}
.process-step h3 { font-size: 18px; font-weight: 700; margin-bottom: 0.5rem; }
.process-step p { font-size: 14px; line-height: 1.7; color: var(--muted-foreground); }

/* ===== Equipment Section ===== */
.equipment-section { padding: 6rem 0; }
.equipment-grid {
  display: grid;
  gap: 4rem;
  grid-template-columns: 1fr 1fr;
  align-items: center;
}
.equipment-image img { border-radius: 16px; box-shadow: var(--shadow-xl); width: 100%; }
.equipment-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1rem;
}
.equipment-list .check {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(25,147,211,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}
.equipment-list .check svg { width: 16px; height: 16px; color: var(--highlight); }
.equipment-list span { font-weight: 500; }

/* ===== CTA Section ===== */
.cta-section {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--primary), hsl(220,45%,24%), hsl(215,40%,28%));
  padding: 5rem 0;
  text-align: center;
}
.cta-section .overlay { position: absolute; inset: 0; opacity: 0.2; }
.cta-section .container { position: relative; z-index: 10; }
.cta-section h2 {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 700;
  color: var(--primary-foreground);
  margin-bottom: 1.25rem;
}
.cta-section p { max-width: 540px; margin: 0 auto 2.5rem; font-size: 1.125rem; color: rgba(255,255,255,0.75); }

/* ===== Contact Page ===== */
.contact-page-section { padding: 6rem 0; }
.contact-page-grid {
  display: grid;
  gap: 3.5rem;
  grid-template-columns: 1fr 1fr;
}
.contact-page-form {
  background: var(--card);
  border-radius: var(--radius);
  box-shadow: var(--shadow-xl);
  padding: 2rem;
}
.contact-page-form h2 { font-size: 1.5rem; font-weight: 700; margin-bottom: 0.5rem; }
.contact-page-form .form-desc { font-size: 14px; color: var(--muted-foreground); margin-bottom: 2rem; }
.contact-details h2 { font-size: 1.5rem; font-weight: 700; margin-bottom: 2rem; }
.contact-details-list li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.contact-details-list .detail-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--accent);
  box-shadow: var(--shadow-sm);
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact-details-list .detail-icon svg { width: 20px; height: 20px; color: var(--primary); }
.contact-details-list .detail-label { font-size: 14px; font-weight: 500; color: var(--muted-foreground); }
.contact-details-list .detail-value { font-weight: 500; }
.map-placeholder {
  border-radius: 16px;
  border: 1px solid var(--border);
  background: var(--accent);
  box-shadow: var(--shadow-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  height: 256px;
  margin-top: 3rem;
}
.map-placeholder .map-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(27,42,74,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 0.75rem;
}
.map-placeholder .map-icon svg { width: 24px; height: 24px; color: var(--primary); }
.map-placeholder p { font-weight: 500; }
.map-placeholder .map-sub { font-size: 14px; color: var(--muted-foreground); }

/* ===== Responsive ===== */
@media (max-width: 1024px) {
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .capabilities-grid,
  .contact-grid,
  .equipment-grid,
  .contact-page-grid { grid-template-columns: 1fr; }
  .floating-card, .decorative-ring { display: none; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .nav-links { display: none; }
  .mobile-toggle { display: inline-flex; }
  .products-grid { grid-template-columns: 1fr; }
  .trust-grid { grid-template-columns: 1fr; }
  .story-stats { grid-template-columns: 1fr; gap: 1.5rem; }
  .hero-stats { flex-direction: column; gap: 1rem; }
  .footer-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: 1fr; }
}
