/* ===== CLEANED AISORT THEME STYLES ===== */

/* ===== VARIABLES & FONTS ===== */
:root {
  --primary: #0ea5e9;
  --primary-glow: rgba(14, 165, 233, 0.4);
  --secondary: #3b82f6;
  --accent: #22d3ee;
  --dark: #020617;
  --darker: #0f172a;
  --dark-panel: #1e293b;
  --light: #f8fafc;
  --white: #ffffff;
  --text-main: #334155;
  --text-muted: #64748b;
  --text-dark: #f8fafc;
  --text-dark-muted: #94a3b8;
  --border: #e2e8f0;
  --border-dark: #334155;
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --font-main: 'Plus Jakarta Sans', 'Noto Sans Arabic', 'Noto Sans Devanagari', 'Noto Sans Thai', 'Noto Sans SC', 'Noto Sans JP', 'Noto Sans KR', 'Noto Sans', system-ui, -apple-system, sans-serif;
  --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* ===== RESET & BASE ===== */
* {
  box-sizing: border-box;
}

body {
  margin: 0;
  padding: 0;
  background: var(--light);
  color: var(--text-main);
  font-family: var(--font-main);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  scroll-behavior: smooth;
}

a,
a:visited {
  color: var(--primary);
  text-decoration: none;
  transition: var(--transition);
}

a:hover {
  color: var(--secondary);
}

img {
  max-width: 100%;
  height: auto;
  border-radius: var(--radius-sm);
}

/* ===== HEADER & NAVIGATION ===== */
#header-wrapper {
  position: relative;
  top: 0;
  z-index: 1000;
  width: 100%;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--dark);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border-top: none;
  border-bottom: 2px solid rgba(255, 255, 255, 0.05);
  box-shadow: none;
}

#header-inner {
  max-width: 1440px;
  width: 100%;
  height: 100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 48px;
}

#header h1 {
  margin: 0;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 24px;
  font-weight: 800;
  letter-spacing: -0.5px;
}

#header h1::before {
  content: "";
  display: block;
  width: 24px;
  height: 24px;
  background: linear-gradient(135deg, var(--accent), var(--primary));
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  animation: glowPulse 2s infinite ease-in-out;
}

#header h1 a {
  color: var(--white);
  text-decoration: none;
  font-size: 32px;
  letter-spacing: -2px;
  background: linear-gradient(135deg, #fff 30%, var(--accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.tagline {
  color: var(--text-dark-muted);
  font-size: 13px;
  font-weight: 500;
  margin-left: 12px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

#nav {
  display: flex !important;
  align-items: center;
  gap: 32px;
  padding: 0;
}

#nav ul {
  max-width: 1280px;
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

#nav li {
  position: relative;
  margin: 0;
}

#nav a {
  display: block;
  padding: 0 4px !important;
  margin-bottom: 0 !important;
  font-size: 15px !important;
  font-weight: 700 !important;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7) !important;
  background: transparent !important;
  border-radius: 0 !important;
  opacity: 0.7;
  transition: color 0.3s ease, opacity 0.3s ease;
}

#nav a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 3px;
  background: linear-gradient(to right, var(--accent), var(--primary));
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  transform: translateX(-50%);
}

#nav a:hover,
#nav a.current {
  color: #fff !important;
  opacity: 1;
  transform: none !important;
}

#nav a:hover::after,
#nav a.current::after {
  width: 60%;
}

#nav a.current {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.header-cta {
  position: relative;
  overflow: hidden;
  display: inline-block;
  margin-left: 24px;
  padding: 12px 32px;
  background: transparent !important;
  border: 2px solid var(--primary);
  border-radius: 100px;
  color: var(--primary) !important;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  box-shadow: none;
  transition: var(--transition);
}

.header-cta::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 140%;
  height: 140%;
  background: rgba(255, 255, 255, 0.15);
  transform: translate(-50%, -50%) scale(0);
  border-radius: 50%;
  transition: transform 0.6s ease;
}

.header-cta:hover {
  background: var(--primary) !important;
  color: #fff !important;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px var(--primary-glow);
}

.header-cta:hover::after {
  transform: translate(-50%, -50%) scale(1);
}

/* ===== MOBILE NAVIGATION ===== */
.nav-toggle-input {
  display: none;
}

.nav-toggle-label {
  display: none;
  cursor: pointer;
  padding: 10px;
  z-index: 1100;
}

.nav-toggle-label span,
.nav-toggle-label span::before,
.nav-toggle-label span::after {
  display: block;
  width: 24px;
  height: 2px;
  position: relative;
  background: white;
  transition: all 0.3s ease;
}

.nav-toggle-label span::before,
.nav-toggle-label span::after {
  content: "";
  position: absolute;
}

.nav-toggle-label span::before {
  top: -8px;
}

.nav-toggle-label span::after {
  top: 8px;
}

/* ===== LAYOUT ===== */
#shell {
  max-width: 1280px;
  margin: 0 auto;
  padding: 48px 24px 80px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: 40px;
  align-items: start;
}

#main {
  width: auto;
  min-width: 0;
  margin-right: 0;
  animation: fadeUp 0.6s ease-out forwards;
}

#main h1 {
  margin: 0 0 16px 0;
  font-size: 40px;
  line-height: 1.15;
  color: var(--dark);
  font-weight: 800;
  letter-spacing: -1px;
}

#main h2 {
  margin: 64px 0 24px 0;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  font-size: 32px;
  color: var(--dark);
  font-weight: 800;
  letter-spacing: -0.5px;
}

#main h3 {
  margin: 40px 0 16px 0;
  font-size: 20px;
  color: var(--dark);
  font-weight: 700;
}

#main p {
  color: var(--text-main);
  line-height: 1.8;
  font-size: 16px;
}

#main ul,
#main ol {
  color: var(--text-main);
  font-size: 16px;
  line-height: 1.8;
}

#main strong {
  color: var(--dark);
  font-weight: 700;
}

#sidebar {
  width: auto;
  float: none;
  padding: 32px;
  border-radius: var(--radius-md);
  background: var(--white);
  border: 1px solid var(--border);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.04);
  position: sticky;
  top: 140px;
}

#sidebar h3 {
  margin: 32px 0 20px 0;
  padding-bottom: 4px;
  display: inline-block;
  border-bottom: 2px solid var(--primary);
  font-size: 14px;
  font-weight: 700;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 1px;
}

#sidebar p {
  margin: 0 0 16px 0;
  color: var(--text-main);
  font-size: 14px;
  line-height: 1.75;
}

#sidebar ul {
  list-style: none;
  margin-top: 16px;
  padding-left: 16px;
}

#sidebar ul li {
  margin-bottom: 12px;
  font-size: 14px;
  color: var(--text-dark-muted);
}

.full-width-shell {
  max-width: none !important;
  margin: 0 !important;
  padding: 0 !important;
  grid-template-columns: 1fr !important;
}

.full-width-layout #sidebar {
  display: none;
}

.full-width-main {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 40px 24px 64px;
}

/* ===== CORE CONTENT BLOCKS ===== */
.hero {
  margin: 0 0 48px 0;
  padding: 80px 64px;
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.05);
  background: var(--dark);
  background-image: radial-gradient(ellipse at top right, rgba(14, 165, 233, 0.4), transparent 60%), radial-gradient(ellipse at bottom left, rgba(34, 211, 238, 0.15), transparent 60%);
  box-shadow: 0 24px 48px rgba(2, 6, 23, 0.2);
}

.hero h1,
.hero h2,
.hero h3,
.hero h4 {
  color: var(--white) !important;
}

.hero h2 {
  margin: 0 0 20px 0;
  padding: 0;
  border: none;
  font-size: 48px !important;
  line-height: 1.1;
  color: var(--white) !important;
  font-weight: 800;
  letter-spacing: -1px;
}

.hero p {
  max-width: 640px;
  margin: 0 0 40px 0;
  color: var(--text-dark-muted) !important;
  font-size: 18px !important;
  line-height: 1.7;
}

.hero .hero-btn,
.hero a.hero-btn {
  display: inline-flex;
  align-items: center;
  margin-right: 16px;
  padding: 16px 36px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 100px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: var(--white) !important;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 8px 24px var(--primary-glow);
  transition: var(--transition);
}

.hero a.hero-btn:hover {
  color: var(--white) !important;
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 12px 32px var(--primary-glow);
}

.hero a.hero-btn.secondary {
  background: rgba(255, 255, 255, 0.05);
  box-shadow: none;
  backdrop-filter: blur(10px);
}

.hero a.hero-btn.secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.stats-bar {
  display: flex;
  flex-wrap: wrap;
  margin: 0 0 64px 0;
  padding: 32px 0;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.04);
}

.stat-item {
  flex: 1;
  min-width: 160px;
  text-align: center;
  padding: 16px 24px;
}

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

.stat-num {
  display: block;
  margin-bottom: 8px;
  font-size: 36px;
  line-height: 1;
  font-weight: 800;
  color: var(--primary) !important;
  background: linear-gradient(to right, var(--primary), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.stat-label {
  display: block;
  font-size: 12px;
  color: var(--text-muted) !important;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.section-header {
  max-width: 700px;
  margin: 0 auto 64px;
  text-align: center;
}

.section-header h2 {
  margin: 0 0 16px 0;
  padding: 0;
  border: none;
  font-size: 36px;
  color: var(--dark);
  font-weight: 800;
  letter-spacing: -1px;
}

.section-header p {
  margin: 0;
  color: var(--text-muted) !important;
  font-size: 18px;
  line-height: 1.7;
}

.solutions-list {
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin: 0 0 80px 0;
}

.solution-item {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 64px;
  align-items: center;
  padding: 56px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02);
  transition: var(--transition);
}

.solution-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.08);
}

.solution-item:nth-child(even) {
  background: var(--dark-panel);
  border-color: rgba(255, 255, 255, 0.05);
}

.solution-item:nth-child(even):hover {
  box-shadow: 0 24px 48px rgba(2, 6, 23, 0.4);
}

.solution-item h2,
.solution-item h3,
.solution-item h4 {
  margin-bottom: 12px;
  padding: 0;
  border: none !important;
}

.solution-item h3 {
  margin: 0 0 16px 0;
  font-size: 24px;
  color: var(--dark);
  font-weight: 800;
}

.solution-item:nth-child(even) h2,
.solution-item:nth-child(even) h3,
.solution-item:nth-child(even) h4 {
  color: var(--white) !important;
}

.solution-item p {
  margin: 0 0 24px 0;
  font-size: 16px;
  line-height: 1.8;
  color: var(--text-main);
}

.solution-item:nth-child(even) p {
  color: var(--text-dark-muted) !important;
}

.solution-item ul {
  margin: 0 0 24px 0;
  padding-left: 24px;
}

.solution-item li {
  margin: 0.5em 0;
  font-size: 16px;
  color: var(--text-main);
  font-weight: 500;
}

.solution-item:nth-child(even) li {
  color: var(--text-dark-muted) !important;
}

.solution-item a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--primary);
  font-size: 16px;
  font-weight: 700;
  transition: var(--transition);
}

.solution-item a:hover {
  gap: 12px;
}

.solution-item:nth-child(even) a {
  color: var(--accent) !important;
}

.solution-item:nth-child(even) a:hover {
  color: var(--white) !important;
}

.solution-img {
  width: 100%;
  max-height: 320px;
  display: block;
  object-fit: cover;
  border-radius: var(--radius-md);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
}

.product-grid,
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin: 24px 0 80px 0;
}

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

.product-card:hover {
  transform: translateY(-8px);
  border-color: var(--primary);
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.08);
}

.product-card img,
.product-image img {
  width: 100%;
  height: 220px;
  display: block;
  object-fit: cover;
  background: var(--light);
  transition: transform 0.5s ease;
}

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

.product-image {
  overflow: hidden;
}

.product-card-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 32px;
}

.product-card h3 {
  margin: 0 0 12px 0;
  border: none;
  font-size: 18px;
  color: var(--dark) !important;
  font-weight: 800;
}

.product-tag {
  margin: 0 0 12px;
  color: var(--primary) !important;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.product-card p,
.product-desc {
  flex: 1;
  margin: 0 0 24px 0;
  color: var(--text-muted) !important;
  font-size: 15px;
  line-height: 1.6;
}

.product-card a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: auto;
  color: var(--primary) !important;
  font-size: 15px;
  font-weight: 700;
}

.product-specs {
  width: 100%;
  margin-top: 16px;
  padding: 16px 24px;
  border-top: 1px solid var(--border);
  border-collapse: collapse;
  border-radius: 8px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.8);
}

.product-specs h4 {
  margin: 0 0 8px;
  color: var(--dark) !important;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}

.product-specs ul {
  margin: 0;
  padding-left: 20px;
  font-size: 13px;
  color: var(--text-main) !important;
}

