/* =====================================================
   ROOT VARIABLES
===================================================== */
:root {
	--blue: #0b3c78;
	--blue-dark: #082c57;
	--orange: #f59e0b;
	--gray: #f4f6f8;
	--text: #1f2937;
}

/* =====================================================
   RESET
===================================================== */
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	font-family: Inter, Arial, sans-serif;
	color: var(--text);
	line-height: 1.6;
	background: #fff;
}

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

a {
	text-decoration: none;
	color: inherit;
	transition: color .25s ease, transform .25s ease;
}

.container {
	max-width: 1200px;
	margin: auto;
	padding: 0 20px;
}

/* =====================================================
   HEADER / NAV (DESKTOP)
===================================================== */
.site-header {
	position: sticky;
	top: 0;
	z-index: 999;
	background: #fff;
	border-bottom: 1px solid #e5e7eb;
}

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

.logo {
	font-weight: 700;
	font-size: 20px;
	color: var(--blue);
}

.main-nav {
	display: flex;
}

.main-nav ul {
	display: flex;
	gap: 32px;
	list-style: none;
}

.main-nav a {
	font-weight: 500;
}

.main-nav a:hover {
	color: var(--orange);
}

/* =====================================================
   MOBILE MENU TOGGLE
===================================================== */

.hero-image {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
}

.hero-image img {
	width: 100%;
	max-width: 520px;
	height: auto;
	object-fit: contain;
	filter: drop-shadow(0 30px 60px rgba(0, 0, 0, .15));
}

.menu-toggle {
	display: none;
	flex-direction: column;
	gap: 6px;
	background: none;
	border: none;
	cursor: pointer;
}

.menu-toggle span {
	width: 24px;
	height: 2px;
	background: #111827;
}

/* =====================================================
   MOBILE OVERLAY
===================================================== */
.nav-overlay {
	position: fixed;
	inset: 0;
	background: rgba(0, 0, 0, .45);
	opacity: 0;
	pointer-events: none;
	transition: .3s;
	z-index: 5;
}

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

