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

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
:root {
  --accent: #0F62FE;      /* IBM Blue - Very Enterprise */
  --accent-hover: #0043CE;
  --bg: #FFFFFF;          /* Pure white background */
  --bg-alt: #F4F4F6;      /* Subtle gray for shaded sections */
  --bg-shaded: #E5E7EB;   /* Slightly darker for placeholders */
  --text: #475569;        /* High legibility body text */
  --text-dark: #0F172A;   /* Headings and primary emphasis */
  --text-mid: #64748B;    /* Subtitles and secondary info */
  --text-light: #94A3B8;  /* Muted / meta information */
  --border: #E2E8F0;      /* Sharp, clean borders */
  --white: #FFFFFF;
  --success: #16A34A;
  --danger: #DC2626;
  --radius: 2px;          /* Minimal radius for sharp, industrial feel */
  --shadow: 0 1px 3px rgba(0,0,0,0.05), 0 1px 2px rgba(0,0,0,0.03);
  --shadow-lg: 0 10px 40px -10px rgba(15,23,42,0.08);
}
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', system-ui, sans-serif;
  color: var(--text); 
  background: var(--bg);
  line-height: 1.6; 
  -webkit-font-smoothing: antialiased;
}

/* ======= TYPOGRAPHY ======= */
h1, h2, h3, h4 { color: var(--text-dark); font-weight: 700; line-height: 1.2; letter-spacing: -0.02em; }
p { font-size: 16px; }
.text-accent { color: var(--accent); }

/* ======= NAV ======= */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(255, 255, 255, 0.95); 
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
  transition: all 0.3s ease;
}
.nav.scrolled { 
  background: rgba(255, 255, 255, 0.98); 
  box-shadow: var(--shadow); 
}
.nav-inner {
  max-width: 1280px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 32px; height: 72px;
}
.nav-logo { 
  font-weight: 800; font-size: 24px; color: var(--text-dark); 
  text-decoration: none; letter-spacing: -0.05em; text-transform: uppercase;
}
.nav-logo span { color: var(--accent); }
.nav-links { display: flex; gap: 32px; align-items: center; }
.nav-links a {
  color: var(--text-mid); text-decoration: none; font-size: 14px;
  font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em;
  transition: color 0.2s; white-space: nowrap;
}
.nav-links a:hover, .nav-links a.active { color: var(--accent); }
.nav-phone { 
  color: var(--accent) !important; 
  border: 1px solid var(--accent); 
  padding: 8px 16px; 
  border-radius: var(--radius);
  transition: all 0.2s !important;
}
.nav-phone:hover {
  background: var(--accent);
  color: var(--white) !important;
}
.nav-burger { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.nav-burger svg { display: block; stroke: var(--text-dark); }

.mobile-menu {
  display: none; position: fixed; top: 72px; left: 0; right: 0;
  background: var(--white); padding: 24px 32px; z-index: 99;
  flex-direction: column; gap: 16px; border-top: 1px solid var(--border);
  box-shadow: var(--shadow);
}
.mobile-menu.open { display: flex; }
.mobile-menu a { color: var(--text-dark); text-decoration: none; font-size: 14px; font-weight: 600; text-transform: uppercase; padding: 8px 0; letter-spacing: 0.05em; }

/* ======= SHARED SECTION ======= */
.section { padding: 96px 32px; }
.section-alt { background: var(--bg-alt); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.section-shaded { background: var(--bg-alt); }
.section-inner { max-width: 1280px; margin: 0 auto; }

.section-label {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.15em;
  color: var(--accent); margin-bottom: 16px;
}
.section-label::before {
  content: ""; display: block; width: 24px; height: 2px; background: var(--accent);
}

.section-title {
  font-size: clamp(32px, 4vw, 48px); font-weight: 800;
  line-height: 1.1; margin-bottom: 24px; letter-spacing: -0.02em;
}

.section-subtitle {
  font-size: 18px; color: var(--text-mid); max-width: 700px;
  line-height: 1.6; margin-bottom: 56px;
}

/* ======= HERO ======= */
.hero-section { background: var(--text-dark); border-bottom: 1px solid var(--border); }
.hero-wrap {
  position: relative; overflow: hidden;
  height: clamp(520px, 72vh, 720px);
  background: #000;
}
.hero-bg {
  position: absolute; inset: 0; width: 100%; height: 100%;
  pointer-events: none;
  object-fit: cover; z-index: 0;
}
.hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(90deg, rgba(15,23,42,0.85) 0%, rgba(15,23,42,0.55) 45%, rgba(15,23,42,0.15) 100%),
    linear-gradient(180deg, rgba(15,23,42,0.2) 0%, rgba(15,23,42,0.5) 100%);
}
.hero-content {
  position: relative; z-index: 2;
  height: 100%;
  max-width: 1280px; margin: 0 auto;
  padding: 0 clamp(24px, 6vw, 80px);
  display: flex; align-items: center;
}
.hero-slide {
  position: absolute;
  top: 50%; left: clamp(24px, 6vw, 80px); right: clamp(24px, 6vw, 80px);
  transform: translateY(calc(-50% + 12px));
  max-width: 760px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.7s ease, transform 0.7s ease;
  color: var(--white);
  will-change: opacity, transform;
}
.hero-slide.active {
  opacity: 1;
  transform: translateY(-50%);
  pointer-events: auto;
}
.hero-eyebrow {
  display: inline-block;
  font-size: 12px; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--accent);
  padding: 6px 12px;
  border: 1px solid rgba(15,98,254,0.4);
  background: rgba(15,98,254,0.12);
  border-radius: 4px;
  margin-bottom: 24px;
}
.hero-title {
  font-size: clamp(32px, 4.6vw, 56px); font-weight: 800;
  line-height: 1.08; margin: 0 0 20px;
  color: var(--white);
  text-shadow: 0 2px 24px rgba(0,0,0,0.35);
}
.hero-desc {
  font-size: clamp(16px, 1.4vw, 19px);
  line-height: 1.6; margin: 0 0 36px;
  color: rgba(255,255,255,0.92);
  max-width: 620px;
  text-shadow: 0 1px 12px rgba(0,0,0,0.4);
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-btn { padding: 14px 28px; font-size: 15px; }

.btn-ghost {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.55);
  padding: 14px 28px;
  border-radius: var(--radius);
  font-weight: 600; font-size: 15px;
  cursor: pointer; display: inline-flex; align-items: center; gap: 8px;
  text-decoration: none;
  transition: all 0.2s;
}
.btn-ghost:hover { background: rgba(255,255,255,0.12); border-color: var(--white); }