.product-specs th,
.product-specs td {
  text-align: left;
}

.product-specs th {
  width: 40%;
  padding: 12px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  background: rgba(45, 108, 223, 0.1);
  color: #1e293b;
  font-weight: 600;
}

.product-specs td {
  padding: 12px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  color: #0f172a !important;
  font-weight: 500;
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin: 0 0 64px 0;
}

.benefit-card {
  padding: 40px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02);
  transition: var(--transition);
}

.benefit-card:hover {
  transform: translateY(-4px);
  border-color: var(--primary);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.06);
}

.benefit-card h4 {
  margin: 0 0 12px 0;
  border: none;
  font-size: 18px;
  color: var(--dark) !important;
  font-weight: 800;
}

.benefit-card p {
  margin: 0;
  color: var(--text-main) !important;
  font-size: 15px;
  line-height: 1.7;
}

.cta-section,
.cta-banner {
  margin: 64px 0;
  padding: 80px 48px;
  position: relative;
  text-align: center;
  border-radius: var(--radius-lg);
  background: var(--dark);
  background-image: linear-gradient(135deg, rgba(14, 165, 233, 0.2) 0%, transparent 100%), url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjAiIGhlaWdodD0iMjAiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGNpcmNsZSBjeD0iMCIgY3k9IjAiIHI9IjEiIGZpbGw9InJnYmEoMjU1LDI1NSwyNTUsMC4wNykiLz48L3N2Zz4=');
  box-shadow: 0 24px 48px rgba(2, 6, 23, 0.2);
}

.cta-section h2,
.cta-banner h2 {
  margin: 0 0 16px;
  padding: 0;
  border: none;
  color: var(--white) !important;
  font-size: 36px;
  font-weight: 800;
  letter-spacing: -1px;
}

.cta-section p,
.cta-banner p {
  max-width: 600px;
  margin: 0 auto 40px;
  color: var(--text-dark-muted) !important;
  font-size: 18px;
}

.cta-section a,
.cta-banner a {
  display: inline-block;
  padding: 16px 40px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 100px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: var(--white) !important;
  font-size: 16px;
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 8px 24px var(--primary-glow);
  transition: var(--transition);
}

.cta-section a:hover,
.cta-banner a:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 12px 32px var(--primary-glow);
}

/* ===== FOOTER ===== */
#footer {
  padding: 40px 0;
  background: var(--dark);
  color: #94a3b8;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

#footer h3 {
  margin: 0 0 20px 0;
  color: var(--white);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

#footer ul {
  list-style: none;
  padding: 0;
  margin: 0 0 32px 0;
}

#footer li {
  margin: 12px 0;
  font-size: 14px;
}

#footer a {
  color: var(--text-dark-muted);
  transition: var(--transition);
}

#footer a:hover {
  color: var(--accent);
}

#footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

#footer p {
  color: var(--text-dark-muted);
  font-size: 13px;
  line-height: 1.6;
}

/* ===== TABLES & CONTENT HELPERS ===== */
table.specstable {
  width: 100%;
  margin: 0 0 48px 0;
  border-collapse: collapse;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02);
}

table.specstable th,
table.specstable td {
  padding: 16px 24px;
  border-bottom: 1px solid var(--border);
  font-size: 15px;
  text-align: left;
}

table.specstable th {
  width: 35%;
  background: var(--light);
  color: var(--dark) !important;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

table.specstable td {
  color: var(--text-main) !important;
}

table.specstable tr:last-child td,
table.specstable tr:last-child th {
  border-bottom: none;
}

table.specstable tr:hover td {
  background: #f1f5f9;
}

p.subtitle {
  color: #334155 !important;
  font-weight: 500;
}

.cta-banner--flush {
  margin-bottom: 0;
}

.feature-card p {
  color: #475569 !important;
}

/* ===== DETAIL PAGE SYSTEM ===== */
.hero-section {
  position: relative;
  overflow: hidden;
  margin: 0 0 32px;
  padding: 64px 48px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-lg);
  background: radial-gradient(circle at top right, rgba(14, 165, 233, 0.2), transparent 36%), linear-gradient(135deg, #020617 0%, #0f172a 60%, #111827 100%);
  box-shadow: 0 24px 48px rgba(2, 6, 23, 0.16);
}

.hero-section.center {
  text-align: center;
}

.hero-section h1 {
  margin: 0 0 16px;
  color: var(--white) !important;
  font-size: clamp(34px, 5vw, 48px);
  line-height: 1.05;
  font-weight: 800;
  letter-spacing: -0.03em;
  border: none;
  padding: 0;
}

.hero-section .subtitle {
  max-width: 720px;
  margin: 0 auto;
  color: var(--text-dark-muted) !important;
  font-size: 18px;
  line-height: 1.7;
}

.hero-section .tag {
  display: inline-flex;
  align-items: center;
  margin-bottom: 20px;
  padding: 10px 16px;
  border: 1px solid rgba(34, 211, 238, 0.2);
  border-radius: 999px;
  background: rgba(14, 165, 233, 0.08);
  color: var(--accent);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.content_block,
.detail-block {
  position: relative;
  z-index: 1;
  margin-top: 40px;
}

.detail-block--lg {
  margin-top: 64px;
}

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

.grid-2.align-center {
  align-items: center;
}

.detail-copy {
  padding-left: 30px;
}

.detail-copy--wide {
  padding-left: 40px;
}

.detail-copy--left {
  padding-left: 0;
  padding-right: 40px;
}

.detail-copy__heading {
  margin: 0 0 16px;
  color: var(--primary);
  font-size: 24px;
  font-weight: 800;
  border: none;
  padding: 0;
}

.detail-copy__subtitle {
  margin-bottom: 12px;
  font-size: 14px;
}

.detail-copy-muted {
  color: #475569 !important;
}

.detail-list {
  margin-top: 20px;
  padding-left: 22px;
  color: #475569;
  line-height: 1.8;
}

.detail-list li {
  margin-bottom: 10px;
}

.detail-media__image,
.detail-media__image--strong,
.feature-card__image {
  width: 100%;
  display: block;
  border-radius: 12px;
}

.detail-media__image {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.16);
}

.detail-media__image--strong {
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.feature-card {
  padding: 32px;
  border: 1px solid var(--border);
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), #f8fafc);
  box-shadow: 0 14px 28px rgba(15, 23, 42, 0.04);
}

.feature-card h3 {
  margin: 0 0 12px;
  padding: 0;
  border: none;
  color: var(--dark);
  font-size: 22px;
  font-weight: 800;
}

.feature-card__image {
  margin-bottom: 20px;
  border-radius: 16px;
}

.detail-divider {
  margin: 60px 0;
  border: 0;
  border-top: 1px solid rgba(15, 23, 42, 0.08);
}

/* ===== PRODUCT DETAIL PAGES ===== */
.product-detail-page {
  max-width: 1160px;
  margin: 0 auto;
}

.product-detail-hero {
  display: grid;
  grid-template-columns: minmax(320px, 0.9fr) minmax(0, 1.1fr);
  gap: 48px;
  align-items: center;
  margin-bottom: 56px;
}

.product-detail-media {
  padding: 32px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), #f8fafc);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.06);
}

.product-detail-image {
  width: 100%;
  max-width: 600px;
  display: block;
  margin: 0 auto;
  border-radius: 20px;
}

.product-detail-title {
  margin: 0 0 12px;
  padding: 0;
  border: none;
  color: var(--dark);
  font-size: 34px;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.product-detail-summary {
  margin: 0;
  color: #475569;
  font-size: 16px;
  line-height: 1.8;
}

.benefit-item {
  padding: 32px;
  border: 1px solid var(--border);
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), #f8fafc);
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.04);
}

.benefit-item h4 {
  margin: 0 0 12px;
  padding: 0;
  border: none;
  color: var(--dark);
  font-size: 18px;
  font-weight: 800;
}

.benefit-item p {
  margin: 0;
  color: var(--text-main);
  font-size: 15px;
  line-height: 1.7;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  margin: 0 0 48px;
}

.process-step {
  position: relative;
  padding-left: 64px;
}

.process-step-index {
  position: absolute;
  left: 0;
  top: 0;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(14, 165, 233, 0.12);
  color: var(--primary);
  font-size: 16px;
  font-weight: 800;
}

.process-step-content {
  padding: 24px 28px;
  border: 1px solid var(--border);
  border-radius: 20px;
  background: var(--white);
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.04);
}

.process-step-content h4 {
  margin: 0 0 10px;
  padding: 0;
  border: none;
  color: var(--dark);
  font-size: 18px;
  font-weight: 800;
}

.process-step-content p {
  margin: 0;
  color: var(--text-main);
  font-size: 15px;
  line-height: 1.7;
}

/* ===== SIMPLE LANDING PAGES ===== */
.simple-landing {
  max-width: 900px;
  margin: 0 auto;
}

.simple-landing__panel {
  margin-bottom: 40px;
}

.simple-landing__cta {
  max-width: 800px;
  margin: 0 auto;
  padding: 48px;
  text-align: center;
}

.simple-landing__cta .tech-cta__button {
  min-width: 280px;
}

/* ===== PAGE MODULES ===== */
.cases-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
  padding: 24px 0;
}

.case-card {
  position: relative;
  height: 400px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  border-radius: var(--radius-lg);
  text-decoration: none;
  cursor: pointer;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
  transition: var(--transition);
}

.case-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(2, 6, 23, 0.9) 0%, rgba(2, 6, 23, 0.4) 50%, transparent 100%);
  z-index: 1;
}

.case-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
  z-index: 0;
}

.case-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 48px rgba(14, 165, 233, 0.2);
}

.case-card:hover img {
  transform: scale(1.08);
}

.case-content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 40px;
  color: var(--white);
}

.case-tag {
  display: inline-block;
  margin-bottom: 16px;
  padding: 6px 12px;
  border-radius: 100px;
  background: var(--primary);
  color: var(--white);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.case-title {
  margin: 0 0 8px 0;
  padding: 0;
  border: none;
  font-size: 24px;
  line-height: 1.2;
  color: var(--white);
  font-weight: 800;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.case-metric {
  display: flex;
  gap: 24px;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.metric-box strong {
  display: block;
  font-size: 20px;
  color: var(--accent);
}

.metric-box span {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.tech-features {
  padding: 48px 0 0;
}

.tech-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  margin-bottom: 80px;
}

.tech-row:nth-child(even) .tech-text {
  order: 2;
}

.tech-row:nth-child(even) .tech-image {
  order: 1;
}

.tech-image img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.1);
}

.tech-text h2 {
  margin: 0 0 24px;
  padding: 0;
  border: none;
  font-size: 32px;
  color: var(--dark);
  font-weight: 800;
  letter-spacing: -0.5px;
}

.tech-text p {
  margin-bottom: 32px;
  font-size: 18px;
  color: var(--text-muted);
  line-height: 1.7;
}

.tech-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.tech-list li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 24px;
}

.tech-icon {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 24px;
  border-radius: 12px;
  background: rgba(14, 165, 233, 0.1);
  color: var(--primary);
  font-size: 24px;
  font-weight: bold;
}

.tech-list h4 {
  margin: 0 0 8px;
  border: none;
  font-size: 18px;
  color: var(--dark);
  font-weight: 800;
}

.tech-list p {
  margin: 0;
  font-size: 15px;
}

.service-journey {
  position: relative;
  padding: 48px 0;
  margin-top: 32px;
}

.service-journey::before {
  content: "";
  position: absolute;
  left: 32px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--border);
}

.s-step {
  position: relative;
  padding-left: 80px;
  margin-bottom: 48px;
}

.s-node {
  position: absolute;
  left: 16px;
  top: 0;
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  border-radius: 50%;
  background: var(--white);
  border: 3px solid var(--primary);
  box-shadow: 0 0 0 6px rgba(14, 165, 233, 0.1);
  color: var(--primary);
  font-size: 14px;
  font-weight: 800;
}

.s-content {
  padding: 32px;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.04);
  transition: var(--transition);
}

.s-content:hover {
  transform: translateX(8px);
  border-color: var(--primary);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.08);
}

.s-content h3 {
  margin: 0 0 12px;
  padding: 0;
  border: none;
  font-size: 20px;
  color: var(--dark);
  font-weight: 800;
}

.s-content p {
  margin: 0;
  font-size: 15px;
  color: var(--text-main);
  line-height: 1.6;
}

.page-header {
  margin-bottom: 64px;
  padding: 80px 24px;
  text-align: center;
  border-radius: var(--radius-lg);
  background: radial-gradient(ellipse at center, var(--dark-panel) 0%, var(--darker) 100%);
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.2);
}