/* =====================================================
   HERO
===================================================== */
.hero {
	padding: 80px 0;
	background: linear-gradient(135deg, #f8fafc, #ffffff);
}

.hero-inner {
	display: grid;
	grid-template-columns: 1.1fr .9fr;
	gap: 48px;
	align-items: center;
}

.hero h1 {
	font-size: 44px;
	line-height: 1.2;
	color: #020617;
}

.hero p {
	margin: 24px 0;
	max-width: 520px;
}

.btn-group {
	display: flex;
	gap: 16px;
	margin-top: 20px;
}

.btn-primary {
	background: var(--orange);
	color: #fff;
	padding: 14px 28px;
	font-weight: 600;
	border-radius: 8px;
}

.btn-primary:hover {
	transform: translateY(-2px);
	box-shadow: 0 12px 24px rgba(245, 158, 11, .35);
}

.btn-secondary {
	border: 1px solid var(--blue);
	color: var(--blue);
	padding: 14px 28px;
	border-radius: 8px;
}

.btn-secondary:hover {
	background: var(--blue);
	color: #fff;
}

/* =====================================================
   FEATURES
===================================================== */
.features {
	padding: 37px 0;
	background: var(--gray);
}

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

.feature-item {
	background: #fff;
	padding: 32px;
	border-radius: 16px;
	transition: .3s;
}

.feature-item:hover {
	transform: translateY(-6px);
	box-shadow: 0 18px 36px rgba(2, 6, 23, .08);
}

/* =====================================================
   TRUST MODULE
===================================================== */
.trust {
	padding: 35px 0;
}

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

.trust-item {
	padding: 32px;
	border: 1px solid #e5e7eb;
	border-radius: 16px;
	transition: .3s;
}

.trust-item:hover {
	transform: translateY(-6px);
	box-shadow: 0 18px 36px rgba(2, 6, 23, .08);
}

/* =====================================================
   APPLICATIONS
===================================================== */
.applications {
	padding: 37px 0;
	background: #f4f6f8;
}

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

.application-item {
	background: #fff;
	padding: 32px;
	border-radius: 16px;
	transition: .3s;
}

.application-item:hover {
	transform: translateY(-6px);
	box-shadow: 0 18px 36px rgba(2, 6, 23, .08);
}

/* =====================================================
   CTA
===================================================== */
.cta {
	padding: 80px 0;
	background: var(--blue);
	color: #fff;
	text-align: center;
}

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

/* =====================================================
   FOOTER
===================================================== */
.site-footer {
	background: #020617;
	color: #9ca3af;
	padding: 40px 0;
	font-size: 14px;
}

/* =====================================================
   MOBILE ONLY
===================================================== */
.nav-close {
	display: none;
}

@media (max-width:768px) {

	.menu-toggle {
		display: flex;
	}

	.main-nav {
		position: fixed;
		top: 0;
		right: -100%;
		width: 280px;
		height: 100vh;
		background: #fff;
		padding: 88px 24px 24px;
		transition: .35s cubic-bezier(.4, 0, .2, 1);
		z-index: 1001;
		display: block;
	}

	.main-nav.open {
		right: 0;
	}

	.main-nav ul {
		flex-direction: column;
		gap: 24px;
	}

	.nav-close {
		display: block;
		position: absolute;
		top: 24px;
		right: 24px;
		background: none;
		border: none;
		font-size: 22px;
		cursor: pointer;
		color: #111827;
	}

	.hero-inner {
		grid-template-columns: 1fr;
	}

	.feature-grid,
	.trust-grid,
	.application-grid {
		grid-template-columns: 1fr;
	}

	.hero h1 {
		font-size: 32px;
	}

	.cta h2 {
		font-size: 26px;
	}
}

/* =====================================================
   ✅ ADDITIONS BELOW (NO OVERWRITE GUARANTEE)
   Automatic Checkweigher Product Page
===================================================== */

.acw-product-hero {
	padding: 80px 0;
	background: linear-gradient(135deg, #ffffff, #f8fafc);
}

.acw-product-hero h1 {
	font-size: 42px;
	margin-bottom: 16px;
}

.acw-product-hero p {
	max-width: 680px;
}

.acw-specs {
	padding: 37px 0;
	background: var(--gray);
}

.acw-spec-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 32px;
	margin-top: 20px;
}

.acw-spec-item {
	background: #fff;
	padding: 32px;
	border-radius: 16px;
	border-left: 4px solid var(--orange);
}

/* =====================================================
   Applications Detail Pages (Food / Pharma / Packaging)
===================================================== */

.app-detail-hero {
	padding: 80px 0;
	background: #fff;
}

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

.app-detail-points {
	margin-top: 24px;
}

.app-detail-points li {
	margin-bottom: 12px;
	list-style: disc;
	margin-left: 20px;
}

@media (max-width:768px) {
	.acw-spec-grid,
	.app-detail-grid {
		grid-template-columns: 1fr;
	}
}
/* Automatic Checkweigher – Tech Emphasis */
.acw-tech-card {
	position: relative;
}

.acw-tech-card::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 4px;
	background: linear-gradient(90deg, var(--orange), var(--blue));
	border-radius: 16px 16px 0 0;
}
.acw-spec-note {
	margin-top: 24px;
	max-width: 720px;
	font-size: 15px;
	color: #4b5563;
}
/* =====================================================
   Manufacturer Trust Bar (B2B Authority Module)
===================================================== */

.manufacturer-trust {
	padding: 35px 0;
	background: #ffffff;
}

.manufacturer-trust h2 {
	font-size: 32px;
	text-align: center;
	margin-bottom: 40px;
	color: #020617;
}

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

.manufacturer-trust-item {
	background: #f8fafc;
	border: 1px solid #e5e7eb;
	border-radius: 16px;
	padding: 28px;
	transition: .3s;
}

.manufacturer-trust-item h3 {
	font-size: 18px;
	margin-bottom: 12px;
	color: var(--blue);
}

.manufacturer-trust-item p {
	font-size: 15px;
	color: #4b5563;
	line-height: 1.6;
}