.hero-dots {
  position: absolute; z-index: 3;
  bottom: 32px; left: clamp(24px, 6vw, 80px);
  display: flex; gap: 10px;
}
.hero-dot {
  width: 40px; height: 3px; border-radius: 0;
  background: rgba(255,255,255,0.35); border: none; cursor: pointer;
  padding: 0;
  transition: background 0.3s, width 0.3s;
}
.hero-dot:hover { background: rgba(255,255,255,0.6); }
.hero-dot.active { background: var(--accent); width: 56px; }

/* ======= CONTACTS ======= */
.contacts-split { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: stretch; }
.contact-block { display: flex; flex-direction: column; gap: 32px; justify-content: center; }
.contact-item { display: flex; gap: 20px; align-items: flex-start; }
.contact-icon {
  width: 48px; height: 48px; border-radius: var(--radius);
  background: var(--bg-alt); border: 1px solid var(--border);
  flex-shrink: 0; display: flex; align-items: center; justify-content: center;
}
.contact-item h3 { font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 4px; color: var(--text-mid); }
.contact-item a, .contact-item p { font-size: 18px; font-weight: 600; color: var(--text-dark); text-decoration: none; }
.contact-item a:hover { color: var(--accent); }
.map-placeholder {
  width: 100%; height: 400px; border-radius: var(--radius);
  background: var(--bg-alt); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Courier New', monospace; color: var(--text-mid); font-size: 14px; text-transform: uppercase; letter-spacing: 0.1em;
}