.page-header h1 {
  margin: 0 0 16px;
  padding: 0;
  border: none;
  font-size: 48px;
  color: var(--white) !important;
  font-weight: 800;
  letter-spacing: -1px;
}

.page-header p {
  max-width: 600px;
  margin: 0 auto;
  color: var(--text-dark-muted) !important;
  font-size: 20px;
  line-height: 1.6;
}

.page-header--glow-left {
  background: radial-gradient(ellipse at top left, var(--primary-glow) 0%, transparent 60%), var(--dark);
}

.page-header--glow-right {
  background: radial-gradient(ellipse at top right, var(--primary-glow) 0%, transparent 50%), var(--dark);
}

.page-header--premium {
  padding: 80px 48px;
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.15);
}

.page-content-wide {
  width: 100%;
}

.page-grid-two {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 48px;
}

.page-grid-two--spacious {
  margin-bottom: 64px;
}

.section-header--compact {
  margin: 0 auto 48px;
}

.products-premium-grid--two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 32px;
  margin-bottom: 80px;
}

.card-premium-modern--spacious {
  padding: 48px;
}

.card-premium-modern--compact {
  padding: 40px;
}

.card-premium-modern--soft {
  background: linear-gradient(135deg, var(--white), #f8fafc);
}

.card-premium-modern--flat {
  border-radius: 24px;
}

.card-title {
  margin: 0 0 24px;
  padding: 0;
  border: none;
  color: var(--dark);
  font-size: 24px;
  font-weight: 800;
}

.card-title--accent {
  margin: 0 0 12px;
  color: var(--primary);
  font-size: 20px;
}

.card-company-name {
  display: block;
  margin-bottom: 16px;
  color: var(--primary);
  font-size: 18px;
  font-weight: 800;
}

.body-copy {
  margin: 0;
  color: var(--text-main);
  font-size: 16px;
  line-height: 1.8;
}

.body-copy + .body-copy {
  margin-top: 24px;
}

.body-copy--muted {
  color: var(--text-muted);
  line-height: 1.7;
}

.case-card__summary {
  margin: 0 0 8px;
  color: #f8fafc;
  font-size: 14px;
  line-height: 1.5;
}

.case-card__image--center {
  object-position: center;
}

.cases-page__overview {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin: 0 0 20px;
}

.cases-page__overview-card {
  padding: 28px;
  border: 1px solid var(--border);
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), #f8fafc);
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.05);
}

.cases-page__overview-card h3 {
  margin: 0 0 12px;
  padding: 0;
  border: none;
  color: var(--dark);
  font-size: 18px;
  font-weight: 800;
}

.cases-page__overview-card p {
  margin: 0;
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.7;
}

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

.case-proof-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: #ffffff;
  box-shadow: 0 12px 24px rgba(15, 23, 42, 0.06);
}

.case-proof-card__media {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #dfe8f1;
}

.case-proof-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.case-proof-card__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 24px;
}

.case-proof-card__tag {
  display: inline-flex;
  align-items: center;
  margin-bottom: 12px;
  padding: 6px 10px;
  border: 1px solid rgba(21, 67, 140, 0.14);
  border-radius: 6px;
  background: rgba(21, 67, 140, 0.08);
  color: var(--primary);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.case-proof-card__title {
  margin: 0 0 16px;
  color: #10243d;
  font-size: 24px;
  line-height: 1.3;
  font-weight: 800;
}

.case-proof-row {
  margin-bottom: 14px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--border);
}

.case-proof-row:last-of-type {
  border-bottom: none;
  padding-bottom: 0;
}

.case-proof-row__label {
  display: block;
  margin-bottom: 6px;
  color: var(--primary);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.case-proof-row__text {
  margin: 0;
  color: var(--text-main);
  font-size: 14px;
  line-height: 1.75;
}

.case-proof-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 20px;
}

.case-proof-metric {
  padding: 14px 12px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: #f8fafc;
}

.case-proof-metric strong {
  display: block;
  margin-bottom: 4px;
  color: #10243d;
  font-size: 20px;
  font-weight: 800;
}

.case-proof-metric span {
  color: var(--text-muted);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.facts-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
  margin: 0 0 56px;
}

.fact-card {
  padding: 22px;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: #ffffff;
  box-shadow: 0 10px 22px rgba(15, 23, 42, 0.05);
}

.fact-card__value {
  display: block;
  margin-bottom: 8px;
  color: #10243d;
  font-size: 28px;
  line-height: 1;
  font-weight: 800;
}

.fact-card__label {
  display: block;
  margin-bottom: 8px;
  color: var(--primary);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.fact-card__text {
  margin: 0;
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.7;
}

.insights-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  margin: 0 0 56px;
}

.insight-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: #ffffff;
  box-shadow: 0 10px 22px rgba(15, 23, 42, 0.05);
}

.insight-card__media {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: linear-gradient(135deg, #0c2037 0%, #12396f 55%, #1a4b95 100%);
}

.insight-card__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7, 21, 36, 0.02), rgba(7, 21, 36, 0.14));
  pointer-events: none;
}

.insight-card__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0;
}

.insight-card__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 22px 24px 24px;
}

.insight-card__tag {
  display: inline-flex;
  align-items: center;
  margin-bottom: 12px;
  padding: 6px 10px;
  border: 1px solid rgba(21, 67, 140, 0.14);
  border-radius: 6px;
  background: rgba(21, 67, 140, 0.08);
  color: var(--primary);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

a.insight-card__tag,
a.insight-card__tag:visited {
  text-decoration: none;
}

a.insight-card__tag:hover {
  background: rgba(21, 67, 140, 0.14);
  color: var(--secondary);
}

.insight-card__meta {
  margin: 0 0 10px;
  color: #7a8c9e;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.insight-card__title {
  margin: 0 0 12px;
  color: #10243d;
  font-size: 22px;
  line-height: 1.35;
  font-weight: 800;
}

.insight-card__body p {
  margin: 0 0 16px;
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.8;
}

.insight-card__link {
  margin-top: auto;
  color: var(--primary) !important;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.article-layout {
  max-width: 920px;
  margin: 0 auto;
}

.article-layout .page-header {
  margin-bottom: 32px;
}

.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  margin: 0 0 28px;
  color: #74869a;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.article-layout .body-copy,
.article-layout p,
.article-layout li {
  color: var(--text-main);
  font-size: 16px;
  line-height: 1.85;
}

.article-layout h2 {
  margin-top: 44px;
}

.article-layout ul {
  padding-left: 22px;
}

.article-layout .cta-banner {
  margin-top: 48px;
}

.insights-overview {
  margin: 0 0 40px;
}

.insights-overview__header {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 18px;
  margin: 0 0 24px;
}

.insights-overview__eyebrow,
.article-followup__eyebrow,
.article-pager__direction {
  display: inline-flex;
  align-items: center;
  margin: 0 0 10px;
  color: var(--primary);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.insights-overview__title,
.article-followup__title {
  margin: 0;
  border: none;
  padding: 0;
  color: var(--dark);
  font-size: 32px;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.insights-overview__summary {
  max-width: 420px;
  margin: 0;
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.8;
}

.insights-category-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 0 0 28px;
}

.insights-filter-label {
  margin: 0 0 12px;
  color: #6b7f92;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.insights-tag-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 0 0 28px;
}

.insights-category-chip,
.insights-category-chip:visited {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border: 1px solid rgba(21, 67, 140, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.94);
  color: #173963;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
  transition: var(--transition);
}

.insights-category-chip:hover,
.insights-category-chip.is-active {
  border-color: rgba(21, 67, 140, 0.24);
  background: rgba(21, 67, 140, 0.08);
  color: var(--primary);
}

.insights-category-chip__count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 24px;
  height: 24px;
  padding: 0 7px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.08);
  color: #173963;
  font-size: 11px;
}

.insights-empty-state {
  padding: 28px 32px;
  border: 1px solid rgba(21, 67, 140, 0.12);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.92);
}

.insights-empty-state__title {
  margin: 0 0 10px;
  color: #10243d;
  font-size: 18px;
  font-weight: 700;
}

.insights-empty-state__link,
.insights-empty-state__link:visited {
  color: var(--primary);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
}

.insight-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 18px;
}

.insight-tag-link,
.insight-tag-link:visited {
  display: inline-flex;
  align-items: center;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.05);
  color: #486072;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-decoration: none;
}

.insight-tag-link:hover,
.insight-tag-link.is-active {
  background: rgba(21, 67, 140, 0.10);
  color: var(--primary);
}

.article-followup {
  margin-top: 56px;
  padding-top: 40px;
  border-top: 1px solid var(--border);
}

.article-tag-strip {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin: 0 0 28px;
}

.article-tag-strip__label {
  margin: 0;
  color: #6b7f92;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.article-tag-strip__items {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.article-category-jump {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  margin: 0 0 32px;
  padding: 24px 28px;
  border: 1px solid rgba(21, 67, 140, 0.12);
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(246, 249, 252, 0.96));
  box-shadow: 0 14px 28px rgba(15, 23, 42, 0.04);
}

.article-category-jump__eyebrow {
  margin: 0 0 10px;
  color: var(--primary);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.article-category-jump__title {
  margin: 0 0 8px;
  color: #10243d;
  font-size: 28px;
  font-weight: 800;
  line-height: 1.2;
}

.article-category-jump__summary {
  margin: 0;
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.8;
}

.article-category-jump__link,
.article-category-jump__link:visited {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 999px;
  background: rgba(21, 67, 140, 0.08);
  color: var(--primary);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
}

.article-category-jump__link:hover {
  background: rgba(21, 67, 140, 0.14);
}

.article-pager {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  margin: 0 0 36px;
}

.article-pager__card {
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-height: 100%;
  padding: 24px;
  border: 1px solid rgba(21, 67, 140, 0.12);
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 250, 252, 0.98));
  box-shadow: 0 14px 28px rgba(15, 23, 42, 0.04);
  text-decoration: none;
  transition: var(--transition);
}

.article-pager__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 30px rgba(15, 23, 42, 0.08);
}

.article-pager__direction {
  margin-bottom: 0;
}

.article-pager__title {
  color: #10243d;
  font-size: 22px;
  line-height: 1.4;
  font-weight: 800;
}

.article-pager__meta {
  color: #7a8c9e;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.article-pager__summary {
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.8;
}

.article-followup__header {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 18px;
  margin: 0 0 24px;
}

.article-followup__link {
  color: var(--primary) !important;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.solutions-page {
  position: relative;
}

.solutions-page__intro {
  position: relative;
  z-index: 1;
  max-width: 720px;
  margin: 0 0 40px;
}

.solutions-page__lead {
  margin: 0;
  color: #334155;
  font-size: 18px;
  line-height: 1.8;
  font-weight: 500;
}

.solutions-page__sections {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.solutions-section {
  padding: 32px;
  border: 1px solid var(--border);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.06);
  backdrop-filter: blur(10px);
}

.solutions-section__header {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border);
}

.solutions-section__eyebrow {
  margin: 0 0 12px;
  color: var(--primary);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.solutions-section__title {
  margin: 0;
  padding: 0;
  border: none;
  color: var(--dark);
  font-size: 30px;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.solutions-section__description {
  max-width: 560px;
  margin: 0;
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.8;
}

.hub-container--solutions {
  margin-top: 0;
}

.hub-item {
  display: block;
  padding: 28px;
  border: 1px solid rgba(14, 165, 233, 0.12);
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 250, 252, 0.98));
  box-shadow: 0 14px 28px rgba(15, 23, 42, 0.04);
  text-decoration: none;
  transition: var(--transition);
}

.hub-item:hover {
  transform: translateY(-6px);
  border-color: rgba(14, 165, 233, 0.3);
  background: linear-gradient(180deg, rgba(14, 165, 233, 0.1), rgba(255, 255, 255, 1));
  box-shadow: 0 22px 44px rgba(14, 165, 233, 0.14);
}

.hub-item__title,
.hub-item h4 {
  margin: 0 0 10px;
  color: #0f172a;
  font-size: 18px;
  line-height: 1.35;
  font-weight: 800;
}

.hub-item__meta {
  margin: 0;
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.7;
}

.hub-item:hover .hub-item__title,
.hub-item:hover h4 {
  color: #020617;
}

.hub-item:hover .hub-item__meta {
  color: #334155;
}

.solutions-sidebar-cta {
  margin-top: 28px;
  padding: 24px;
  border: 1px solid rgba(14, 165, 233, 0.18);
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(14, 165, 233, 0.08), rgba(255, 255, 255, 1));
}

.solutions-sidebar-cta h4 {
  margin: 0 0 10px;
  color: var(--dark);
  font-size: 18px;
  font-weight: 800;
}

.solutions-sidebar-cta p {
  margin: 0 0 18px;
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.7;
}

.sidebar-link-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 14px 18px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: #fff !important;
  font-size: 14px;
  font-weight: 800;
  box-shadow: 0 12px 24px rgba(14, 165, 233, 0.2);
}