.manufacturer-trust-item:hover {
	transform: translateY(-6px);
	box-shadow: 0 18px 36px rgba(2, 6, 23, .08);
}

@media (max-width: 768px) {
	.manufacturer-trust-grid {
		grid-template-columns: 1fr;
	}
}

/* ===============================
   Automatic Checkweigher Submenu
   =============================== */

.main-nav .has-submenu {
  position: relative;
}

.main-nav .submenu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 260px;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  padding: 10px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.25s ease;
  z-index: 999;
}

.main-nav .submenu li {
  list-style: none;
}

.main-nav .submenu a {
  display: block;
  padding: 10px 20px;
  color: #1f2937;
  font-size: 14px;
  line-height: 1.4;
  white-space: nowrap;
}

.main-nav .submenu a:hover {
  background: #f4f6f8;
  color: var(--blue);
}

/* Hover trigger (desktop) */
.main-nav .has-submenu:hover > .submenu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

@media (max-width: 768px) {
  .main-nav .submenu {
    position: static;
    box-shadow: none;
    border: none;
    padding-left: 15px;
    opacity: 1;
    visibility: visible;
    transform: none;
    display: none;
  }

  .main-nav .has-submenu.open > .submenu {
    display: block;
  }
}
/* ===============================
   Submenu Layout Optimization
   =============================== */

.main-nav .submenu {
  max-width: 520px;
  display: grid;
  grid-template-columns: repeat(2, minmax(200px, 1fr));
  column-gap: 10px;
}

.main-nav .submenu a {
  white-space: normal;
}
@media (max-width: 768px) {

  .main-nav .submenu {
    display: none;
    position: static;
    max-width: none;
    grid-template-columns: 1fr;
    background: transparent;
    box-shadow: none;
    border: none;
    padding: 0;
    margin-top: 8px;
  }

  .main-nav .submenu a {
    padding: 10px 0;
    font-size: 15px;
  }

  .main-nav .has-submenu.open > .submenu {
    display: block;
  }

}
 /* =====================================================
    Navigation Final Enhancement (Desktop + Mobile)
    Safe append only – DO NOT modify existing styles
    ===================================================== */
 
 /* ---------- Header Base ---------- */
 .site-header {
   background: #ffffff;
   border-bottom: 1px solid #e5e7eb;
 }
 
 /* ---------- Top Level Menu ---------- */
 .main-nav .nav-list > li > a {
   font-size: 15px;
   font-weight: 500;
   color: #1f2937;
   padding: 14px 18px;
   position: relative;
   transition: color 0.2s ease;
 }
 
 .main-nav .nav-list > li > a:hover {
   color: var(--blue);
 }
 
 .main-nav .nav-list > li.active > a {
   color: var(--blue);
   font-weight: 600;
 }
 
 /* ---------- Submenu (Desktop) ---------- */
 .main-nav .has-submenu {
   position: relative;
 }
 
 .main-nav .submenu {
   position: absolute;
   top: 100%;
   left: 0;
   min-width: 260px;
   max-width: 520px;
 
   background: #ffffff;
   border: 1px solid #e5e7eb;
   border-radius: 12px;
   box-shadow: 0 10px 30px rgba(0,0,0,0.08);
 
   padding: 12px;
 
   display: grid;
   grid-template-columns: repeat(2, minmax(200px, 1fr));
   column-gap: 10px;
 
   opacity: 0;
   visibility: hidden;
   transform: translateY(10px);
   transition: all 0.25s ease;
 
   z-index: 999;
 }
 
 .main-nav .submenu li {
   list-style: none;
 }
 
 .main-nav .submenu a {
   display: block;
   padding: 10px 14px;
   font-size: 14px;
   font-weight: 500;
   color: #1f2937;
   border-radius: 8px;
   white-space: normal;
   transition: background 0.2s ease, color 0.2s ease;
 }
 
 .main-nav .submenu a:hover {
   background: rgba(11, 60, 120, 0.06);
   color: var(--blue);
 }
 
 /* Hover trigger (desktop only) */
 .main-nav .has-submenu:hover > .submenu {
   opacity: 1;
   visibility: visible;
   transform: translateY(0);
 }
 
 /* ---------- Mobile Navigation ---------- */
 @media (max-width: 768px) {
 
   .main-nav {
     background: #ffffff;
   }
 
   .main-nav .nav-list > li {
     border-bottom: 1px solid #e5e7eb;
   }
 
   .main-nav .nav-list > li > a {
     padding: 14px 16px;
     font-size: 16px;
   }
 
   /* Submenu mobile reset */
   .main-nav .submenu {
     position: static;
     max-width: none;
     grid-template-columns: 1fr;
     background: transparent;
     box-shadow: none;
     border: none;
     padding: 0;
     margin-top: 8px;
 
     opacity: 1;
     visibility: visible;
     transform: none;
     display: none;
   }
 
   .main-nav .submenu a {
     padding: 10px 0 10px 12px;
     font-size: 15px;
     color: #374151;
   }
 
   .main-nav .has-submenu.open > .submenu {
     display: block;
   }
 
   /* Arrow indicator */
   .main-nav .has-submenu > a::after {
     content: "▾";
     float: right;
     font-size: 12px;
     opacity: 0.6;
     transition: transform 0.2s ease;
   }
 
   .main-nav .has-submenu.open > a::after {
     transform: rotate(180deg);
   }
 }