/* ======= FORM ======= */
.form-section { background: var(--white); border-top: 1px solid var(--border); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.form-wrap { 
  display: flex; flex-direction: column; gap: 16px; 
  background: var(--bg-alt); padding: 48px; 
  border-radius: var(--radius); border: 1px solid var(--border);
}
.form-field {
  width: 100%; padding: 16px; border: 1px solid var(--border);
  border-radius: var(--radius); font-size: 15px; font-family: inherit; outline: none;
  transition: all 0.2s; background: var(--white); color: var(--text-dark);
}
.form-field::placeholder { color: var(--text-mid); }
.form-field:focus { border-color: var(--accent); box-shadow: 0 0 0 3px rgba(15, 98, 254, 0.1); }
textarea.form-field { resize: vertical; min-height: 120px; }
.form-field.is-invalid { border-color: #d93025; box-shadow: 0 0 0 3px rgba(217, 48, 37, 0.1); }
.form-error {
  display: none;
  color: #d93025;
  font-size: 13px;
  line-height: 1.4;
  margin-top: -8px;
}
.form-error.is-visible { display: block; }
.form-error--general {
  margin-top: 0;
  padding: 12px 16px;
  border: 1px solid #d93025;
  border-radius: var(--radius);
  background: rgba(217, 48, 37, 0.08);
}
.form-btn {
  width: 100%; padding: 18px; background: var(--accent); color: var(--white);
  font-weight: 700; font-size: 15px; text-transform: uppercase; letter-spacing: 0.05em;
  border: none; border-radius: var(--radius);
  cursor: pointer; font-family: inherit; transition: background 0.2s; margin-top: 8px;
}
.form-btn:hover { background: var(--accent-hover); }
.form-note { font-size: 13px; color: var(--text-mid); line-height: 1.5; text-align: center; margin-top: 8px; }

/* ======= FOOTER ======= */
.footer {
  background: var(--bg); padding: 48px 32px; text-align: center;
  border-top: 1px solid var(--border);
}
.footer p { color: var(--text-mid); font-size: 14px; }
.footer a { color: var(--text-dark); text-decoration: none; font-weight: 600; transition: color 0.2s; }
.footer a:hover { color: var(--accent); }

/* ======= COOKIE BANNER ======= */
.cookie-banner {
  position: fixed; bottom: 32px; right: 32px;
  background: var(--white); border: 1px solid var(--border);
  box-shadow: 0 20px 40px -10px rgba(0,0,0,0.15);
  padding: 24px; border-radius: var(--radius);
  display: flex; flex-direction: column; gap: 20px; align-items: flex-start;
  width: calc(100% - 64px); max-width: 380px;
  z-index: 9999;
  opacity: 0; pointer-events: none; 
  transform: translateY(20px); transition: opacity 0.3s ease, transform 0.3s ease;
}
.cookie-banner.show { opacity: 1; pointer-events: auto; transform: translateY(0); }
.cookie-banner p { font-size: 13px; color: var(--text-mid); line-height: 1.5; margin: 0; }
.cookie-banner a { color: var(--accent); text-decoration: none; font-weight: 500;}
.cookie-banner a:hover { text-decoration: underline; }
.cookie-banner .btn-accent { width: 100%; justify-content: center; padding: 12px; }
@media (max-width: 600px) {
  .cookie-banner { max-width: none; width: calc(100% - 32px); right: 16px; bottom: 16px; }
}

/* ======= PAGE HERO (for inner pages) ======= */
.page-hero {
  padding: 160px 32px 80px; background: var(--bg-alt); color: var(--text-dark);
  border-bottom: 1px solid var(--border);
}
.page-hero .section-inner { max-width: 1280px; margin: 0 auto; }
.page-hero h1 {
  font-size: clamp(40px, 5vw, 64px); font-weight: 800;
  line-height: 1.1; letter-spacing: -0.02em; margin-bottom: 24px; color: var(--text-dark);
}
.page-hero h1 em { color: var(--accent); font-style: normal; }
.page-hero p { font-size: 20px; color: var(--text-mid); max-width: 700px; line-height: 1.6; }
.breadcrumbs { display: flex; gap: 12px; align-items: center; margin-bottom: 32px; font-size: 13px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em; }
.breadcrumbs a { color: var(--accent); text-decoration: none; }
.breadcrumbs a:hover { color: var(--text-dark); }
.breadcrumbs span { color: var(--text-mid); }

/* ======= ABOUT PAGE ======= */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-text p { font-size: 16px; line-height: 1.8; color: var(--text); margin-bottom: 20px; }
.about-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; margin-top: 48px; border-top: 1px solid var(--border); padding-top: 48px; }
.stat-num { font-size: 48px; font-weight: 800; color: var(--text-dark); line-height: 1; letter-spacing: -0.02em; }
.stat-label { font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; color: var(--text-mid); margin-top: 8px; }
.about-image-box {
  width: 100%; aspect-ratio: 4/3;
  background: var(--bg-alt); border: 1px solid var(--border);
  border-radius: var(--radius); display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 12px;
  font-family: 'Courier New', monospace; color: var(--text-mid); font-size: 14px; text-transform: uppercase; letter-spacing: 0.1em;
}
.values-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 32px;
}
.value-card {
  background: var(--white); border-radius: var(--radius); padding: 40px 32px;
  border: 1px solid var(--border); transition: all 0.3s;
}
.value-card:hover { border-color: var(--accent); box-shadow: var(--shadow); transform: translateY(-2px); }
.value-card h3 { font-size: 18px; font-weight: 700; margin-bottom: 12px; color: var(--text-dark); }
.value-card p { font-size: 15px; color: var(--text-mid); line-height: 1.6; }
.value-icon {
  width: 56px; height: 56px; border-radius: var(--radius);
  background: var(--bg-alt); display: flex; align-items: center; justify-content: center;
  margin-bottom: 24px; border: 1px solid var(--border); color: var(--accent);
}

/* ======= PRODUCT PAGE ======= */
.product-hero-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 80px; align-items: center; }
.product-img-box {
  width: 100%; aspect-ratio: 1;
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius); display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 16px;
  font-family: 'Courier New', monospace; color: var(--text-mid); font-size: 14px; text-transform: uppercase; letter-spacing: 0.1em;
}

.product-info h1 {
  font-size: clamp(36px, 5vw, 56px); font-weight: 800; color: var(--text-dark);
  line-height: 1.1; margin-bottom: 16px; letter-spacing: -0.02em;
}
.product-info h1 em { color: var(--accent); font-style: normal; }
.product-info .tagline { font-size: 20px; color: var(--text-mid); margin-bottom: 40px; line-height: 1.6; }
.product-specs { display: flex; flex-direction: column; gap: 0; margin-bottom: 40px; border-top: 1px solid var(--border); }
.spec-row { display: flex; gap: 24px; padding: 16px 0; border-bottom: 1px solid var(--border); font-size: 15px; }
.spec-key { min-width: 200px; color: var(--text-mid); font-weight: 500; flex-shrink: 0; }
.spec-val { font-weight: 600; color: var(--text-dark); }
.btn-accent {
  display: inline-flex; align-items: center; gap: 12px;
  background: var(--accent); color: var(--white); font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em;
  font-size: 14px; padding: 18px 36px; border-radius: var(--radius);
  text-decoration: none; transition: all 0.2s; border: none; cursor: pointer;
}
.btn-accent:hover { background: var(--accent-hover); }