.sidebar-link-button:hover {
  background: linear-gradient(135deg, #0f172a, #1e293b);
  color: #fff !important;
}

.cta-banner--spaced {
  margin-top: 64px;
}

.page-header--solid {
  background: #0f172a;
}

.page-header--wide {
  padding: 80px 48px;
}

.faq-page {
  display: grid;
  gap: 32px;
}

.faq-page__intro {
  margin: 0;
  color: #475569;
  font-size: 18px;
  line-height: 1.8;
}

.faq-quick-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.faq-quick-card {
  padding: 24px;
  border: 1px solid rgba(14, 165, 233, 0.14);
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(14, 165, 233, 0.08), rgba(255, 255, 255, 0.98));
  box-shadow: 0 14px 30px rgba(15, 23, 42, 0.05);
}

.faq-quick-card__label {
  margin: 0 0 10px;
  color: #64748b;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.faq-quick-card__value {
  margin: 0 0 10px;
  color: #0f172a;
  font-size: 28px;
  font-weight: 800;
  line-height: 1.15;
}

.faq-quick-card__text {
  margin: 0;
  color: #64748b;
  font-size: 14px;
  line-height: 1.7;
}

.faq-topic-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.faq-topic-nav a,
.faq-topic-nav a:visited {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 16px;
  border: 1px solid rgba(14, 165, 233, 0.14);
  border-radius: 999px;
  background: #fff;
  color: #0f172a;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-decoration: none;
}

.faq-topic-nav a:hover {
  border-color: rgba(14, 165, 233, 0.3);
  background: rgba(14, 165, 233, 0.08);
  color: var(--primary);
}

.faq-topic-section {
  display: grid;
  gap: 20px;
}

.faq-topic-section__header {
  display: grid;
  gap: 10px;
}

.faq-topic-section__eyebrow {
  margin: 0;
  color: var(--primary);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.faq-topic-section__title {
  margin: 0;
  color: #0f172a;
  font-size: 30px;
  font-weight: 800;
  line-height: 1.2;
}

.faq-topic-section__summary {
  margin: 0;
  color: #64748b;
  font-size: 16px;
  line-height: 1.8;
}

.faq-answer-card {
  padding: 28px 30px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 18px 36px rgba(15, 23, 42, 0.04);
}

.faq-answer-card h3 {
  margin: 0 0 14px;
  color: #0f172a;
  font-size: 24px;
  font-weight: 800;
  line-height: 1.3;
}

.faq-answer-card__summary {
  margin: 0 0 14px;
  color: #0f172a;
  font-size: 16px;
  line-height: 1.8;
}

.faq-answer-card__body p,
.faq-answer-card__body li {
  color: #475569;
  font-size: 15px;
  line-height: 1.8;
}

.faq-answer-card__body ul {
  margin: 14px 0 0 18px;
}

.faq-related-links {
  display: grid;
  gap: 18px;
}

.faq-related-links h3 {
  margin: 0;
  color: #0f172a;
  font-size: 26px;
  font-weight: 800;
}

.faq-related-links__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.faq-related-link,
.faq-related-link:visited {
  display: grid;
  gap: 10px;
  padding: 24px;
  border: 1px solid rgba(14, 165, 233, 0.14);
  border-radius: 22px;
  background: #fff;
  color: #0f172a;
  text-decoration: none;
  box-shadow: 0 14px 30px rgba(15, 23, 42, 0.04);
}

.faq-related-link:hover {
  border-color: rgba(14, 165, 233, 0.28);
  transform: translateY(-4px);
}

.faq-related-link__eyebrow {
  color: #64748b;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.faq-related-link strong {
  color: #0f172a;
  font-size: 20px;
  line-height: 1.35;
}

.faq-related-link span:last-child {
  color: #64748b;
  font-size: 14px;
  line-height: 1.7;
}

.faq-sidebar-card {
  display: grid;
  gap: 12px;
  margin-bottom: 24px;
  padding: 24px;
  border: 1px solid rgba(14, 165, 233, 0.14);
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(14, 165, 233, 0.08), rgba(255, 255, 255, 1));
}

.faq-sidebar-card--plain {
  background: #fff;
}

.faq-sidebar-card h3 {
  margin: 0;
  color: #0f172a;
  font-size: 20px;
  font-weight: 800;
}

.faq-sidebar-card p {
  margin: 0;
  color: #64748b;
  font-size: 14px;
  line-height: 1.8;
}

.faq-sidebar-links {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.faq-sidebar-links li {
  margin: 0;
}

.faq-sidebar-links a,
.faq-sidebar-links a:visited {
  color: #0f172a;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.6;
  text-decoration: none;
}

.faq-sidebar-links a:hover {
  color: var(--primary);
}

.geo-answer-panel {
  display: grid;
  gap: 12px;
  margin: 0 0 32px;
  padding: 28px 30px;
  border: 1px solid rgba(14, 165, 233, 0.16);
  border-radius: 26px;
  background: linear-gradient(180deg, rgba(14, 165, 233, 0.08), rgba(255, 255, 255, 0.98));
  box-shadow: 0 18px 36px rgba(15, 23, 42, 0.05);
}

.geo-answer-panel__eyebrow {
  margin: 0;
  color: var(--primary);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.geo-answer-panel h2 {
  margin: 0;
  color: #0f172a;
  font-size: 30px;
  line-height: 1.2;
}

.geo-answer-panel__lead {
  margin: 0;
  color: #0f172a;
  font-size: 17px;
  line-height: 1.8;
}

.geo-answer-panel p:last-child {
  margin: 0;
}

.geo-signal-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin: 0 0 32px;
}

.geo-signal-card {
  padding: 22px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 14px 30px rgba(15, 23, 42, 0.04);
}

.geo-signal-card__label {
  margin: 0 0 10px;
  color: #64748b;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.geo-signal-card__value {
  margin: 0 0 10px;
  color: #0f172a;
  font-size: 26px;
  font-weight: 800;
  line-height: 1.2;
}

.geo-signal-card__text {
  margin: 0;
  color: #64748b;
  font-size: 14px;
  line-height: 1.7;
}

.geo-checklist {
  display: grid;
  gap: 16px;
  margin: 0 0 32px;
}

.geo-checklist__item {
  padding: 24px 26px;
  border-left: 4px solid rgba(14, 165, 233, 0.35);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 14px 28px rgba(15, 23, 42, 0.04);
}

.geo-checklist__item h3 {
  margin: 0 0 8px;
  color: #0f172a;
  font-size: 20px;
  font-weight: 800;
}

.geo-checklist__item p {
  margin: 0;
  color: #475569;
  font-size: 15px;
  line-height: 1.8;
}

.geo-caution-box {
  margin: 0 0 32px;
  padding: 26px 28px;
  border: 1px solid rgba(244, 114, 182, 0.16);
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(248, 250, 252, 1), rgba(255, 241, 242, 0.88));
}

.geo-caution-box p,
.geo-caution-box li {
  color: #475569;
  font-size: 15px;
  line-height: 1.8;
}

.geo-caution-box ul {
  margin: 12px 0 0 18px;
}

.product-faq-block {
  display: grid;
  gap: 18px;
  margin-top: 40px;
}

.geo-answer-panel--solution {
  margin-top: 8px;
}

.page-header__eyebrow {
  margin: 0 0 16px;
  color: var(--primary) !important;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.full-width-shell {
  max-width: none !important;
  margin: 0 !important;
  padding: 0 !important;
  grid-template-columns: 1fr !important;
}

.full-width-main {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 40px 24px 64px;
}

/* ===== PRODUCTS PAGE ===== */
.products-page,
.tech-platform-page {
  max-width: 1200px;
  margin: 0 auto;
}

.products-filter-bar {
  display: flex;
  gap: 32px;
  margin: 0 auto 48px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--border);
}

.products-filter-bar__item {
  padding-bottom: 12px;
  color: #94a3b8;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.products-filter-bar__item.is-active {
  margin-bottom: -14px;
  border-bottom: 2px solid var(--primary);
  color: var(--primary);
  font-weight: 800;
}

.products-showcase-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 48px;
  margin: 0 auto;
}

.product-showcase-card {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--border);
  background: var(--white);
  border-radius: 0;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.04);
  transition: var(--transition);
}

.product-showcase-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 36px rgba(15, 23, 42, 0.08);
}

.product-showcase-card--wide {
  grid-column: 1 / -1;
}

.product-showcase-card__split {
  display: flex;
  flex-wrap: wrap;
}

.product-showcase-card__media {
  padding: 48px;
  text-align: center;
  background: #f8fafc;
  border-bottom: 1px solid var(--border);
}

.product-showcase-card__media--side {
  flex: 1;
  min-width: 300px;
  border-right: 1px solid var(--border);
  border-bottom: none;
}

.product-showcase-card__image {
  width: 100%;
  height: 320px;
  object-fit: contain;
  filter: drop-shadow(0 16px 24px rgba(0, 0, 0, 0.1));
}

.product-showcase-card__image--tall {
  height: auto;
  max-height: 400px;
}

.product-showcase-card__body {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 40px;
}

.product-showcase-card__body--wide {
  min-width: 300px;
  padding: 56px;
}

.product-showcase-card__title {
  margin: 0 0 16px;
  padding: 0;
  border: none;
  font-size: 28px;
  color: #0f172a;
  font-weight: 800;
}

.product-showcase-card__title--wide {
  font-size: 32px;
}

.product-showcase-card__description {
  margin: 0 0 24px;
  color: #64748b;
  font-size: 15px;
  line-height: 1.6;
}

.product-showcase-card__description--wide {
  margin-bottom: 32px;
  font-size: 16px;
  line-height: 1.7;
}

.product-showcase-card__specs {
  list-style: none;
  margin: 0 0 32px;
  padding: 0;
  border-top: 1px solid var(--border);
}

.product-showcase-card__specs--wide {
  margin-bottom: 40px;
}

.product-showcase-card__spec {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
}

.product-showcase-card__label {
  color: #64748b;
  font-weight: 600;
}

.product-showcase-card__value {
  color: #0f172a;
}

.product-showcase-card__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin-top: auto;
  padding: 18px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: #fff !important;
  font-weight: 800;
  text-align: center;
  box-shadow: 0 14px 30px rgba(14, 165, 233, 0.24);
}

.product-showcase-card__cta:hover {
  background: linear-gradient(135deg, #0f172a, #1e293b);
  color: #fff !important;
  box-shadow: 0 18px 38px rgba(15, 23, 42, 0.22);
}

.product-showcase-card__cta--dark {
  display: inline-flex;
  width: auto;
  align-self: flex-start;
  padding: 20px 48px;
  background: linear-gradient(135deg, #0f172a, #1e293b);
}

.product-showcase-card__cta--dark:hover {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
}

/* ===== TECHNOLOGY PAGE ===== */
.tech-platform-page__hero {
  margin-bottom: 64px;
}

.tech-stack-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  margin: 0 auto 64px;
}

.tech-stack-card {
  padding: 48px;
  border: 1px solid var(--border);
  background: var(--white);
}

.tech-stack-card:nth-child(odd) {
  border-right: none;
}

.tech-stack-card:nth-child(-n + 2) {
  border-bottom: none;
}

.tech-stack-card__header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}

.tech-stack-card__index {
  color: var(--primary);
  font-size: 48px;
  line-height: 1;
  font-weight: 800;
  opacity: 0.3;
}

.tech-stack-card__title {
  margin: 0;
  padding: 0;
  border: none;
  font-size: 24px;
  color: #0f172a;
  font-weight: 800;
}

.tech-stack-card__description {
  margin: 0 0 24px;
  color: #475569;
  font-size: 15px;
  line-height: 1.8;
}

.tech-stack-card__specs {
  list-style: none;
  margin: 0;
  padding: 0;
}

.tech-stack-card__spec {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 8px 0;
  border-top: 1px solid var(--border);
}

.tech-stack-card__label {
  color: #64748b;
  font-weight: 600;
}

.tech-stack-card__value {
  color: #0f172a;
}

.tech-strategy-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  margin: 0 auto 64px;
}

.tech-strategy-card {
  padding: 48px;
}

.tech-strategy-card--dark {
  background: #0f172a;
}

.tech-strategy-card--panel {
  background: #1e293b;
}

.tech-strategy-card h3 {
  margin: 0 0 16px;
  padding: 0;
  border: none;
  font-size: 22px;
  color: #fff;
  font-weight: 800;
}

.tech-strategy-card p {
  margin: 0;
  color: #94a3b8;
  font-size: 15px;
  line-height: 1.8;
}

.tech-strategy-card strong {
  color: var(--primary);
}