/* =====================================================
   Models & Specifications Table Styles
   Industrial / SEO Friendly / Responsive
   ===================================================== */

.table-wrapper {
  width: 100%;
  overflow-x: auto;
  margin-top: 30px;
}

/* ---------- Table Base ---------- */
.acw-spec-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 760px;
  background: #ffffff;
  border: 1px solid #e5e7eb;
}

/* ---------- Table Header ---------- */
.acw-spec-table thead th {
  background: #f4f6f8;
  color: #1f2937;
  font-size: 14px;
  font-weight: 600;
  text-align: left;
  padding: 14px 16px;
  border-bottom: 1px solid #e5e7eb;
  white-space: nowrap;
}

/* ---------- Table Body ---------- */
.acw-spec-table tbody td {
  font-size: 14px;
  color: #374151;
  padding: 14px 16px;
  border-bottom: 1px solid #e5e7eb;
  vertical-align: middle;
}

/* ---------- Row Hover ---------- */
.acw-spec-table tbody tr:hover {
  background: rgba(11, 60, 120, 0.04);
}

/* ---------- First Column Emphasis ---------- */
.acw-spec-table tbody td:first-child {
  font-weight: 600;
  color: #111827;
}

/* ---------- Specification Note ---------- */
.acw-spec-note {
  margin-top: 16px;
  font-size: 14px;
  color: #6b7280;
  line-height: 1.6;
}

/* ---------- Mobile Optimization ---------- */
@media (max-width: 768px) {

  .acw-spec-table {
    min-width: 700px;
  }

  .acw-spec-table thead th,
  .acw-spec-table tbody td {
    font-size: 13px;
    padding: 12px 14px;
  }

}
.acw-series-link{
  margin: 12px 0 24px;
  font-size: 15px;
  color: #4b5563;
}

.acw-series-link a{
  color: var(--blue);
  text-decoration: underline;
  font-weight: 500;
}

/* ===============================
   Applications Page Styles
   =============================== */

/* Intro text */
.applications-intro {
  padding: 40px 0;
  background: #ffffff;
}

.applications-intro p {
  max-width: 900px;
  margin: 0 auto;
  font-size: 16px;
  line-height: 1.7;
  color: #374151;
}

/* Applications Section */
.applications {
  padding: 60px 0;
  background: var(--gray);
}

.applications h2 {
  text-align: center;
  margin-bottom: 50px;
  font-size: 32px;
  color: var(--blue-dark);
}

/* Grid layout */
.application-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* Application card */
.application-item {
  background: #ffffff;
  border-radius: 12px;
  padding: 30px 28px;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.application-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
}

.application-item h3 {
  font-size: 22px;
  margin-bottom: 16px;
  color: var(--blue);
}