/* Comparison table */
.compare-table { width: 100%; border-collapse: collapse; font-size: 15px; background: var(--white); border: 1px solid var(--border); }
.compare-table th, .compare-table td { padding: 16px 24px; text-align: left; border-bottom: 1px solid var(--border); }
.compare-table thead th { background: var(--bg-alt); color: var(--text-dark); font-weight: 700; font-size: 13px; text-transform: uppercase; letter-spacing: 0.05em; border-bottom: 2px solid var(--border); }
.compare-table tbody tr:hover { background: var(--bg-alt); }
.compare-table .highlight { background: rgba(15, 98, 254, 0.05); font-weight: 600; color: var(--text-dark); }
.check { color: #16A34A; font-weight: 800; margin-right: 8px; }
.cross { color: #DC2626; font-weight: 800; margin-right: 8px; }

/* Advantages grid (product page) */
.adv-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 32px; }
.adv-card {
  background: var(--white); border-radius: var(--radius); padding: 40px 32px;
  border: 1px solid var(--border); transition: all 0.3s;
}
.adv-card:hover { border-color: var(--accent); transform: translateY(-2px); box-shadow: var(--shadow); }
.adv-card h3 { font-size: 18px; font-weight: 700; color: var(--text-dark); margin-bottom: 12px; }
.adv-card p { font-size: 15px; color: var(--text-mid); line-height: 1.6; }
.adv-card-icon {
  width: 56px; height: 56px; border-radius: var(--radius);
  background: var(--bg-alt); border: 1px solid var(--border); 
  display: flex; align-items: center; justify-content: center; margin-bottom: 24px; color: var(--accent);
}

/* ======= CTA BANNER ======= */
.cta-banner {
  background: var(--bg-alt); padding: 80px 32px; text-align: center;
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
}
.cta-banner h2 { font-size: clamp(32px, 4vw, 48px); font-weight: 800; color: var(--text-dark); margin-bottom: 16px; letter-spacing: -0.02em; }
.cta-banner p { font-size: 18px; color: var(--text-mid); margin-bottom: 32px; max-width: 600px; margin-left: auto; margin-right: auto; }
.btn-dark {
  display: inline-flex; align-items: center; gap: 12px;
  background: var(--text-dark); color: var(--white); font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em;
  font-size: 14px; padding: 18px 36px; border-radius: var(--radius);
  text-decoration: none; transition: background 0.2s;
}
.btn-dark:hover { background: var(--text-mid); }

/* ======= RESPONSIVE ======= */
@media (max-width: 1024px) {
  .product-hero-grid, .about-grid, .form-grid, .contacts-split { grid-template-columns: 1fr; gap: 48px; }
  .product-img-box { max-height: 500px; }
  .footer-main-grid { grid-template-columns: 1fr !important; gap: 48px !important; }
  .features-metrics { grid-template-columns: repeat(2, 1fr) !important; row-gap: 32px; }
  .features-metrics .metric { padding: 0 16px !important; }
  .features-metrics .metric:nth-child(2) { border-right: none !important; }
  .features-metrics .metric:nth-child(3), .features-metrics .metric:nth-child(4) { padding-top: 32px; border-top: 1px solid var(--border); }

  .product-overview { grid-template-columns: 1fr; }
  .product-overview-media { min-height: 320px; max-height: 420px; border-right: none; border-bottom: 1px solid var(--border); }
  .applications-matrix { grid-template-columns: 1fr; }
  .app-item { border-right: none !important; border-bottom: 1px solid var(--border) !important; }
  .app-item:last-child { border-bottom: none !important; }

  .spec-two-col { grid-template-columns: 1fr; }
  .spec-col + .spec-col { border-left: none; border-top: 1px solid var(--border); }
  .workflow-steps { grid-template-columns: repeat(2, 1fr); }
  .workflow-steps--single { grid-template-columns: 1fr; }
  .workflow-step { border-right: 1px solid var(--border); border-bottom: 1px solid var(--border); }
  .workflow-step:nth-child(2n) { border-right: none; }
  .workflow-step:nth-last-child(-n+2) { border-bottom: none; }
  .workflow-step--main { border-right: none; border-bottom: none; }
  .logistics-grid { grid-template-columns: repeat(2, 1fr); }
  .logistics-item { border-right: 1px solid var(--border); border-bottom: 1px solid var(--border); }
  .logistics-item:nth-child(2n) { border-right: none; }
  .logistics-item:nth-last-child(-n+2) { border-bottom: none; }

  .about-intro { grid-template-columns: 1fr; gap: 48px; }
  .principles-grid { grid-template-columns: 1fr; }
  .service-pillars { grid-template-columns: 1fr; }
  .pillar { border-right: none; border-bottom: 1px solid var(--border); }
  .pillar:last-child { border-bottom: none; }
  .facts-band { grid-template-columns: repeat(2, 1fr); }
  .fact { border-right: 1px solid rgba(255,255,255,0.08); border-bottom: 1px solid rgba(255,255,255,0.08); }
  .fact:nth-child(2n) { border-right: none; }
  .fact:nth-last-child(-n+2) { border-bottom: none; }
  .ops-band { padding: 64px 24px; }
}
@media (max-width: 768px) {
  .nav-links, .nav-phone { display: none; }
  .nav-burger { display: block; }
  .hero-wrap { height: clamp(460px, 80vh, 620px); }
  .hero-title { font-size: clamp(28px, 7vw, 40px); }
  .hero-desc { font-size: 15px; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .hero-actions .hero-btn { width: 100%; justify-content: center; }
  .hero-dots { bottom: 20px; }
  .section { padding: 64px 24px; }
  .compare-table { font-size: 13px; display: block; overflow-x: auto; white-space: nowrap; }
  .spec-key { min-width: 140px; }
  .page-hero { padding: 120px 24px 60px; }
  .features-ent-grid { grid-template-columns: 1fr !important; }
  .feature-ent { padding: 32px 24px !important; }
  .features-metrics { grid-template-columns: 1fr !important; margin-top: 48px; padding-top: 32px; }
  .features-metrics .metric { border-right: none !important; border-bottom: 1px solid var(--border); padding: 24px 0 !important; }
  .features-metrics .metric:last-child { border-bottom: none; padding-bottom: 0 !important; }
  .features-metrics .metric:first-child { padding-top: 0 !important; }
  .legal-footer-bottom { flex-direction: column !important; gap: 16px !important; text-align: center !important; }

  .product-overview-content { padding: 32px 24px; gap: 24px; }
  .product-datarow { grid-template-columns: 1fr; gap: 4px; padding: 12px 0; }
  .product-datarow dt { font-size: 11px; text-transform: uppercase; letter-spacing: 0.08em; }
  .product-overview-actions { flex-direction: column; align-items: stretch; }
  .product-overview-actions .btn-accent,
  .product-overview-actions .btn-outline { justify-content: center; width: 100%; }
  .app-item { padding: 28px 24px; }

  .spec-col { padding: 28px 24px; }
  .compose-grid { grid-template-columns: 1fr; }
  .compose-item { border-right: none; }
  .compose-item:not(:last-child) { border-bottom: 1px solid var(--border); }
  .workflow-steps { grid-template-columns: 1fr; }
  .workflow-step { border-right: none; border-bottom: 1px solid var(--border); padding: 28px 24px; }
  .workflow-step:last-child { border-bottom: none; }
  .workflow-step--main { border-bottom: none; max-width: 100%; }
  .workflow-benefits { flex-direction: column; border-top: 1px solid var(--border); }
  .workflow-benefit { border-right: none; border-bottom: 1px solid var(--border); padding: 20px 24px; }
  .workflow-benefit:last-child { border-bottom: none; }
  .logistics-grid { grid-template-columns: 1fr; }
  .logistics-item { border-right: none; border-bottom: 1px solid var(--border); padding: 24px; }
  .logistics-item:last-child { border-bottom: none; }
  .logistics-val { font-size: 28px; }
  .doc-grid { grid-template-columns: 1fr; }
  .doc-grid li { border-right: none; padding: 24px; }
  .doc-grid li:not(:last-child) { border-bottom: 1px solid var(--border); }

  .facts-band { grid-template-columns: 1fr; }
  .fact { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.08); padding: 32px 24px; }
  .fact:last-child { border-bottom: none; }
  .fact-val { font-size: 32px; }
  .principle-item { padding: 28px 24px; }
  .pillar { padding: 32px 24px; }
  .corp-card { padding: 28px 24px; }
}

/* ======= HOMEPAGE: "Why Us" — ENTERPRISE FEATURES ======= */
.features-enterprise { background: var(--white); }
.features-head {
  max-width: 780px; margin: 0 auto 72px; text-align: center;
}
.features-head .section-label { justify-content: center; }
.features-head .section-subtitle { margin: 0 auto; }

.features-ent-grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid var(--border);
  border-left: 1px solid var(--border);
}
.feature-ent {
  display: flex; gap: 24px; align-items: flex-start;
  padding: 40px 36px;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--white);
  transition: background 0.25s ease;
}
.feature-ent:hover { background: var(--bg-alt); }
.feature-ent-icon {
  flex: 0 0 44px; width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  color: var(--accent);
  background: rgba(15, 98, 254, 0.08);
  border-radius: 6px;
  margin-top: 2px;
}
.feature-ent-body { flex: 1; min-width: 0; }
.feature-ent-body h3 {
  font-size: 18px; font-weight: 600;
  color: var(--text-dark);
  line-height: 1.35;
  margin: 0 0 10px;
  letter-spacing: -0.01em;
}
.feature-ent-body p {
  font-size: 14.5px; line-height: 1.65;
  color: var(--text-mid);
  margin: 0;
}