.tech-cta {
  margin: 0 auto 48px;
  padding: 64px;
  border: 1px solid var(--border);
  background: #f8fafc;
  text-align: center;
}

.tech-cta h2 {
  margin: 0 0 16px;
  padding: 0;
  border: none;
  font-size: 32px;
  color: #0f172a;
  font-weight: 800;
}

.tech-cta p {
  max-width: 600px;
  margin: 0 auto 32px;
  color: #64748b;
  font-size: 16px;
  line-height: 1.7;
}

.tech-cta__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 18px 48px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: #fff !important;
  font-weight: 800;
  box-shadow: 0 14px 30px rgba(14, 165, 233, 0.24);
}

.tech-cta__button:hover {
  background: linear-gradient(135deg, #0f172a, #1e293b);
  color: #fff !important;
  box-shadow: 0 18px 38px rgba(15, 23, 42, 0.22);
}

.tech-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
  margin-top: 64px;
}

.tech-card {
  position: relative;
  overflow: hidden;
  padding: 40px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.03);
  transition: all 0.4s ease;
}

.tech-card:hover {
  transform: translateY(-10px);
  border-color: var(--primary);
  background: rgba(255, 255, 255, 0.05);
}

.tech-card::after {
  content: "";
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(45, 108, 223, 0.1) 0%, transparent 70%);
  z-index: -1;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.tech-card:hover::after {
  opacity: 1;
}

.tech-num {
  margin-bottom: 16px;
  font-size: 48px;
  color: var(--primary);
  font-weight: 800;
  opacity: 0.5;
}

.tech-card h3 {
  margin-bottom: 20px;
  font-size: 24px;
  color: #fff;
}

.tech-card p {
  font-size: 15px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.6);
}

.tech-bg-grid {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(rgba(45, 108, 223, 0.05) 1px, transparent 1px), linear-gradient(90deg, rgba(45, 108, 223, 0.05) 1px, transparent 1px);
  background-size: 50px 50px;
  z-index: -1;
  pointer-events: none;
}

.tech-card-icon {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  padding: 12px;
  border-radius: 12px;
  background: rgba(45, 108, 223, 0.1);
  color: var(--primary);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.tech-card:hover .tech-card-icon {
  background: var(--primary);
  color: #000;
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 0 20px rgba(45, 108, 223, 0.4);
}

.tech-card-icon svg {
  width: 100%;
  height: 100%;
  stroke-width: 1.5;
}

.hub-title {
  margin: 40px auto 24px;
  padding-bottom: 8px;
  display: inline-block;
  text-align: center;
  border-bottom: 2px solid var(--primary);
  font-size: 28px;
  color: var(--primary);
}

.hub-container {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 24px;
  margin-top: 20px;
}

/* ===== HOMEPAGE & GLOBAL FOOTER ===== */
.premium-master-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 48px 24px 80px;
}

.hero-premium {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  gap: 48px;
  align-items: center;
  padding: 72px 64px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 32px;
  background: radial-gradient(circle at top right, rgba(14, 165, 233, 0.22), transparent 32%), radial-gradient(circle at bottom left, rgba(34, 211, 238, 0.16), transparent 30%), linear-gradient(135deg, #020617 0%, #0f172a 55%, #111827 100%);
  box-shadow: 0 28px 64px rgba(2, 6, 23, 0.28);
}

.hero-premium::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 36px 36px;
  mask-image: linear-gradient(to right, rgba(0, 0, 0, 0.85), transparent 75%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
}

.premium-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
  padding: 10px 16px;
  border: 1px solid rgba(34, 211, 238, 0.18);
  border-radius: 999px;
  background: rgba(14, 165, 233, 0.1);
  color: var(--accent);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.premium-tag::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 16px rgba(34, 211, 238, 0.65);
}

.hero-premium h2 {
  margin: 0 0 24px;
  font-size: clamp(40px, 6vw, 68px);
  line-height: 0.95;
  color: var(--white);
  font-weight: 800;
  letter-spacing: -0.04em;
}

.hero-premium h2 span {
  display: inline-block;
  color: transparent;
  background: linear-gradient(135deg, #fff 5%, var(--accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-premium p {
  max-width: 640px;
  margin: 0 0 32px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 18px;
  line-height: 1.8;
}

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

.btn-primary,
.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 190px;
  padding: 16px 26px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.02em;
  transition: var(--transition);
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: var(--white) !important;
  box-shadow: 0 14px 30px rgba(14, 165, 233, 0.28);
}

.btn-primary:hover {
  color: var(--white) !important;
  transform: translateY(-3px);
  box-shadow: 0 18px 38px rgba(14, 165, 233, 0.34);
}

.btn-secondary {
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.04);
  color: var(--white) !important;
}

.btn-secondary:hover {
  color: var(--white) !important;
  transform: translateY(-3px);
  background: rgba(255, 255, 255, 0.08);
}

.hero-visual {
  position: relative;
  min-height: 420px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.hero-visual::before,
.hero-visual::after {
  content: "";
  position: absolute;
  border-radius: 50%;
}

.hero-visual::before {
  inset: 40px 48px auto auto;
  width: 220px;
  height: 220px;
  background: radial-gradient(circle, rgba(34, 211, 238, 0.45), rgba(34, 211, 238, 0.02) 72%);
  filter: blur(6px);
}

.hero-visual::after {
  left: 56px;
  bottom: 56px;
  width: 260px;
  height: 260px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: inset 0 0 60px rgba(14, 165, 233, 0.08);
}

.stats-premium {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
  margin: 28px 0 72px;
}

.stats-premium .stat {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 28px 24px;
  border: 1px solid var(--border);
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.95), #ffffff);
  box-shadow: 0 12px 24px rgba(15, 23, 42, 0.05);
}

.stats-premium .num {
  font-size: 34px;
  line-height: 1;
  color: var(--dark);
  font-weight: 800;
  letter-spacing: -0.04em;
}

.stats-premium .lbl {
  color: var(--text-muted);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.products-premium-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
  margin-bottom: 64px;
}

.card-premium-modern {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 28px;
  border: 1px solid var(--border);
  border-radius: 24px;
  background: linear-gradient(180deg, #ffffff, #f8fafc);
  box-shadow: 0 16px 32px rgba(15, 23, 42, 0.06);
  transition: var(--transition);
}

.card-premium-modern:hover {
  transform: translateY(-8px);
  border-color: rgba(14, 165, 233, 0.28);
  box-shadow: 0 22px 48px rgba(14, 165, 233, 0.12);
}

.icon-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 220px;
  margin-bottom: 24px;
  padding: 24px;
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(14, 165, 233, 0.08), rgba(14, 165, 233, 0.02));
}

.icon-wrapper img {
  width: 100%;
  max-height: 180px;
  object-fit: contain;
  filter: drop-shadow(0 14px 30px rgba(15, 23, 42, 0.12));
}

.card-premium-modern h3 {
  margin: 0 0 12px;
  font-size: 24px;
  color: var(--dark);
  font-weight: 800;
  letter-spacing: -0.03em;
}

.card-premium-modern p {
  margin: 0 0 20px;
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.8;
}

.card-premium-modern a {
  margin-top: auto;
  color: var(--primary) !important;
  font-size: 15px;
  font-weight: 800;
}

.global-footer {
  margin-top: 0;
  background: linear-gradient(180deg, #0f172a 0%, #020617 100%);
  color: rgba(255, 255, 255, 0.7);
}

.footer-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 72px 24px 28px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 32px;
}

.footer-brand,
.footer-links,
.footer-contact {
  min-width: 0;
}

.footer-brand__wordmark {
  display: inline-flex;
  align-items: baseline;
  gap: 2px;
  color: var(--white);
  font-size: 24px;
  font-weight: 800;
  letter-spacing: -1px;
}

.footer-brand__wordmark-muted {
  opacity: 0.6;
}

.footer-brand__description {
  margin-top: 16px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
  line-height: 1.7;
}

.footer-links h4,
.footer-contact h4 {
  margin: 0 0 18px;
  color: var(--white);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-links ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a,
.footer-bottom a {
  color: rgba(255, 255, 255, 0.75) !important;
}

.footer-links a:hover,
.footer-bottom a:hover {
  color: var(--accent) !important;
}

.footer-contact p {
  margin: 0 0 12px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 15px;
  line-height: 1.8;
}

.footer-contact a {
  color: rgba(255, 255, 255, 0.9) !important;
}

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

.footer-bottom {
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-bottom p {
  margin: 0;
  color: rgba(255, 255, 255, 0.5);
  font-size: 13px;
  line-height: 1.7;
}

/* ===== ANIMATIONS ===== */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

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

@keyframes glowPulse {
  0% {
    transform: scale(1);
    opacity: 0.8;
  }

  50% {
    transform: scale(1.1);
    opacity: 1;
    box-shadow: 0 0 15px var(--primary-glow);
  }

  100% {
    transform: scale(1);
    opacity: 0.8;
  }
}

/* ===== SMALL UTILITIES ===== */
.body-hero {
  display: none;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .grid-2,
  .product-detail-hero,
  .process-steps {
    grid-template-columns: 1fr;
  }

  .detail-copy,
  .detail-copy--wide,
  .detail-copy--left {
    padding-left: 0;
    padding-right: 0;
  }

  .cases-page__overview {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .page-grid-two {
    grid-template-columns: 1fr;
  }

  .products-showcase-grid,
  .tech-stack-grid,
  .tech-strategy-grid {
    grid-template-columns: 1fr;
  }

  .tech-stack-card:nth-child(odd) {
    border-right: 1px solid var(--border);
  }

  .tech-stack-card:nth-child(-n + 2) {
    border-bottom: 1px solid var(--border);
  }

  .product-showcase-card__media--side {
    border-right: none;
    border-bottom: 1px solid var(--border);
  }

  .hero-premium {
    grid-template-columns: 1fr;
    padding: 56px 40px;
  }

  .stats-premium,
  .products-premium-grid,
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  #shell {
    grid-template-columns: 1fr;
    padding: 32px 24px 64px;
  }

  #sidebar {
    position: static;
    margin-top: 40px;
    padding: 32px 0 0 0;
    border-top: 1px solid var(--border);
    border-radius: 0;
    box-shadow: none;
  }

  .product-grid,
  .products-grid {
    grid-template-columns: 1fr 1fr;
  }

  .solution-item {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 40px;
  }
}

@media (max-width: 768px) {
  .hero-section,
  .simple-landing__cta,
  .feature-card,
  .benefit-item,
  .product-detail-media,
  .process-step-content {
    padding: 32px 24px;
  }

  .hero-section .subtitle,
  .product-detail-summary {
    font-size: 16px;
  }

  .product-detail-title {
    font-size: 28px;
  }

  .process-step {
    padding-left: 56px;
  }

  .simple-landing__cta .tech-cta__button {
    min-width: 0;
    width: 100%;
  }

  .cases-page__overview {
    grid-template-columns: 1fr;
  }

  .solutions-section {
    padding: 24px;
    border-radius: 24px;
  }

  .solutions-section__header {
    margin-bottom: 20px;
    padding-bottom: 20px;
  }

  .solutions-section__title {
    font-size: 24px;
  }

  .solutions-page__lead {
    font-size: 16px;
  }

  .page-header--premium,
  .card-premium-modern--spacious,
  .card-premium-modern--compact {
    padding: 32px 24px;
  }

.full-width-shell {
  max-width: none !important;
  margin: 0 !important;
  padding: 0 !important;
  grid-template-columns: 1fr !important;
}

.full-width-main {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 40px 24px 64px;
}

  .page-header--wide,
  .tech-cta,
  .tech-stack-card,
  .tech-strategy-card,
  .product-showcase-card__media,
  .product-showcase-card__body,
  .product-showcase-card__body--wide {
    padding: 32px 24px;
  }

  .products-filter-bar {
    flex-wrap: wrap;
    gap: 18px;
  }

  .products-showcase-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .product-showcase-card__image {
    height: 260px;
  }

  .product-showcase-card__title,
  .product-showcase-card__title--wide,
  .tech-cta h2 {
    font-size: 28px;
  }

  .tech-stack-card__header {
    align-items: flex-start;
  }

  .tech-stack-card__spec,
  .product-showcase-card__spec {
    flex-direction: column;
    gap: 6px;
  }

  .product-showcase-card__cta,
  .product-showcase-card__cta--dark,
  .tech-cta__button {
    width: 100%;
    padding-left: 24px;
    padding-right: 24px;
  }

  .product-showcase-card__cta--dark {
    align-self: stretch;
  }

  .premium-master-container {
    padding: 32px 16px 64px;
  }

  .hero-premium {
    padding: 40px 24px;
    border-radius: 24px;
  }

  .hero-premium h2 {
    font-size: 38px;
  }

  .hero-premium p {
    font-size: 16px;
  }

  .hero-visual {
    min-height: 280px;
  }

  .stats-premium,
  .products-premium-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .stats-premium .stat,
  .card-premium-modern {
    padding: 24px;
  }

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

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

  .hero {
    padding: 48px 32px;
  }

  .hero h2 {
    font-size: 32px !important;
  }

  .stats-bar {
    flex-direction: column;
    gap: 0;
  }

  .stat-item {
    padding: 24px;
    border-right: none !important;
    border-bottom: 1px solid var(--border);
  }

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

  .benefit-grid,
  .products-grid {
    grid-template-columns: 1fr;
  }

  .cta-section,
  .cta-banner {
    padding: 48px 24px;
  }

  #header-inner {
    flex-direction: column;
    gap: 16px;
  }

  #nav ul {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .hero h2 {
    font-size: 28px !important;
  }

  .stat-num {
    font-size: 32px;
  }
}