.application-item p {
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 12px;
  color: #374151;
}

.application-item strong {
  color: var(--blue-dark);
}

/* Model links inside application */
.application-item a {
  color: var(--blue);
  font-weight: 600;
  text-decoration: none;
}

.application-item a:hover {
  text-decoration: underline;
}

/* Secondary button */
.btn-secondary {
  display: inline-block;
  margin-top: 10px;
  padding: 10px 18px;
  border-radius: 6px;
  background: transparent;
  border: 2px solid var(--blue);
  color: var(--blue);
  font-weight: 600;
  font-size: 14px;
  transition: all 0.25s ease;
}

.btn-secondary:hover {
  background: var(--blue);
  color: #ffffff;
}

/* Applications → Models power block */
.applications-model-links {
  padding: 60px 0;
  background: #ffffff;
}

.applications-model-links h2 {
  text-align: center;
  font-size: 30px;
  margin-bottom: 30px;
  color: var(--blue-dark);
}

.applications-model-links ul {
  max-width: 760px;
  margin: 0 auto;
  padding: 0;
  list-style: none;
}

.applications-model-links li {
  padding: 14px 0;
  border-bottom: 1px solid #e5e7eb;
}

.applications-model-links li:last-child {
  border-bottom: none;
}

.applications-model-links a {
  font-size: 16px;
  color: var(--blue);
  font-weight: 600;
  text-decoration: none;
}

.applications-model-links a:hover {
  text-decoration: underline;
}

/* CTA Section */
.cta {
  padding: 70px 0;
  background: linear-gradient(135deg, var(--blue), var(--blue-dark));
  text-align: center;
}

.cta h2 {
  color: #ffffff;
  font-size: 32px;
  margin-bottom: 20px;
}

.btn-primary {
  display: inline-block;
  padding: 14px 32px;
  background: var(--orange);
  color: #ffffff;
  font-size: 16px;
  font-weight: 700;
  border-radius: 8px;
  text-decoration: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.2);
}

/* ===============================
   Responsive
   =============================== */
@media (max-width: 1024px) {
  .application-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

  .applications h2,
  .applications-model-links h2,
  .cta h2 {
    font-size: 26px;
  }

  .application-item {
    padding: 24px 22px;
  }
}

/* ===============================
   Recommended Models (Applications Pages)
   =============================== */

.recommended-models {
  padding: 80px 0;
  background-color: #f8fafc;
}

.recommended-models h2 {
  font-size: 32px;
  margin-bottom: 16px;
  color: var(--blue);
}

.recommended-models .section-intro {
  max-width: 900px;
  margin-bottom: 32px;
  font-size: 16px;
  color: #4b5563;
  line-height: 1.7;
}

.recommended-models .model-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.recommended-models .model-list li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 18px;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
}

.recommended-models .model-list li::before {
  content: "✔";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--orange);
  font-weight: 600;
}

.recommended-models .model-list a {
  color: var(--blue);
  font-weight: 600;
  text-decoration: none;
}

.recommended-models .model-list a:hover {
  text-decoration: underline;
}

/* ===============================
   Mobile Optimization
   =============================== */

@media (max-width: 768px) {
  .recommended-models {
    padding: 56px 0;
  }

  .recommended-models h2 {
    font-size: 26px;
  }

  .recommended-models .section-intro {
    font-size: 15px;
  }

  .recommended-models .model-list li {
    font-size: 15px;
  }
}
/* ===============================
   Related Applications (Models)
   =============================== */

.related-applications {
  background: #f8fafc;
  padding: 60px 0;
}

.related-applications h2 {
  text-align: center;
  margin-bottom: 10px;
}

.related-applications .section-desc {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 40px;
  color: #4b5563;
  font-size: 16px;
}

.application-card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

/* Application Card */
.application-card {
  display: block;
  background: #ffffff;
  border-radius: 12px;
  padding: 26px 24px;
  text-decoration: none;
  color: inherit;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.04);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  border: 1px solid #e5e7eb;
}

.application-card h3 {
  margin-bottom: 8px;
  font-size: 18px;
}