.features-metrics {
  display: grid; grid-template-columns: repeat(4, 1fr);
  margin-top: 64px;
  padding-top: 44px;
  border-top: 1px solid var(--border);
}
.metric {
  padding: 4px 32px;
  border-right: 1px solid var(--border);
}
.metric:first-child { padding-left: 0; }
.metric:last-child { border-right: none; padding-right: 0; }
.metric-val {
  font-size: 40px; font-weight: 700;
  color: var(--text-dark);
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 12px;
  font-variant-numeric: tabular-nums;
}
.metric-lbl {
  font-size: 13px; line-height: 1.5;
  color: var(--text-mid);
}

/* ======= HOMEPAGE: PRODUCT OVERVIEW ======= */
.product-head {
  max-width: 820px; margin: 0 auto 64px; text-align: center;
}
.product-head .section-label { justify-content: center; }
.product-head .section-subtitle { margin: 0 auto; }

.product-overview {
  display: flex;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 96px;
}
.product-overview-media {
  height: 762px;
  background: var(--bg-shaded);
  border-right: 1px solid var(--border);
  position: relative;
}
.product-overview-media img {inset: 0;
  width: auto; height: 100%;
  object-fit: contain; object-position: center;
}
.product-overview-media-caption {
  position: absolute; left: 24px; bottom: 24px;
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--white);
  background: rgba(15, 23, 42, 0.8);
  padding: 8px 14px;
  border-radius: var(--radius);
  backdrop-filter: blur(4px);
}
.product-overview-content {
  padding: clamp(36px, 4vw, 56px);
  display: flex; flex-direction: column;
  gap: 28px;
}
.product-overview-header .section-label { margin-bottom: 12px; }
.product-overview-name {
  font-size: clamp(24px, 2.4vw, 32px);
  font-weight: 800;
  color: var(--text-dark);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin: 0 0 10px;
}
.product-overview-tagline {
  font-size: 15px;
  line-height: 1.6;
  color: var(--text-mid);
  margin: 0;
}
.product-datalist-title {
  font-size: 11px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.14em;
  color: var(--text-mid);
  padding-bottom: 14px;
  border-bottom: 1px solid var(--border);
  margin: 0;
}
.product-datalist {
  display: flex; flex-direction: column;
  margin: 0;
}
.product-datarow {
  display: grid;
  grid-template-columns: minmax(140px, 180px) 1fr;
  gap: 24px;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  font-size: 14px;
  line-height: 1.55;
}
.product-datarow:last-child { border-bottom: none; }
.product-datarow dt {
  color: var(--text-mid);
  font-weight: 500;
}
.product-datarow dd {
  color: var(--text-dark);
  font-weight: 600;
  margin: 0;
  letter-spacing: -0.005em;
}
.product-overview-actions {
  display: flex; gap: 12px; flex-wrap: wrap;
  padding-top: 8px;
}
.product-overview-actions .btn-accent,
.product-overview-actions .btn-outline {
  padding: 13px 24px; font-size: 14px;
}