@media (max-width: 968px) {
  #header-inner {
    padding: 0 24px;
  }

  .header-cta {
    padding: 10px 20px;
    font-size: 12px;
  }

  .nav-toggle-label {
    display: block;
  }

  #nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    padding: 80px 40px;
    flex-direction: column !important;
    justify-content: center !important;
    align-items: center !important;
    background: rgba(2, 6, 23, 0.95);
    backdrop-filter: blur(20px);
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.5);
    transition: right 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    z-index: 1050;
  }

  #nav ul {
    display: flex !important;
    flex-direction: column;
    align-items: center;
    gap: 40px;
  }

  #nav a {
    font-size: 18px !important;
  }

  #nav-toggle:checked ~ #nav {
    right: 0;
  }

  #nav-toggle:checked ~ .nav-toggle-label span {
    background: transparent;
  }

  #nav-toggle:checked ~ .nav-toggle-label span::before {
    transform: rotate(45deg);
    top: 0;
  }

  #nav-toggle:checked ~ .nav-toggle-label span::after {
    transform: rotate(-45deg);
    top: 0;
  }
}

/* ===== 2026 XINGYAO INDUSTRIAL BRAND REFRESH ===== */
:root {
  --primary: #15438c;
  --primary-glow: rgba(21, 67, 140, 0.14);
  --secondary: #315f9c;
  --accent: #7da3d8;
  --dark: #071524;
  --darker: #0b1d33;
  --dark-panel: #13263f;
  --light: #f3f5f8;
  --text-main: #2c3c4f;
  --text-muted: #4f6278;
  --text-dark-muted: #c3d0df;
  --border: #d7e0ea;
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 14px;
}

body {
  background: #f3f5f8;
  color: #243447;
}

#header-wrapper {
  background: linear-gradient(90deg, #081626 0%, #0c2037 52%, #112846 100%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 10px 22px rgba(7, 21, 36, 0.14);
}

#header-inner {
  height: 88px;
  gap: 32px;
  position: relative;
}

.site-brand {
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.site-brand__company {
  display: inline-block;
  color: #ffffff !important;
  font-size: 34px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-family: 'Oxanium', 'Plus Jakarta Sans', sans-serif;
  text-shadow: 0 0 18px rgba(125, 163, 216, 0.18);
}

.site-brand__line {
  margin-top: 6px;
  color: rgba(224, 232, 243, 0.72);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

#nav {
  gap: 22px;
}

#nav > ul {
  gap: 18px;
  align-items: center;
}

#nav > ul > li > a,
#nav > ul > li > .nav-link-row > a {
  padding: 32px 6px 26px !important;
  font-size: 14px !important;
  font-weight: 700 !important;
  letter-spacing: 0.08em;
  color: rgba(236, 242, 249, 0.94) !important;
}

#nav > ul > li > a::after,
#nav > ul > li > .nav-link-row > a::after {
  bottom: 16px;
  left: 0;
  width: 0;
  transform: none;
  height: 2px;
  background: var(--primary);
}

#nav > ul > li > a:hover::after,
#nav > ul > li > a.current::after,
#nav > ul > li > .nav-link-row > a:hover::after,
#nav > ul > li > .nav-link-row > a.current::after {
  width: 100%;
}

#nav a.current {
  box-shadow: none;
}

.nav-item-has-dropdown {
  position: relative;
}

.nav-link-row {
  display: flex;
  align-items: center;
}

.nav-link-row > a {
  min-width: 0;
}

.nav-subtoggle-input {
  display: none;
}

.nav-subtoggle-label {
  display: none;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  margin-left: 8px;
  border: 1px solid rgba(21, 67, 140, 0.18);
  border-radius: 6px;
  color: rgba(226, 233, 243, 0.82);
  cursor: pointer;
}

.nav-subtoggle-label::before {
  content: "";
  width: 8px;
  height: 8px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translateY(-1px);
  transition: transform 0.2s ease;
}

.nav-dropdown {
  position: absolute;
  top: calc(100% - 4px);
  left: 50%;
  right: auto;
  width: min(980px, calc(100vw - 48px));
  max-width: calc(100vw - 48px);
  max-height: calc(100dvh - 116px);
  padding: 22px 24px 18px;
  border: 1px solid rgba(17, 40, 70, 0.12);
  border-radius: 12px;
  background: #ffffff;
  box-shadow: 0 28px 54px rgba(7, 21, 36, 0.16);
  overflow-y: auto;
  overscroll-behavior: contain;
  scrollbar-gutter: stable;
  opacity: 0;
  visibility: hidden;
  transform: translateX(-50%) translateY(12px);
  transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s ease;
  z-index: 1200;
}

.nav-item-has-dropdown:hover > .nav-dropdown,
.nav-item-has-dropdown:focus-within > .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.nav-dropdown-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  align-content: start;
}

.nav-dropdown-footer {
  grid-column: 1 / -1;
  margin-top: 4px;
  padding-top: 14px;
  border-top: 1px solid var(--border);
}

.nav-dropdown-footer a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--primary) !important;
  font-size: 13px !important;
  font-weight: 800 !important;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav-dropdown-heading {
  margin: 0 0 14px;
  color: var(--primary);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.nav-dropdown-link {
  display: block;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
}

.nav-dropdown-group .nav-dropdown-link:last-child {
  border-bottom: none;
}

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

.nav-dropdown-link strong {
  display: block;
  color: #0d2038;
  font-size: 15px;
  line-height: 1.4;
  font-weight: 800;
}

.nav-dropdown-link span {
  display: block;
  margin-top: 6px;
  color: var(--text-muted);
  font-size: 13px;
  line-height: 1.6;
  font-weight: 500;
  letter-spacing: normal;
  text-transform: none;
  opacity: 1;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

@media (min-width: 969px) {
  #header-inner,
  #nav {
    overflow: visible;
  }

  .nav-link-row {
    gap: 6px;
  }

  .nav-subtoggle-label {
    display: inline-flex;
    flex-shrink: 0;
    width: 26px;
    height: 26px;
    margin-left: 0;
    border-color: rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.04);
  }

  .nav-subtoggle-input:checked ~ .nav-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
  }

  .nav-subtoggle-input:checked ~ .nav-link-row .nav-subtoggle-label::before {
    transform: rotate(-135deg) translate(-1px, 1px);
  }
}