.application-card p {
  font-size: 15px;
  color: #4b5563;
  line-height: 1.6;
}

/* Hover Effect */
.application-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.08);
}

/* Primary Application Highlight */
.application-card.primary {
  border: 2px solid #0b3c78;
  position: relative;
}

.application-card.primary::after {
  content: "Primary";
  position: absolute;
  top: 16px;
  right: 16px;
  background: #0b3c78;
  color: #ffffff;
  font-size: 12px;
  padding: 4px 10px;
  border-radius: 999px;
}

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

@media (max-width: 1024px) {
  .application-card-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .application-card-grid {
    grid-template-columns: 1fr;
  }

  .related-applications {
    padding: 40px 0;
  }
}
/* ================= Comparison Table ================= */
.acw-comparison {
  padding: 80px 0;
  background: #f8fafc;
}

.acw-comparison h2 {
  text-align: center;
  margin-bottom: 10px;
}

.comparison-intro {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 40px;
  color: #4b5563;
}

.comparison-table-wrapper {
  overflow-x: auto;
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  background: #ffffff;
}

.comparison-table th,
.comparison-table td {
  padding: 16px 18px;
  border: 1px solid #e5e7eb;
  text-align: left;
}

.comparison-table th {
  background: #0b3c78;
  color: #ffffff;
  font-weight: 600;
}

.comparison-table tr.current-system {
  background: #eef4ff;
}

.comparison-table a {
  color: #0b3c78;
  font-weight: 600;
}

.comparison-table a:hover {
  text-decoration: underline;
}
/* ================= SYSTEM SOLUTIONS ================= */
.acw-system-solutions {
  background: #f9fafb;
  padding: 80px 0;
}

.acw-system-solutions h2 {
  text-align: center;
  margin-bottom: 12px;
}

.acw-system-solutions .section-intro {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 48px;
  color: #4b5563;
}

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

.solution-card {
  background: #ffffff;
  border-radius: 12px;
  padding: 32px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
  transition: transform .3s ease, box-shadow .3s ease;
}

.solution-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.solution-card h3 {
  margin-bottom: 12px;
  color: var(--blue);
}

.solution-card p {
  margin-bottom: 16px;
  color: #374151;
}

.solution-card ul {
  margin-bottom: 20px;
  padding-left: 18px;
}

.solution-card ul li {
  margin-bottom: 6px;
  color: #4b5563;
}

.solution-link {
  font-weight: 600;
  color: var(--blue);
}

.solution-link:hover {
  color: var(--orange);
}

/* Responsive */
@media (max-width: 992px) {
  .solution-grid {
    grid-template-columns: 1fr;
  }
}
/* ===============================
   Contact Page Styles
   =============================== */

/* Contact Form */
.contact-form {
  max-width: 760px;
  margin: 0 auto;
  background: #ffffff;
  padding: 32px;
  border-radius: 8px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.05);
}

.contact-form .form-group {
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
}

.contact-form label {
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 6px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  padding: 12px 14px;
  font-size: 14px;
  border: 1px solid #d1d5db;
  border-radius: 4px;
  background-color: #fff;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(11,60,120,0.08);
}

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

.contact-form button {
  margin-top: 10px;
  padding: 14px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
}

/* Contact Purpose Grid Enhancement */
.features .feature-item {
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.features .feature-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 28px rgba(0,0,0,0.06);
}

/* Contact Trust Section */
.features h2 {
  text-align: center;
  margin-bottom: 40px;
}

/* CTA Anchor Fix */
.cta a[href="#name"] {
  scroll-margin-top: 120px;
}

/* ===============================
   Responsive – Mobile Optimization
   =============================== */

@media (max-width: 768px) {

  .contact-form {
    padding: 24px 20px;
  }

  .contact-form label {
    font-size: 13px;
  }

  .contact-form input,
  .contact-form select,
  .contact-form textarea {
    font-size: 13px;
  }

}
/* ===============================
   Solutions Hub Page Styles
   =============================== */