.btn-outline {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 24px;
  background: transparent;
  color: var(--text-dark);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-weight: 600; font-size: 14px;
  cursor: pointer; text-decoration: none;
  transition: all 0.2s;
  text-transform: uppercase; letter-spacing: 0.05em;
}
.btn-outline:hover {
  border-color: var(--text-dark);
  background: var(--white);
}

/* ======= HOMEPAGE: APPLICATIONS ======= */
.applications-lede {
  max-width: 820px; margin: 0 auto 48px; text-align: center;
}
.applications-lede .section-label { justify-content: center; margin-bottom: 14px; }
.applications-lede h3 {
  font-size: clamp(24px, 2.4vw, 32px);
  font-weight: 800;
  color: var(--text-dark);
  letter-spacing: -0.02em;
  margin: 0 0 12px;
  line-height: 1.2;
}
.applications-lede p {
  font-size: 16px;
  color: var(--text-mid);
  line-height: 1.6;
  margin: 0;
  max-width: 680px;
  margin-left: auto; margin-right: auto;
}
.applications-matrix {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.app-item {
  padding: 36px 40px;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.app-item:nth-child(2n) { border-right: none; }
.app-item:nth-last-child(-n+2) { border-bottom: none; }
.app-item-header {
  display: flex; align-items: center; gap: 16px;
  margin-bottom: 14px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--border);
}
.app-item-tag {
  font-size: 10px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.14em;
  color: var(--accent);
  font-variant-numeric: tabular-nums;
}
.app-item h4 {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-dark);
  margin: 0;
  letter-spacing: -0.01em;
  flex: 1;
}
.app-item p {
  font-size: 14.5px;
  line-height: 1.65;
  color: var(--text-mid);
  margin: 0;
}

/* ======= PRODUCT PAGE: DATASHEET BLOCKS ======= */
.datasheet-head {
  max-width: 820px; margin: 0 auto 56px; text-align: center;
}
.datasheet-head .section-label { justify-content: center; }
.datasheet-head .section-subtitle { margin: 0 auto; }

.spec-two-col {
  display: grid; grid-template-columns: 1fr 1fr;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}
.spec-col { padding: 40px; }
.spec-col + .spec-col { border-left: 1px solid var(--border); }
.spec-col h3 {
  font-size: 12px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.14em;
  color: var(--text-mid);
  padding-bottom: 16px;
  margin: 0 0 16px;
  border-bottom: 1px solid var(--border);
}
.spec-col dl { margin: 0; }
.spec-col .product-datarow:last-child { border-bottom: none; }