.header-cta {
  margin-left: 8px;
  padding: 12px 18px;
  border: 1px solid rgba(49, 95, 156, 0.28);
  border-radius: 8px;
  background: linear-gradient(180deg, #1a4b95 0%, #12396f 100%) !important;
  color: #ffffff !important;
  box-shadow: none;
}

.header-cta::after {
  display: none;
}

.header-cta:hover {
  background: linear-gradient(180deg, #12396f 0%, #0e2d57 100%) !important;
  color: #ffffff !important;
  transform: none;
  box-shadow: none;
}

.hero-premium,
.page-header,
.hero-section,
.cta-section,
.cta-banner {
  border-radius: 12px;
  background-image: linear-gradient(135deg, rgba(21, 67, 140, 0.16) 0%, transparent 46%), linear-gradient(135deg, #071524 0%, #0c2037 58%, #112846 100%);
  box-shadow: 0 18px 36px rgba(7, 21, 36, 0.16);
}

.page-header--solid,
.page-header--glow-left,
.page-header--glow-right {
  background-image: linear-gradient(135deg, rgba(21, 67, 140, 0.18) 0%, transparent 42%), linear-gradient(135deg, #071524 0%, #0c2037 60%, #112846 100%);
}

.premium-tag,
.hero-section .tag,
.case-tag,
.product-showcase-card__tag {
  border-radius: 6px;
  border: 1px solid rgba(21, 67, 140, 0.14);
  background: rgba(21, 67, 140, 0.08);
  color: var(--primary);
  box-shadow: none;
}

.premium-tag::before {
  background: var(--primary);
  box-shadow: none;
}

.stats-bar,
.stats-premium .stat,
.card-premium-modern,
.feature-card,
.benefit-card,
.benefit-item,
.cases-page__overview-card,
.solutions-section,
.hub-item,
.product-showcase-card,
.product-detail-media,
.process-step-content,
.tech-stack-card,
.tech-cta,
.solutions-sidebar-cta,
#sidebar,
.simple-landing__cta,
.product-specs,
table.specstable {
  border-radius: 10px;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.05);
}

.case-card {
  border-radius: 12px;
  box-shadow: 0 16px 30px rgba(7, 21, 36, 0.14);
}

.case-card:hover,
.card-premium-modern:hover,
.product-showcase-card:hover,
.hub-item:hover,
.benefit-card:hover,
.solution-item:hover {
  transform: translateY(-4px);
}

.btn-primary,
.btn-secondary,
.product-showcase-card__cta,
.product-showcase-card__cta--dark,
.tech-cta__button,
.sidebar-link-button,
.cta-section a,
.cta-banner a {
  border-radius: 8px;
  background: linear-gradient(180deg, #1a4b95 0%, #12396f 100%);
  box-shadow: none;
}

.btn-secondary {
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.08);
}

.btn-primary:hover,
.btn-secondary:hover,
.product-showcase-card__cta:hover,
.product-showcase-card__cta--dark:hover,
.tech-cta__button:hover,
.sidebar-link-button:hover,
.cta-section a:hover,
.cta-banner a:hover {
  background: linear-gradient(180deg, #12396f 0%, #0e2d57 100%);
  transform: none;
  box-shadow: none;
}

.product-showcase-card__cta,
.product-showcase-card__cta--dark,
.tech-cta__button,
.sidebar-link-button,
.cta-section a,
.cta-banner a,
.btn-primary,
.btn-secondary {
  font-weight: 700;
}

.product-showcase-card__media,
.icon-wrapper,
.hero-visual {
  border-radius: 10px;
}

.hero-visual::before,
.hero-visual::after,
.hero-premium::before,
.tech-bg-grid {
  opacity: 0.45;
}

.page-header__eyebrow,
.card-title--accent,
.solutions-section__eyebrow,
.detail-copy__heading,
.product-showcase-card__tag,
.nav-dropdown-heading {
  color: var(--primary) !important;
}

.footer-brand__wordmark,
.footer-links h4,
.footer-contact h4 {
  color: #ffffff;
}

.global-footer {
  background: linear-gradient(180deg, #0c1b2e 0%, #071524 100%);
}

.products-page--catalog {
  max-width: 1260px;
}

.products-filter-bar--catalog {
  margin-bottom: 40px;
  padding-bottom: 18px;
}

.products-filter-bar--catalog .products-filter-bar__item {
  appearance: none;
  border: none;
  background: transparent;
  color: #667990;
  cursor: pointer;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.products-filter-bar--catalog a.products-filter-bar__item:hover,
.products-filter-bar--catalog a.products-filter-bar__item:focus,
.products-filter-bar--catalog button.products-filter-bar__item:hover,
.products-filter-bar--catalog button.products-filter-bar__item:focus {
  color: var(--primary);
}

.products-filter-bar__item.is-active,
.product-filter-chip.is-active {
  color: var(--primary) !important;
  border-color: rgba(21, 67, 140, 0.28) !important;
  background: rgba(21, 67, 140, 0.08) !important;
}

.products-filter-bar--catalog .products-filter-bar__item.is-active {
  margin-bottom: -20px;
  border: none;
  border-bottom: 2px solid var(--primary) !important;
  border-radius: 0;
  background: transparent !important;
}

.product-category-section {
  margin-bottom: 72px;
}

.product-matrix-section {
  margin: 0 0 72px;
}

.product-matrix-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 8px;
}

.product-matrix {
  width: 100%;
  min-width: 920px;
  border-collapse: separate;
  border-spacing: 0;
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
  background: #ffffff;
  box-shadow: 0 10px 22px rgba(15, 23, 42, 0.05);
}

.product-matrix th,
.product-matrix td {
  padding: 16px 18px;
  border-bottom: 1px solid var(--border);
  border-right: 1px solid var(--border);
  text-align: left;
  vertical-align: top;
  font-size: 14px;
  line-height: 1.7;
}

.product-matrix tr:last-child td,
.product-matrix tr:last-child th {
  border-bottom: none;
}

.product-matrix th:last-child,
.product-matrix td:last-child {
  border-right: none;
}

.product-matrix thead th {
  background: #10243d;
  color: #ffffff;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.product-matrix tbody th {
  width: 180px;
  background: #f8fafc;
  color: #243447;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.product-matrix td {
  color: var(--text-main);
}

.product-matrix a {
  color: var(--primary) !important;
  font-weight: 700;
}

.product-filter-stack {
  display: grid;
  gap: 16px;
  margin: 0 0 36px;
}

.product-filter-group {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.product-filter-chip {
  appearance: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 10px 14px;
  border: 1px solid rgba(21, 67, 140, 0.14);
  border-radius: 8px;
  background: #ffffff;
  color: var(--primary) !important;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.4;
  cursor: pointer;
}

.product-filter-chip:hover {
  background: #eef3f8;
}

.product-application-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
  margin: 0 0 56px;
}

.product-application-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 22px;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: #ffffff;
  box-shadow: 0 10px 22px rgba(15, 23, 42, 0.05);
}

.product-application-card__tag {
  display: inline-flex;
  align-items: center;
  margin-bottom: 12px;
  padding: 6px 10px;
  border: 1px solid rgba(21, 67, 140, 0.14);
  border-radius: 6px;
  background: rgba(21, 67, 140, 0.08);
  color: var(--primary);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.product-application-card__title {
  margin: 0 0 10px;
  color: #10243d;
  font-size: 20px;
  line-height: 1.35;
  font-weight: 800;
}

.product-application-card__body {
  margin: 0 0 16px;
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.75;
}

.product-application-card__link {
  margin-top: auto;
  color: var(--primary) !important;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.product-filter-empty {
  padding: 26px 24px;
  border: 1px dashed rgba(21, 67, 140, 0.24);
  border-radius: 10px;
  background: #f8fafc;
}

.product-filter-empty p {
  margin: 0;
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.75;
}

.product-showcase-card.is-filtered-out,
.product-category-section.is-filtered-out {
  display: none !important;
}

.product-category-section__header {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px 32px;
  margin-bottom: 28px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--border);
}

.product-category-section__eyebrow {
  margin: 0 0 10px;
  color: var(--primary);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.product-category-section__title {
  margin: 0;
  padding: 0;
  border: none;
  color: var(--dark);
  font-size: 30px;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.product-category-section__description {
  max-width: 560px;
  margin: 0;
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.8;
}

.products-showcase-grid--catalog {
  gap: 30px;
}

.products-showcase-grid--two-column {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.product-showcase-card__tag {
  display: inline-flex;
  align-items: center;
  margin-bottom: 14px;
  padding: 6px 10px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.product-showcase-card__title {
  font-size: 24px;
}

.product-showcase-card__description {
  color: #55697f;
}

.product-detail-title,
.hero-premium h2,
.page-header h1,
.hero-section h1 {
  letter-spacing: -0.035em;
}

@media (max-width: 968px) {
  html:has(#nav-toggle:checked),
  body:has(#nav-toggle:checked) {
    overflow: hidden;
  }

  #header-inner {
    height: auto;
    min-height: 82px;
    padding: 18px 20px;
    gap: 18px;
    flex-direction: row;
    align-items: center;
  }

  .site-brand {
    flex: 1;
  }

  .site-brand__company {
    font-size: 30px;
  }

  .site-brand__line {
    font-size: 10px;
    letter-spacing: 0.14em;
  }

  #nav {
    width: 100vw;
    max-width: 100vw;
    height: 100dvh;
    padding: 88px 18px calc(env(safe-area-inset-bottom) + 24px);
    align-items: flex-start !important;
    justify-content: flex-start !important;
    overflow-y: auto;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
    background: rgba(8, 22, 38, 0.98);
  }

  #nav > ul {
    width: 100%;
    gap: 18px;
  }

  #nav > ul > li {
    width: 100%;
  }

  .nav-link-row {
    width: 100%;
    position: relative;
    justify-content: space-between;
    gap: 10px;
  }

  .nav-link-row > a {
    flex: 1;
    pointer-events: none;
  }

  #nav > ul > li > a,
  #nav > ul > li > .nav-link-row > a {
    padding: 0 !important;
    font-size: 16px !important;
    letter-spacing: 0.05em;
  }

  .nav-subtoggle-label {
    display: inline-flex;
    position: absolute;
    inset: -8px -6px;
    width: auto;
    height: auto;
    margin-left: 0;
    border: none;
    background: transparent;
    color: rgba(255, 255, 255, 0.82);
    justify-content: flex-end;
    align-items: center;
  }

  .nav-subtoggle-label::before {
    position: absolute;
    right: 10px;
    top: 50%;
    margin-top: -6px;
  }

  #nav > ul > li > a::after,
  #nav > ul > li > .nav-link-row > a::after {
    display: none;
  }

  .nav-dropdown,
  .nav-dropdown--solutions {
    position: static;
    min-width: 0;
    width: 100%;
    max-width: 100%;
    max-height: none;
    margin-top: 14px;
    padding: 16px 18px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    background: rgba(14, 32, 56, 0.9);
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    transform: none;
    display: none;
  }

  .nav-subtoggle-input:checked ~ .nav-dropdown {
    display: block;
  }

  .nav-subtoggle-input:checked ~ .nav-link-row .nav-subtoggle-label::before {
    transform: rotate(-135deg) translate(-1px, 1px);
  }

  .nav-dropdown-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .nav-dropdown-heading {
    color: #8fb0dc;
  }

  .nav-dropdown-link span {
    display: none;
  }

  .nav-dropdown-link {
    border-bottom-color: rgba(255, 255, 255, 0.08);
  }

  .nav-dropdown-link strong {
    color: #ffffff;
  }

  .nav-dropdown-link span {
    color: rgba(255, 255, 255, 0.7);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  .nav-dropdown-footer {
    border-top-color: rgba(255, 255, 255, 0.08);
  }

  .header-cta {
    width: 100%;
    margin: 4px 0 0;
    padding: 14px 16px;
  }

  .products-showcase-grid--two-column {
    grid-template-columns: 1fr;
  }

  .product-category-section__header {
    margin-bottom: 20px;
    padding-bottom: 16px;
  }

  .product-category-section__title {
    font-size: 26px;
  }
}

/* ===== PRODUCT DETAIL MODULES ===== */
.structured-breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  margin: 0 0 24px;
  color: #73859a;
  font-size: 13px;
  line-height: 1.6;
}

.structured-breadcrumbs a {
  color: #667a91 !important;
}

.structured-breadcrumbs a:hover {
  color: var(--primary) !important;
}

.structured-breadcrumbs .breadcrumb-separator {
  color: #9aa8b8;
}

.structured-breadcrumbs .breadcrumb-current {
  color: #243447;
  font-weight: 700;
}

.product-download-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  margin: 56px 0 32px;
  padding: 28px 30px;
  border: 1px solid rgba(21, 67, 140, 0.16);
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(21, 67, 140, 0.08), rgba(255, 255, 255, 1));
}

.product-download-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-end;
}

.product-download-cta__eyebrow {
  margin: 0 0 10px;
  color: var(--primary);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.product-download-cta__title {
  margin: 0 0 10px;
  color: #10243d;
  font-size: 24px;
  font-weight: 800;
}

.product-download-cta__body {
  margin: 0;
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.75;
}

.product-download-cta__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 220px;
  padding: 16px 24px;
  border-radius: 8px;
  background: linear-gradient(180deg, #1a4b95 0%, #12396f 100%);
  color: #fff !important;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.product-download-cta__button:hover {
  background: linear-gradient(180deg, #12396f 0%, #0e2d57 100%);
}

.product-download-cta__button--secondary {
  background: #ffffff;
  border: 1px solid rgba(21, 67, 140, 0.2);
  color: var(--primary) !important;
}

.product-download-cta__button--secondary:hover {
  background: #eef3f8;
  color: var(--primary) !important;
}

.related-products {
  margin: 56px 0 40px;
}

.related-products__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px 24px;
  margin-bottom: 24px;
}

.related-products__eyebrow {
  margin: 0 0 10px;
  color: var(--primary);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.related-products__title {
  margin: 0;
  color: #10243d;
  font-size: 28px;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.related-products__description {
  max-width: 520px;
  margin: 0;
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.75;
}

.related-products__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

.related-product-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 24px;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: #ffffff;
  box-shadow: 0 10px 22px rgba(15, 23, 42, 0.05);
}

.related-product-card__eyebrow {
  margin: 0 0 12px;
  color: var(--primary);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.related-product-card__title {
  margin: 0 0 12px;
  color: #10243d;
  font-size: 18px;
  line-height: 1.4;
  font-weight: 800;
}

.related-product-card__body {
  margin: 0 0 18px;
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.7;
}

.related-product-card__link {
  margin-top: auto;
  color: var(--primary) !important;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* ===== HOMEPAGE REFRESH ===== */
.section-header--left {
  max-width: none;
  margin: 0 0 28px;
  text-align: left;
}

.home-industrial-hero {
  margin-bottom: 32px;
}

.home-industrial-hero .hero-content {
  max-width: 650px;
}

.home-industrial-hero .hero-premium h2,
.home-industrial-hero h2 {
  margin-bottom: 20px;
}

.home-industrial-hero .premium-tag {
  margin-bottom: 18px;
}

.home-hero-visual {
  padding: 24px;
}

.home-hero-visual__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

.home-hero-visual__card {
  padding: 18px 18px 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
}

.home-hero-visual__card--accent {
  border-color: rgba(125, 163, 216, 0.22);
  background: rgba(21, 67, 140, 0.22);
}

.home-hero-visual__title {
  display: block;
  margin-bottom: 8px;
  color: #ffffff;
  font-size: 16px;
  font-weight: 800;
}

.home-hero-visual__text {
  margin: 0;
  color: rgba(225, 233, 242, 0.8);
  font-size: 13px;
  line-height: 1.7;
}

.home-product-grid,
.home-sector-grid,
.home-capability-grid {
  display: grid;
  gap: 24px;
}

.home-product-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-bottom: 72px;
}

.home-sector-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-bottom: 72px;
}

.home-capability-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-bottom: 72px;
}

.home-product-card,
.home-sector-card,
.home-capability-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: #ffffff;
  box-shadow: 0 10px 22px rgba(15, 23, 42, 0.05);
}

.home-product-card__media {
  padding: 24px;
  border-bottom: 1px solid var(--border);
  background: linear-gradient(180deg, #eef3f8, #f8fafc);
}

.home-product-card__media img {
  width: 100%;
  height: 180px;
  object-fit: contain;
}

.home-product-card__body,
.home-sector-card__body,
.home-capability-card__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 24px;
}

.home-card-tag {
  display: inline-flex;
  align-items: center;
  margin-bottom: 12px;
  padding: 6px 10px;
  border: 1px solid rgba(21, 67, 140, 0.14);
  border-radius: 6px;
  background: rgba(21, 67, 140, 0.08);
  color: var(--primary);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.home-product-card__title,
.home-sector-card__title,
.home-capability-card__title {
  margin: 0 0 12px;
  color: #10243d;
  font-size: 22px;
  line-height: 1.35;
  font-weight: 800;
}

.home-product-card__body p,
.home-sector-card__body p,
.home-capability-card__body p {
  margin: 0 0 18px;
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.8;
}

.home-product-card__link,
.home-sector-card__link,
.home-capability-card__link {
  margin-top: auto;
  color: var(--primary) !important;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.home-sector-card {
  background: linear-gradient(180deg, #ffffff, #f7f9fb);
}

.home-capability-card {
  background: linear-gradient(180deg, #0d2038, #102a46);
  border-color: rgba(255, 255, 255, 0.08);
}

.home-capability-card__body {
  padding: 28px 24px;
}

.home-capability-card__title {
  color: #ffffff;
  font-size: 20px;
}

.home-capability-card__body p {
  color: rgba(222, 231, 242, 0.78);
}

.home-homepage-cta,
.home-industrial-cta {
  margin-top: 0;
}

@media (max-width: 1024px) {
  .facts-grid,
  .insights-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .article-pager {
    grid-template-columns: 1fr;
  }

  .product-application-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .case-proof-grid {
    grid-template-columns: 1fr;
  }

  .related-products__grid,
  .home-product-grid,
  .home-capability-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .home-sector-grid {
    grid-template-columns: 1fr;
  }
}

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

  .insights-overview__title,
  .article-followup__title {
    font-size: 26px;
  }

  .article-pager__card {
    padding: 20px;
  }

  .insights-category-chip {
    width: 100%;
    justify-content: space-between;
  }

  .faq-quick-grid,
  .faq-related-links__grid,
  .geo-signal-grid {
    grid-template-columns: 1fr;
  }

  .faq-answer-card {
    padding: 22px 20px;
  }

  .geo-answer-panel,
  .geo-caution-box,
  .geo-checklist__item {
    padding: 22px 20px;
  }

  .geo-answer-panel h2 {
    font-size: 24px;
  }

  .faq-answer-card h3 {
    font-size: 21px;
  }

  .faq-topic-section__title,
  .faq-related-links h3 {
    font-size: 24px;
  }

  .article-tag-strip {
    align-items: flex-start;
  }

  .article-tag-strip__items {
    width: 100%;
  }

  .article-category-jump {
    padding: 20px;
  }

  .article-category-jump__title {
    font-size: 24px;
  }

  .article-category-jump__link {
    width: 100%;
  }

  .product-filter-group {
    gap: 8px;
  }

  .product-filter-chip {
    width: 100%;
    justify-content: flex-start;
  }

  .product-application-grid,
  .case-proof-metrics {
    grid-template-columns: 1fr;
  }

  .case-proof-card__body {
    padding: 20px;
  }

  .case-proof-card__title {
    font-size: 22px;
  }

  .home-product-card__body p,
  .home-sector-card__body p,
  .home-capability-card__body p,
  .solutions-card__body p,
  .solution-product-card__body p,
  .related-product-card__body,
  .product-pager__body,
  .case-card__summary,
  .cases-page__overview-card p {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  .home-product-card__body p,
  .home-sector-card__body p,
  .home-capability-card__body p,
  .solutions-card__body p,
  .solution-product-card__body p,
  .related-product-card__body,
  .product-pager__body,
  .case-card__summary {
    -webkit-line-clamp: 3;
  }

  .cases-page__overview-card p {
    -webkit-line-clamp: 2;
  }

  .solutions-card__body ul {
    display: none;
  }

  .case-card {
    height: 340px;
  }

  .case-content {
    padding: 24px;
  }

  .case-title {
    font-size: 20px;
  }

  .case-metric {
    gap: 16px;
    margin-top: 14px;
    padding-top: 14px;
  }

  .metric-box strong {
    font-size: 18px;
  }

  .product-download-cta {
    grid-template-columns: 1fr;
    padding: 24px;
  }

  .product-download-cta__button {
    width: 100%;
  }

  .product-download-cta__actions {
    justify-content: stretch;
  }

  .related-products__header {
    align-items: flex-start;
  }

  .related-products__grid,
  .home-product-grid,
  .home-capability-grid {
    grid-template-columns: 1fr;
  }

  .home-product-card__media img {
    height: 160px;
  }

  .home-hero-visual {
    padding: 18px;
  }
}

/* ===== PRODUCT PAGER ===== */
.product-pager {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  margin: 32px 0 48px;
}

.product-pager__card {
  display: flex;
  flex-direction: column;
  min-height: 180px;
  padding: 24px;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: #ffffff;
  box-shadow: 0 10px 22px rgba(15, 23, 42, 0.05);
}

.product-pager__eyebrow {
  margin: 0 0 10px;
  color: var(--primary);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.product-pager__title {
  margin: 0 0 12px;
  color: #10243d;
  font-size: 20px;
  line-height: 1.4;
  font-weight: 800;
}

.product-pager__body {
  margin: 0 0 16px;
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.7;
}

.product-pager__link {
  margin-top: auto;
  color: var(--primary) !important;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* ===== SOLUTION HUB REFRESH ===== */
.solutions-hub-page {
  max-width: 1260px;
  margin: 0 auto;
}

.solutions-hub-overview {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin: 0 0 48px;
}

.solutions-hub-overview__card {
  padding: 24px;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: #ffffff;
  box-shadow: 0 10px 22px rgba(15, 23, 42, 0.05);
}

.solutions-hub-overview__card strong {
  display: block;
  margin-bottom: 10px;
  color: #10243d;
  font-size: 18px;
  font-weight: 800;
}

.solutions-hub-overview__card p {
  margin: 0;
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.7;
}

.solutions-hub-section {
  margin-bottom: 64px;
}

.solutions-hub-section__header {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 18px 28px;
  margin-bottom: 26px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--border);
}

.solutions-hub-section__eyebrow {
  margin: 0 0 10px;
  color: var(--primary);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.solutions-hub-section__title {
  margin: 0;
  color: #10243d;
  font-size: 30px;
  line-height: 1.15;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.solutions-hub-section__description {
  max-width: 560px;
  margin: 0;
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.8;
}

.solutions-card-grid,
.solution-product-grid {
  display: grid;
  gap: 24px;
}

.solutions-card-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.solution-product-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.solutions-card,
.solution-product-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: #ffffff;
  box-shadow: 0 10px 22px rgba(15, 23, 42, 0.05);
}

.solutions-card__body,
.solution-product-card__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 24px;
}

.solutions-card__tag,
.solution-product-card__tag {
  display: inline-flex;
  align-items: center;
  margin-bottom: 12px;
  padding: 6px 10px;
  border: 1px solid rgba(21, 67, 140, 0.14);
  border-radius: 6px;
  background: rgba(21, 67, 140, 0.08);
  color: var(--primary);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.solutions-card__title,
.solution-product-card__title {
  margin: 0 0 12px;
  color: #10243d;
  font-size: 22px;
  line-height: 1.35;
  font-weight: 800;
}

.solutions-card__body p,
.solution-product-card__body p {
  margin: 0 0 18px;
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.8;
}

.solutions-card__body ul {
  margin: 0 0 18px;
  padding-left: 18px;
  color: var(--text-main);
  font-size: 14px;
  line-height: 1.8;
}

.solutions-card__body li {
  margin-bottom: 8px;
}

.solutions-card__link,
.solution-product-card__link {
  margin-top: auto;
  color: var(--primary) !important;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.solutions-card--dark {
  background: linear-gradient(180deg, #10243d, #163150);
  border-color: rgba(255, 255, 255, 0.08);
}

.solutions-card--dark .solutions-card__title,
.solutions-card--dark .solutions-card__body p,
.solutions-card--dark .solutions-card__body ul,
.solutions-card--dark .solutions-card__body li {
  color: #ffffff !important;
}

.solutions-card--dark .solutions-card__body p,
.solutions-card--dark .solutions-card__body ul,
.solutions-card--dark .solutions-card__body li {
  color: rgba(227, 234, 243, 0.8) !important;
}

.solutions-card--dark .solutions-card__tag {
  border-color: rgba(125, 163, 216, 0.25);
  background: rgba(125, 163, 216, 0.12);
  color: #c8d8ef;
}

@media (max-width: 1024px) {
  .solutions-hub-overview,
  .solution-product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .solutions-card-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .product-pager,
  .solutions-hub-overview,
  .solution-product-grid {
    grid-template-columns: 1fr;
  }

  .solutions-hub-section__title {
    font-size: 26px;
  }
}

/* AISORT Premium Modernization */
:root {
  --brand-primary: #00f2ff;
  --brand-secondary: #0066ff;
  --brand-bg: #05070a;
  --brand-glow: rgba(0, 242, 255, 0.3);
}

body {
  background-color: var(--brand-bg) !important;
  color: #e2e8f0 !important;
  font-family: "Inter", sans-serif !important;
  line-height: 1.6;
}

header, .navbar {
  background: rgba(5, 7, 10, 0.8) !important;
  backdrop-filter: blur(15px);
  border-bottom: 1px solid rgba(0, 242, 255, 0.1) !important;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.btn-primary, button[type="submit"] {
  background: linear-gradient(135deg, var(--brand-secondary), var(--brand-primary)) !important;
  border: none !important;
  box-shadow: 0 0 15px var(--brand-glow) !important;
  transition: all 0.3s ease;
  border-radius: 50px !important;
  padding: 12px 30px !important;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 700;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 25px var(--brand-glow) !important;
}

.card, .product-item, .case-item, .nav-dropdown-group {
  background: rgba(30, 41, 59, 0.4) !important;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.05) !important;
  border-radius: 20px !important;
  padding: 20px;
  transition: all 0.4s ease;
}

.card:hover, .product-item:hover {
  border-color: var(--brand-primary) !important;
  box-shadow: 0 0 30px rgba(0, 242, 255, 0.15) !important;
}

h1, h2, h3 {
  background: linear-gradient(to right, #ffffff, var(--brand-primary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: -0.02em;
}

/* Mobile Responsiveness Fix */
@media (max-width: 768px) {
  body { font-size: 16px !important; }
  h1 { font-size: 2.5rem !important; }
}


/* AISORT Premium Modernization */
:root {
  --brand-primary: #00f2ff;
  --brand-secondary: #0066ff;
  --brand-bg: #05070a;
  --brand-glow: rgba(0, 242, 255, 0.3);
}

body {
  background-color: var(--brand-bg) !important;
  color: #e2e8f0 !important;
  font-family: "Inter", sans-serif !important;
  line-height: 1.6;
}

header, .navbar {
  background: rgba(5, 7, 10, 0.8) !important;
  backdrop-filter: blur(15px);
  border-bottom: 1px solid rgba(0, 242, 255, 0.1) !important;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.btn-primary, button[type="submit"] {
  background: linear-gradient(135deg, var(--brand-secondary), var(--brand-primary)) !important;
  border: none !important;
  box-shadow: 0 0 15px var(--brand-glow) !important;
  transition: all 0.3s ease;
  border-radius: 50px !important;
  padding: 12px 30px !important;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 700;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 25px var(--brand-glow) !important;
}

.card, .product-item, .case-item, .nav-dropdown-group {
  background: rgba(30, 41, 59, 0.4) !important;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.05) !important;
  border-radius: 20px !important;
  padding: 20px;
  transition: all 0.4s ease;
}

.card:hover, .product-item:hover {
  border-color: var(--brand-primary) !important;
  box-shadow: 0 0 30px rgba(0, 242, 255, 0.15) !important;
}

h1, h2, h3 {
  background: linear-gradient(to right, #ffffff, var(--brand-primary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: -0.02em;
}

/* Mobile Responsiveness Fix */
@media (max-width: 768px) {
  body { font-size: 16px !important; }
  h1 { font-size: 2.5rem !important; }
}


/* --- AISORT Premium Industrial Style --- */
:root {
    --primary: #00f2ff;
    --primary-dark: #0088cc;
    --bg-dark: #0a0e14;
    --glass: rgba(255, 255, 255, 0.05);
    --border: rgba(255, 255, 255, 0.1);
}

body {
    background-color: var(--bg-dark);
    color: #e0e0e0;
    font-family: 'Inter', -apple-system, sans-serif;
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    background: linear-gradient(135deg, #fff 0%, var(--primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.glass-panel {
    background: var(--glass);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
}

a {
    color: var(--primary);
    transition: all 0.3s ease;
}

a:hover {
    color: #fff;
    text-shadow: 0 0 8px var(--primary);
}

.btn-premium {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
    color: #000 !important;
    font-weight: 600;
    border-radius: 4px;
    padding: 10px 25px;
    border: none;
    cursor: pointer;
    text-transform: uppercase;
}

input, select, textarea {
    background: rgba(0,0,0,0.3) !important;
    border: 1px solid var(--border) !important;
    color: #fff !important;
    border-radius: 4px !important;
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.animate-fade {
    animation: fadeIn 0.8s ease forwards;
}
.premium-master-container .section-header h2, main .section-header h2 { color: var(--white); }

/* Responsive CTA button for long translations */
@media (max-width: 1280px) {
  .header-cta {
    font-size: 13px !important;
    padding: 8px 16px !important;
    white-space: nowrap;
  }
}
@media (max-width: 1100px) {
  .header-cta {
    font-size: 12px !important;
    padding: 6px 12px !important;
  }
  .nav-primary > li > a, .nav-primary .nav-link-row a {
    font-size: 13px;
    padding: 0 6px;
  }
}

/* Fix nav wrapping on smaller screens */
@media (max-width: 1200px) {
  .nav-primary > li > a, .nav-primary .nav-link-row a {
    font-size: 13px !important;
    padding: 0 8px !important;
  }
  .header-cta {
    font-size: 12px !important;
    padding: 6px 14px !important;
    white-space: nowrap;
  }
  .site-brand__company {
    font-size: 24px !important;
  }
}
@media (max-width: 1024px) {
  .nav-primary > li > a, .nav-primary .nav-link-row a {
    font-size: 11px !important;
    padding: 0 5px !important;
    letter-spacing: 0;
  }
  .header-cta {
    font-size: 11px !important;
    padding: 5px 10px !important;
  }
  .site-brand__line {
    display: none;
  }
  #header-inner {
    padding: 0 12px;
  }
}