/* Solutions Hero */
.solutions-hero {
  background: linear-gradient(135deg, #0b3c78, #082c57);
  color: #fff;
  padding: 80px 0;
}

.solutions-hero h1 {
  font-size: 2.4rem;
  margin-bottom: 16px;
}

.solutions-hero p {
  max-width: 800px;
  font-size: 1.05rem;
  line-height: 1.7;
  opacity: 0.95;
}

/* Solutions Overview */
.solutions-overview {
  padding: 70px 0;
  background: #f8fafc;
}

.solutions-overview h2 {
  text-align: center;
  margin-bottom: 40px;
}

/* Solution Cards */
.solution-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}

.solution-card {
  background: #fff;
  border-radius: 12px;
  padding: 32px 26px;
  box-shadow: 0 10px 28px rgba(0,0,0,0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.solution-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(0,0,0,0.08);
}

.solution-card h3 {
  font-size: 1.25rem;
  margin-bottom: 12px;
}

.solution-card p {
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 18px;
}

.solution-card a {
  color: var(--blue);
  font-weight: 600;
}

/* Solutions Advantages */
.solutions-advantages {
  padding: 70px 0;
}

.solutions-advantages h2 {
  text-align: center;
  margin-bottom: 40px;
}

/* Process / Flow */
.solutions-process {
  padding: 70px 0;
  background: #f4f6f8;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 26px;
}

.process-step {
  background: #fff;
  border-radius: 10px;
  padding: 26px 22px;
  border-left: 4px solid var(--blue);
}

.process-step h4 {
  margin-bottom: 10px;
  font-size: 1.05rem;
}

.process-step p {
  font-size: 0.92rem;
  line-height: 1.6;
}

/* Solutions CTA */
.solutions-cta {
  background: linear-gradient(135deg, #0b3c78, #082c57);
  color: #fff;
  padding: 70px 0;
  text-align: center;
}

.solutions-cta h2 {
  margin-bottom: 16px;
}

.solutions-cta p {
  max-width: 700px;
  margin: 0 auto 26px;
  opacity: 0.95;
}

/* ===============================
   Responsive
   =============================== */
@media (max-width: 768px) {

  .solutions-hero {
    padding: 60px 0;
  }

  .solutions-hero h1 {
    font-size: 1.9rem;
  }

  .solution-card {
    padding: 26px 20px;
  }

}
/* ===============================
   Solutions Page Styles
   =============================== */

/* ===== Hero ===== */
.solutions-hero {
  background: linear-gradient(135deg, #0b3c78, #082c57);
  color: #ffffff;
  padding: 80px 0 70px;
}

.solutions-hero h1 {
  font-size: 2.4rem;
  margin-bottom: 16px;
}

.solutions-hero p {
  max-width: 820px;
  font-size: 1.05rem;
  line-height: 1.7;
  opacity: 0.95;
}

/* ===== Intro ===== */
.solutions-intro {
  padding: 70px 0;
  background: #ffffff;
}

.solutions-intro h2 {
  font-size: 1.9rem;
  margin-bottom: 20px;
}

.solutions-intro p {
  max-width: 880px;
  margin-bottom: 14px;
  line-height: 1.75;
  color: #374151;
}

.solutions-intro a {
  color: var(--blue);
  font-weight: 500;
}

/* ===== Solution Grid ===== */
.solutions-grid-section {
  padding: 70px 0;
  background: var(--gray);
}

.solutions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
}

.solution-card {
  background: #ffffff;
  border-radius: 10px;
  padding: 28px 26px;
  box-shadow: 0 6px 22px rgba(0, 0, 0, 0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.solution-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.1);
}

.solution-card h3 {
  font-size: 1.25rem;
  margin-bottom: 12px;
}

.solution-card h3 a {
  color: var(--blue-dark);
}

.solution-card p {
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 14px;
  color: #4b5563;
}

.solution-card ul {
  padding-left: 18px;
  margin-bottom: 16px;
}

.solution-card ul li {
  font-size: 0.9rem;
  margin-bottom: 6px;
  color: #374151;
}

.solution-link {
  display: inline-block;
  margin-top: 6px;
  font-weight: 600;
  color: var(--orange);
}

.solution-link:hover {
  text-decoration: underline;
}

/* ===== Benefits ===== */
.solutions-benefits {
  padding: 70px 0;
  background: #ffffff;
}

.solutions-benefits h2 {
  font-size: 1.9rem;
  margin-bottom: 24px;
}

.benefit-list {
  max-width: 860px;
  padding-left: 18px;
}

.benefit-list li {
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 10px;
  color: #374151;
}

/* ===== CTA ===== */
.solutions-cta {
  background: linear-gradient(135deg, #082c57, #0b3c78);
  color: #ffffff;
  padding: 75px 0;
  text-align: center;
}

.solutions-cta h2 {
  font-size: 2rem;
  margin-bottom: 14px;
}

.solutions-cta p {
  max-width: 760px;
  margin: 0 auto 26px;
  line-height: 1.7;
  opacity: 0.95;
}

/* ===== Responsive ===== */
@media (max-width: 768px) {
  .solutions-hero {
    padding: 60px 0;
  }

  .solutions-hero h1 {
    font-size: 2rem;
  }

  .solutions-intro,
  .solutions-grid-section,
  .solutions-benefits {
    padding: 55px 0;
  }

  .solutions-cta h2 {
    font-size: 1.7rem;
  }
}
/* ================= CONTACT PAGE UPGRADE ================= */

.contact-core {
  background: #f7f9fc;
  padding: 80px 0;
}

.contact-box {
  max-width: 760px;
  margin: 0 auto;
  background: #ffffff;
  padding: 48px 56px;
  border-radius: 16px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.06);
}

.contact-title {
  font-size: 32px;
  margin-bottom: 12px;
}

.contact-desc {
  color: #6b7280;
  margin-bottom: 32px;
}

.contact-form .form-group {
  margin-bottom: 22px;
}

.contact-form label {
  display: block;
  font-weight: 600;
  margin-bottom: 6px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #d1d5db;
  border-radius: 8px;
  font-size: 15px;
}

.checkbox-group {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.checkbox-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
}

.form-submit {
  margin-top: 32px;
}

.cta-dark {
  background: linear-gradient(135deg, #0b3c78, #082c57);
  color: #fff;
}

.cta-dark h2 {
  color: #fff;
}

/* ================= SEO AUTHORITY CONTENT ================= */
.acw-seo-content {
  padding: 80px 0;
  background-color: #ffffff;
}

.acw-seo-content .container {
  max-width: 1200px;
}

.acw-seo-content h2 {
  font-size: 28px;
  line-height: 1.3;
  margin-bottom: 20px;
  color: #111;
}

.acw-seo-content p {
  font-size: 16px;
  line-height: 1.7;
  color: #444;
  margin-bottom: 20px;
}

.acw-seo-content a {
  color: #0056b3;
  text-decoration: none;
}

.acw-seo-content a:hover {
  text-decoration: underline;
}
.features h2 {
  margin-bottom: 40px;
}
.applications {
  padding: 80px 0;
  background-color: #f8f9fb;
}

.application-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 40px;
}

.application-item {
  background: #ffffff;
  padding: 30px;
  border-radius: 6px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  font-size: 15px;
  line-height: 1.6;
}
@media (max-width: 768px) {

  .acw-seo-content {
    padding: 50px 0;
  }

  .acw-seo-content h2 {
    font-size: 22px;
  }

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

}





/* ================================
   Added: Fixed Navigation (2026-01-11)
   Notes: Only appended. No overrides of existing rules.
   ================================ */
.main-nav .has-submenu > a::after{
  content: "▾";
  font-size: 12px;
  margin-left: 6px;
  opacity: 0.7;
}

/* ========== Home Video Inline (added) ========== */
.home-video{ padding: 56px 0; }
.home-video h2{ margin: 0 0 10px; }
.home-video-intro{ margin: 0 0 18px; opacity: .9; }

.video-embed{
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(0,0,0,.08);
  box-shadow: 0 10px 24px rgba(0,0,0,.08);
}

.video-embed iframe{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