.compose-grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.compose-item {
  padding: 32px 36px;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.compose-item:nth-child(2n) { border-right: none; }
.compose-item:nth-last-child(-n+2) { border-bottom: none; }
.compose-head {
  display: flex; justify-content: space-between; align-items: baseline;
  gap: 16px;
  padding-bottom: 12px;
  margin-bottom: 12px;
  border-bottom: 1px solid var(--border);
}
.compose-head h4 {
  font-size: 15px; font-weight: 700; color: var(--text-dark);
  margin: 0; letter-spacing: -0.005em;
}
.compose-pct {
  font-size: 13px; font-weight: 700;
  color: var(--accent);
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.02em;
  white-space: nowrap;
}
.compose-item p {
  font-size: 14px; line-height: 1.6;
  color: var(--text-mid); margin: 0;
}

.workflow-steps {
  display: grid; grid-template-columns: repeat(4, 1fr);
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.workflow-step {
  padding: 36px 32px;
  border-right: 1px solid var(--border);
}
.workflow-step:last-child { border-right: none; }
.workflow-num {
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
  font-variant-numeric: tabular-nums;
}
.workflow-step h4 {
  font-size: 16px; font-weight: 700;
  color: var(--text-dark); margin: 0 0 10px;
  letter-spacing: -0.01em;
}
.workflow-step p {
  font-size: 14px; color: var(--text-mid);
  line-height: 1.6; margin: 0;
}

.workflow-steps--single {
  grid-template-columns: 1fr;
  border-radius: var(--radius) var(--radius) 0 0;
}
.workflow-step--main {
  border-right: none;
  max-width: 560px;
}

.workflow-benefits {
  display: flex; gap: 0;
  background: var(--white);
  border: 1px solid var(--border);
  border-top: none;
  border-radius: 0 0 var(--radius) var(--radius);
  overflow: hidden;
}
.workflow-benefit {
  flex: 1;
  display: flex; align-items: flex-start; gap: 14px;
  padding: 28px 32px;
  border-right: 1px solid var(--border);
}
.workflow-benefit:last-child { border-right: none; }
.workflow-benefit__icon {
  font-size: 16px; color: var(--accent);
  font-weight: 700; margin-top: 2px; flex-shrink: 0;
}
.workflow-benefit strong {
  display: block; font-size: 14px; font-weight: 700;
  color: var(--text-dark); margin-bottom: 4px;
}
.workflow-benefit p {
  font-size: 13px; color: var(--text-mid);
  line-height: 1.5; margin: 0;
}

.logistics-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.logistics-item {
  padding: 32px;
  border-right: 1px solid var(--border);
}
.logistics-item:last-child { border-right: none; }
.logistics-val {
  font-size: 32px; font-weight: 800;
  color: var(--text-dark); letter-spacing: -0.02em;
  line-height: 1; margin-bottom: 10px;
  font-variant-numeric: tabular-nums;
}
.logistics-lbl {
  font-size: 13px; line-height: 1.55;
  color: var(--text-mid);
}

.doc-grid {
  list-style: none; padding: 0;
  display: grid; grid-template-columns: repeat(2, 1fr);
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  margin: 0;
}
.doc-grid li {
  padding: 28px 32px;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  display: flex; gap: 18px; align-items: flex-start;
}
.doc-grid li:nth-child(2n) { border-right: none; }
.doc-grid li:nth-last-child(-n+2) { border-bottom: none; }
.doc-icon {
  flex: 0 0 40px; width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  color: var(--accent);
  background: rgba(15, 98, 254, 0.08);
  border-radius: 6px;
}
.doc-grid h4 {
  font-size: 15px; font-weight: 700;
  color: var(--text-dark);
  margin: 0 0 4px;
  letter-spacing: -0.005em;
}
.doc-grid p {
  font-size: 13.5px; line-height: 1.55;
  color: var(--text-mid); margin: 0;
}

/* ======= ABOUT PAGE: ENTERPRISE LAYOUT ======= */
.about-intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
  gap: 80px;
  align-items: start;
}
.about-intro-lede h2 {
  font-size: clamp(28px, 3.2vw, 40px);
  font-weight: 800;
  color: var(--text-dark);
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin: 0 0 24px;
}
.about-intro-lede p {
  font-size: 17px;
  line-height: 1.7;
  color: var(--text);
  margin: 0 0 20px;
}
.about-intro-lede p:last-child { margin-bottom: 0; }

.corp-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 40px;
}
.corp-card h3 {
  font-size: 12px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.14em;
  color: var(--text-mid);
  padding-bottom: 16px;
  margin: 0 0 16px;
  border-bottom: 1px solid var(--border);
}
.corp-card dl { margin: 0; }

.principles-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  background: var(--white);
  border-top: 1px solid var(--border);
  border-left: 1px solid var(--border);
}
.principle-item {
  padding: 36px 32px;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.principle-num {
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
  font-variant-numeric: tabular-nums;
}
.principle-item h3 {
  font-size: 17px; font-weight: 700;
  color: var(--text-dark);
  margin: 0 0 12px;
  letter-spacing: -0.01em;
  line-height: 1.3;
}
.principle-item p {
  font-size: 14.5px; line-height: 1.65;
  color: var(--text-mid); margin: 0;
}

.service-pillars {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 0;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.pillar {
  padding: 40px;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.pillar:nth-child(2n) { border-right: none; }
.pillar:nth-last-child(-n+2) { border-bottom: none; }
.pillar-label {
  display: inline-block;
  font-size: 11px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.14em;
  color: var(--accent);
  padding: 4px 10px;
  border: 1px solid rgba(15, 98, 254, 0.3);
  background: rgba(15, 98, 254, 0.06);
  border-radius: 3px;
  margin-bottom: 16px;
}
.pillar h3 {
  font-size: 19px; font-weight: 700;
  color: var(--text-dark);
  margin: 0 0 12px;
  letter-spacing: -0.01em;
}
.pillar p {
  font-size: 14.5px; line-height: 1.7;
  color: var(--text-mid); margin: 0 0 16px;
}
.pillar ul {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 10px;
}
.pillar li {
  font-size: 14px; line-height: 1.6;
  color: var(--text); padding-left: 20px;
  position: relative;
}
.pillar li::before {
  content: ""; position: absolute;
  left: 0; top: 10px;
  width: 10px; height: 1px;
  background: var(--accent);
}

.facts-band {
  display: grid; grid-template-columns: repeat(4, 1fr);
  background: var(--text-dark);
  border-radius: var(--radius);
  overflow: hidden;
}
.fact {
  padding: 40px 32px;
  border-right: 1px solid rgba(255,255,255,0.08);
  color: var(--white);
}
.fact:last-child { border-right: none; }
.fact-val {
  font-size: 40px; font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1; margin-bottom: 12px;
  font-variant-numeric: tabular-nums;
  color: var(--white);
}
.fact-val em { color: var(--accent); font-style: normal; }
.fact-lbl {
  font-size: 13px; line-height: 1.55;
  color: #94A3B8;
}

/* ======= ABOUT: OPS BAND (full-bleed dark) ======= */
.ops-band {
  background: var(--text-dark);
  padding: 88px 32px;
  color: var(--white);
}
.ops-band-head {
  max-width: 820px; margin: 0 auto 48px; text-align: center;
}
.ops-band-label {
  color: var(--accent);
}
.ops-band-label::before { background: var(--accent); }
.ops-band-title {
  font-size: clamp(28px, 3.4vw, 40px);
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin: 14px 0 0;
}
.facts-band-flat {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
}
.facts-band-flat .fact {
  border-right-color: rgba(255,255,255,0.08);
}

/* ======= LEGAL FOOTER ======= */
.legal-footer {
  background: var(--text-dark); color: #CBD5E1; padding: 64px 32px 32px;
  border-top: none;
}
.legal-footer .section-inner { max-width: 1280px; margin: 0 auto; }
.footer-main-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1.2fr; gap: 64px;
  padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-brand-logo {
  font-size: 24px; font-weight: 800; color: var(--white); 
  letter-spacing: -0.05em; margin-bottom: 20px; text-transform: uppercase;
}
.footer-brand-logo span { color: var(--accent); }
.footer-brand-desc { 
  font-size: 14px; line-height: 1.7; color: #94A3B8; margin-bottom: 24px;
  max-width: 340px;
}
.footer-col h4 {
  font-size: 12px; font-weight: 700; text-transform: uppercase; 
  letter-spacing: 0.12em; color: var(--white); margin-bottom: 20px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.footer-col ul a {
  color: #CBD5E1; text-decoration: none; font-size: 14px; 
  font-weight: 400; transition: color 0.2s;
}
.footer-col ul a:hover { color: var(--white); }
.footer-contact-line { 
  display: flex; gap: 12px; align-items: flex-start; 
  font-size: 14px; color: #CBD5E1; line-height: 1.5;
}
.footer-contact-line svg { color: var(--accent); flex-shrink: 0; margin-top: 2px; }
.footer-contact-line a { color: #CBD5E1; text-decoration: none; }
.footer-contact-line a:hover { color: var(--white); }

.legal-footer-bottom {
  padding-top: 32px; display: flex; justify-content: space-between; 
  align-items: center; font-size: 13px; color: #94A3B8;
  flex-wrap: wrap; gap: 16px;
}
.legal-footer-bottom .legal-links { display: flex; gap: 24px; flex-wrap: wrap; }
.legal-footer-bottom a { color: #94A3B8; text-decoration: none; transition: color 0.2s; }
.legal-footer-bottom a:hover { color: var(--white); }

/* ======= LEGAL CONTENT PAGES ======= */
.legal-content {
  max-width: 800px; margin: 0 auto; 
}
.legal-content .legal-meta {
  font-size: 13px; color: var(--text-mid); margin-bottom: 40px; 
  padding-bottom: 24px; border-bottom: 1px solid var(--border);
  display: flex; gap: 32px; flex-wrap: wrap;
}
.legal-content .legal-meta strong { color: var(--text-dark); margin-right: 8px; font-weight: 600; }
.legal-content li strong { margin-right: 6px; }
.legal-content h2 {
  font-size: 22px; font-weight: 700; color: var(--text-dark);
  margin: 40px 0 16px 0; letter-spacing: -0.01em;
}
.legal-content h2:first-child { margin-top: 0; }
.legal-content h3 {
  font-size: 17px; font-weight: 700; color: var(--text-dark);
  margin: 24px 0 12px 0;
}
.legal-content p, .legal-content li {
  font-size: 15px; line-height: 1.75; color: var(--text); margin-bottom: 12px;
}
.legal-content ul, .legal-content ol { padding-left: 24px; margin-bottom: 16px; }
.legal-content li { margin-bottom: 8px; }
.legal-content strong { color: var(--text-dark); font-weight: 600; }
.legal-content a { color: var(--accent); text-decoration: none; }
.legal-content a:hover { text-decoration: underline; }
