/* ASTERON — LIGENT-style clone, typography reference: Apple */
:root {
  --bg: #080c14;
  --bg-elevated: #0e1420;
  --surface: #141b2b;
  --text: #e8ecf4;
  --text-muted: #8b96a8;
  --accent: #00c7be;
  --accent-dim: rgba(0, 199, 190, 0.15);
  --accent-glow: rgba(0, 199, 190, 0.4);
  --border: rgba(255, 255, 255, 0.06);
  /* Apple-style system font stack: SF Pro on Apple, Segoe UI / Roboto / Helvetica elsewhere */
  --font-apple: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text", "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --font-head: var(--font-apple);
  --font-body: var(--font-apple);
  --radius: 12px;
  --radius-lg: 20px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  letter-spacing: -0.01em;
}

/* Offset for fixed header (72px) so content is not hidden under it */
main {
  padding-top: 73px;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(8, 12, 20, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

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

.logo-wrap {
  display: flex;
  align-items: center;
  gap: 1rem;
  text-decoration: none;
  color: inherit;
}
.logo-wrap:hover { color: var(--text); }
.header-tagline {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-muted);
}
.logo-img {
  height: 32px;
  width: auto;
  display: block;
  object-fit: contain;
}

.nav-dropdown {
  position: relative;
}
.nav-dropdown-trigger {
  color: var(--text-muted);
  font-weight: 500;
  font-size: 0.95rem;
  cursor: pointer;
  padding: 0.25rem 0;
}
.nav-dropdown:hover .nav-dropdown-trigger { color: var(--accent); }
.nav-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 235px;
  padding: 0.5rem 0;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: 0 12px 24px rgba(0,0,0,0.3);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-4px);
  transition: opacity 0.2s, transform 0.2s, visibility 0.2s;
  z-index: 50;
}
.nav-dropdown:hover .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.nav-dropdown-menu a {
  display: block;
  padding: 0.6rem 1.25rem;
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.2s, background 0.2s;
}
.nav-dropdown-menu a:hover {
  color: var(--accent);
  background: var(--accent-dim);
}

.nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.nav a {
  color: var(--text-muted);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  transition: color 0.2s;
}
.nav a:hover { color: var(--accent); }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--text);
  font-size: 1.5rem;
  cursor: pointer;
}

@media (max-width: 900px) {
  .logo-img { height: 28px; }
  .header-tagline { display: none; }
  .nav {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--bg-elevated);
    flex-direction: column;
    align-items: stretch;
    padding: 1.5rem;
    gap: 0;
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.3s, opacity 0.3s;
  }
  .nav.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }
  .nav-dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: none;
    background: transparent;
    padding: 0.5rem 0 0 1rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s;
  }
  .nav-dropdown.open .nav-dropdown-menu { max-height: 300px; }
  .nav-dropdown-trigger { display: block; padding: 0.75rem 0; }
  .nav a { padding: 0.75rem 0; display: block; }
  .nav-toggle { display: block; }
}

/* Home hero: Bootstrap 5 Carousel */
.hero-carousel {
  position: relative;
  min-height: calc(100vh - 72px);
  overflow: hidden;
}
.hero-carousel .carousel,
.hero-carousel .carousel-inner,
.hero-carousel .carousel-item {
  min-height: calc(100vh - 72px);
}
.hero-carousel .carousel-item {
  position: relative;
}
.hero-carousel .hero-slide-bg {
  position: absolute;
  inset: 0;
  background-color: var(--bg);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}
.hero-carousel .hero-slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.35) 0%, rgba(0,0,0,0.5) 100%);
  pointer-events: none;
}
.hero-carousel .carousel-caption {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 4rem 1rem;
  background: none;
  left: 0;
  right: 0;
  bottom: 0;
}
.hero-carousel .carousel-caption .hero-inner {
  position: relative;
  z-index: 1;
}
.hero-carousel .hero-title {
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 1rem;
  color: #fff;
  text-shadow: 0 1px 2px rgba(0,0,0,0.4);
}
.hero-carousel .hero-subtitle {
  font-size: clamp(0.95rem, 1.8vw, 1.1rem);
  line-height: 1.6;
  color: rgba(255,255,255,0.92);
  max-width: 560px;
  margin: 0 auto 2rem;
  text-shadow: 0 1px 2px rgba(0,0,0,0.3);
}
.hero-carousel .hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}
.hero-carousel .hero-cta .btn { margin: 0; }
.hero-carousel .hero-cta .btn-primary {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}
.hero-carousel .hero-cta .btn-secondary {
  background: rgba(255,255,255,0.2);
  color: #fff;
  border-color: rgba(255,255,255,0.5);
}
.hero-carousel .hero-cta .btn-secondary:hover {
  background: rgba(255,255,255,0.3);
  border-color: rgba(255,255,255,0.7);
  color: #fff;
}
.hero-carousel .hero-slide-title {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: clamp(1.4rem, 3vw, 2rem);
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 1rem;
  color: #fff;
  text-shadow: 0 1px 2px rgba(0,0,0,0.4);
}
.hero-carousel .hero-slide-desc {
  font-size: clamp(0.95rem, 1.8vw, 1.1rem);
  line-height: 1.6;
  color: rgba(255,255,255,0.92);
  max-width: 640px;
  margin: 0 auto 2rem;
  text-shadow: 0 1px 2px rgba(0,0,0,0.3);
}
/* Bootstrap carousel indicators (dots) - theme override */
.hero-carousel .carousel-indicators {
  z-index: 3;
  margin-bottom: 1.5rem;
}
.hero-carousel .carousel-indicators [data-bs-target] {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.6);
  background: transparent;
  opacity: 1;
  transition: background 0.2s, border-color 0.2s;
}
.hero-carousel .carousel-indicators [data-bs-target]:hover {
  border-color: rgba(255,255,255,0.9);
  background: rgba(255,255,255,0.3);
}
.hero-carousel .carousel-indicators .active {
  background: #fff;
  border-color: #fff;
}
/* Bootstrap carousel controls (prev/next) - theme override */
.hero-carousel .carousel-control-prev,
.hero-carousel .carousel-control-next {
  z-index: 3;
  width: 3rem;
  opacity: 0.8;
}
.hero-carousel .carousel-control-prev:hover,
.hero-carousel .carousel-control-next:hover {
  opacity: 1;
}
.hero-carousel .carousel-control-prev-icon,
.hero-carousel .carousel-control-next-icon {
  filter: none;
  width: 2.5rem;
  height: 2.5rem;
}
.hero-carousel .carousel-control-prev:hover .carousel-control-prev-icon,
.hero-carousel .carousel-control-next:hover .carousel-control-next-icon {
  background-color: rgba(255,255,255,0.5);
}

/* Why ASTERON */
.why-asteron {
  padding: 4rem 0;
  background: var(--bg-elevated);
}
.why-asteron .section-desc {
  margin-bottom: 2rem;
}
.value-props {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
  margin-bottom: 2rem;
}
.value-prop {
  padding: 1.25rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}
.value-prop strong {
  display: block;
  font-size: 0.95rem;
  margin-bottom: 0.35rem;
  color: var(--text);
}
.value-prop span {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.45;
}

/* Product Categories (home) */
.product-categories {
  padding: 4rem 0;
}
.product-categories .section-desc {
  margin-bottom: 1.5rem;
}
.product-cat-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1rem;
  justify-content: center;
}
.product-cat-list a {
  display: inline-block;
  padding: 0.5rem 1rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.2s, border-color 0.2s;
}
.product-cat-list a:hover {
  color: var(--accent);
  border-color: var(--accent-dim);
}

/* Partner Ecosystem / Working Models */
.partner-ecosystem {
  padding: 4rem 0;
  background: var(--bg-elevated);
}
.partner-ecosystem .section-desc {
  margin-bottom: 1.5rem;
}
.partner-ecosystem .btn { margin-top: 0.5rem; margin-right: 0.5rem; }

/* Working with ASTERON: four boxes */
.working-modes {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1rem;
  margin: 2rem 0 1.5rem;
}
.working-mode-box {
  padding: 1.25rem 1rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  text-align: center;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text);
}

/* Closing CTA (home) */
.closing-cta .next-cta-inner {
  flex-direction: column;
  text-align: center;
}
.closing-cta .section-title { margin-bottom: 0.5rem; }
.closing-cta .section-desc {
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 1rem;
}
.closing-cta .btn { margin-top: 1rem; }

/* Hero (legacy, kept for other pages) */
.hero { padding: 0; }
.hero-block {
  display: block;
  text-decoration: none;
  color: inherit;
  padding: 6rem 0 4rem;
  transition: background 0.2s;
}
.hero-block:hover { background: rgba(255,255,255,0.02); }
.hero-inner { text-align: center; }
.hero-title {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  line-height: 1.15;
  letter-spacing: -0.025em;
  margin: 0;
  color: var(--text);
}

.btn {
  display: inline-block;
  padding: 0.9rem 1.8rem;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  border-radius: var(--radius);
  transition: transform 0.2s, box-shadow 0.2s;
}
.btn-primary { background: var(--accent); color: var(--bg); }
.btn-primary:hover { box-shadow: 0 0 30px var(--accent-glow); transform: translateY(-1px); }
.btn-secondary { background: transparent; color: var(--accent); border: 2px solid var(--accent); }
.btn-secondary:hover { background: var(--accent-dim); transform: translateY(-1px); }

/* Solutions grid */
.solutions { padding: 5rem 0; }
.section-title {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  letter-spacing: -0.025em;
  margin: 0 0 0.75rem;
}
.section-desc {
  color: var(--text-muted);
  max-width: 640px;
  margin: 0 0 3rem;
}
.solution-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 1.5rem;
}
.solution-card {
  display: block;
  text-decoration: none;
  color: inherit;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: border-color 0.2s, transform 0.2s;
}
.solution-card:hover {
  border-color: var(--accent-dim);
  transform: translateY(-4px);
}
.card-visual {
  height: 160px;
  background: linear-gradient(135deg, var(--bg-elevated) 0%, var(--surface) 100%);
  position: relative;
}
.card-visual::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, var(--accent-dim) 100%);
  opacity: 0.5;
}
.card-visual-1 {
  background: linear-gradient(135deg, #0a1628 0%, #0d2847 50%, #0a1628 100%);
  background-image: url('../images/solution-banner1.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.card-visual-2 {
  background: linear-gradient(135deg, #0c1a1f 0%, #0d2830 50%, #0c1a1f 100%);
  background-image: url('../images/solution-banner2.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.card-visual-3 { background: linear-gradient(135deg, #1a0d28 0%, #1e1640 50%, #1a0d28 100%);
  background-image: url('../images/solution-banner3.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.card-visual-4 { background: linear-gradient(135deg, #0d1a0d 0%, #0d2814 50%, #0d1a0d 100%);
  background-image: url('../images/solution-banner4.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.card-visual-5 { background: linear-gradient(135deg, #1a1408 0%, #28200d 50%, #1a1408 100%);
  background-image: url('../images/solution-banner5.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.card-visual-6 { background: linear-gradient(135deg, #0d1428 0%, #141f33 50%, #0d1428 100%);
  background-image: url('../images/solution-banner6.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.card-content { padding: 1.75rem; }
.card-content h3 {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 1.2rem;
  letter-spacing: -0.02em;
  margin: 0 0 0.5rem;
}
.card-content p { color: var(--text-muted); font-size: 0.95rem; margin: 0 0 1rem; }
.card-link { color: var(--accent); font-weight: 600; font-size: 0.9rem; }
.solution-card:hover .card-link { text-decoration: underline; }

/* Product category cards (home): same layout as solution-cards, gradient-only visuals */
.product-card-visual-1 { background: linear-gradient(135deg, #0a1628 0%, #0d2847 50%, #0a1628 100%);
  background-image: url('../images/product-banner1.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.product-card-visual-2 { background: linear-gradient(135deg, #0c1a1f 0%, #0d2830 50%, #0c1a1f 100%);
  background-image: url('../images/product-banner2.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.product-card-visual-3 { background: linear-gradient(135deg, #1a0d28 0%, #1e1640 50%, #1a0d28 100%);
  background-image: url('../images/product-banner3.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.product-card-visual-4 { background: linear-gradient(135deg, #0d1a0d 0%, #0d2814 50%, #0d1a0d 100%);
  background-image: url('../images/product-banner4.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.product-card-visual-5 { background: linear-gradient(135deg, #1a1408 0%, #28200d 50%, #1a1408 100%);
  background-image: url('../images/product-banner5.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.product-card-visual-6 { background: linear-gradient(135deg, #0d1428 0%, #141f33 50%, #0d1428 100%);
  background-image: url('../images/product-banner6.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* Product Family (solution sub-pages: list by family with image) */
.product-family {
  padding: 3rem 0 4rem;
  background: var(--bg-elevated);
}
.product-family .section-title {
  margin-bottom: 2rem;
}
.product-family-block {
  margin-bottom: 3rem;
}
.product-family-block:last-child {
  margin-bottom: 0;
}
.family-title {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 1.35rem;
  letter-spacing: -0.02em;
  margin: 0 0 1rem;
  color: var(--text);
}
.family-content {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 2rem;
  align-items: start;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
}
.family-image {
  text-align: center;
}
.family-image img {
  max-width: 180px;
  width: 100%;
  height: auto;
  object-fit: contain;
}
.product-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.product-item {
  padding: 0.6rem 0;
  border-bottom: 1px solid var(--border);
}
.product-item:last-child {
  border-bottom: none;
}
.product-name {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text);
  display: block;
  margin-bottom: 0.25rem;
}
.product-spec {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.45;
}
/* Spec table for category product pages */
.spec-table-wrap { overflow-x: auto; margin-top: 0.75rem; }
.spec-table {
  width: 100%;
  min-width: 480px;
  border-collapse: collapse;
  font-size: 0.9rem;
}
.spec-table th,
.spec-table td {
  padding: 0.5rem 0.75rem;
  text-align: left;
  border: 1px solid var(--border);
}
.spec-table th {
  background: var(--bg-elevated);
  font-weight: 600;
  color: var(--text);
}
.spec-table td { color: var(--text-muted); }
.spec-table tr:hover td { color: var(--text); }
.spec-table .model { font-weight: 600; color: var(--text); }

/* Product model card: one block per SKU, each param on its own line */
.product-models { margin-top: 0.5rem; }
.product-model-card {
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border);
}
.product-model-card:last-child { margin-bottom: 0; padding-bottom: 0; border-bottom: none; }
.product-model-name {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 1.05rem;
  letter-spacing: -0.02em;
  margin: 0 0 0.5rem;
  color: var(--text);
}
.product-spec-list {
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
}
.product-spec-list li {
  margin: 0.2rem 0;
  padding: 0;
}
.product-spec-list strong { color: var(--text); font-weight: 600; }

@media (max-width: 768px) {
  .family-content {
    grid-template-columns: 1fr;
  }
  .family-image img { max-width: 140px; }
  .spec-table { font-size: 0.85rem; }
  .spec-table th, .spec-table td { padding: 0.4rem 0.5rem; }
}

/* About blurb */
.about-blurb {
  padding: 4rem 0;
  background: var(--bg-elevated);
}
.about-blurb .section-desc { margin-bottom: 1.5rem; }
.about-blurb .btn { margin-top: 0.5rem; }

/* News */
.news { padding: 5rem 0; background: var(--bg-elevated); }
.news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}
.news-card {
  display: block;
  text-decoration: none;
  color: inherit;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color 0.2s;
}
.news-card:hover { border-color: var(--accent-dim); }
.news-img {
  height: 160px;
  background: linear-gradient(135deg, var(--bg-elevated) 0%, var(--surface) 100%);
}
.news-img-1 { background: linear-gradient(135deg, #0a1628 0%, #0d2847 100%); }
.news-img-2 { background: linear-gradient(135deg, #0c1a1f 0%, #0d2830 100%); }
.news-body { padding: 1.25rem 1.5rem; }
.news-date { display: block; font-size: 0.8rem; color: var(--text-muted); margin-bottom: 0.5rem; }
.news-card h4 {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 1.05rem;
  letter-spacing: -0.01em;
  margin: 0 0 0.5rem;
  line-height: 1.35;
  color: var(--text);
}
.news-card p { color: var(--text-muted); font-size: 0.9rem; margin: 0 0 0.75rem; line-height: 1.5; }
.news-link { color: var(--accent); font-weight: 500; font-size: 0.9rem; }
.news-card:hover .news-link { text-decoration: underline; }

/* Sustainable / ESG block */
.esg { padding: 5rem 0; }
.esg-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 3rem;
}
.esg-title {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: clamp(1.5rem, 3vw, 2rem);
  letter-spacing: -0.02em;
  line-height: 1.3;
  margin: 0 0 1rem;
}
.esg-content p { color: var(--text-muted); margin: 0 0 1.5rem; }
.esg-visual {
  height: 200px;
  background: linear-gradient(135deg, var(--accent-dim) 0%, transparent 60%);
  border-radius: var(--radius);
  background-image: url('../images/compliance-banner.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
@media (max-width: 768px) {
  .esg-inner { grid-template-columns: 1fr; }
  .esg-visual { height: 120px; }
}

/* Next / CTA */
.next-cta { padding: 3rem 0; border-top: 1px solid var(--border); }
.next-cta-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 2rem;
}
.next-link {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.2s;
}
.next-link:hover { color: var(--accent); }
.next-contact { text-align: center; }
.next-contact strong { display: block; color: var(--text); margin-bottom: 0.25rem; }

/* Footer */
.footer {
  padding: 2rem 0;
  border-top: 1px solid var(--border);
  background: var(--bg-elevated);
}
.footer-row {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}
.footer-row-2 { border-top: 1px solid var(--border); }
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem 1.5rem;
}
.footer-nav a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.9rem;
}
.footer-nav a:hover { color: var(--accent); }
.footer-social { display: flex; gap: 1rem; }
.footer-social a { color: var(--text-muted); text-decoration: none; font-size: 0.85rem; }
.footer-social a:hover { color: var(--accent); }
.footer-logo .logo-img { height: 24px; }
.footer-legal {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.85rem;
  color: var(--text-muted);
}
.footer-legal a { color: var(--text-muted); text-decoration: none; }
.footer-legal a:hover { color: var(--accent); }
.footer-copy { font-size: 0.85rem; color: var(--text-muted); margin: 0; }

/* Scroll up */
.scroll-up {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  padding: 0.5rem 1rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.85rem;
  z-index: 50;
  transition: color 0.2s, border-color 0.2s;
}
.scroll-up:hover { color: var(--accent); border-color: var(--accent-dim); }

/* Inner pages */
.page-hero {
  padding: 8rem 0 4rem;
  text-align: center;
}
.page-hero .hero-title { margin-bottom: 0.5rem; }
.hero-desc {
  font-size: 1.15rem;
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto 2rem;
}
.page-content {
  padding: 3rem 0 5rem;
  max-width: 800px;
  margin: 0 auto;
}
.page-content h2 {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 1.5rem;
  letter-spacing: -0.02em;
  margin: 2rem 0 0.75rem;
}
.page-content p { margin: 0 0 1rem; color: var(--text-muted); }
.page-content ul { margin: 0 0 1rem; padding-left: 1.5rem; color: var(--text-muted); }
.page-content a { color: var(--accent); text-decoration: none; }
.page-content a:hover { text-decoration: underline; }
.page-content .page-note { margin-top: 2rem; padding: 1rem 1.25rem; background: var(--bg-elevated); border-left: 4px solid var(--accent-dim); border-radius: 0 var(--radius) var(--radius) 0; }

/* Solution pages: bottom disclaimer */
.solution-disclaimer {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-top: 2rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}

/* Product Categories page */
.product-categories-page .product-cat-intro {
  margin-bottom: 2rem;
}
.product-categories-page .product-categories-heading {
  font-family: var(--font-head);
  font-size: 1.35rem;
  font-weight: 600;
  margin: 0 0 1.5rem;
  color: var(--text);
}
.product-category-block {
  margin-bottom: 2.5rem;
}
.product-category-block h2 {
  margin-top: 0;
  padding-top: 0.25rem;
  font-size: 1.2rem;
}
.product-category-block h3 {
  font-size: 1.1rem;
  font-weight: 600;
  margin: 1.25rem 0 0.5rem;
  color: var(--text);
}
.product-cat-cta {
  margin: 0.75rem 0 0 !important;
}
.product-cat-cta a {
  color: var(--accent);
  font-weight: 600;
}
.product-cat-cta a:hover { text-decoration: underline; }
.product-categories-closing {
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
  font-size: 0.95rem;
  color: var(--text-muted);
}
.product-categories-closing a { color: var(--accent); }
.product-series-list {
  list-style: none;
  padding-left: 0;
  margin: 0.5rem 0 0.75rem;
}
.product-series-list li {
  padding: 0.25rem 0;
  color: var(--text-muted);
  font-size: 0.95rem;
  border-bottom: 1px solid var(--border);
}
.product-series-list li:last-child { border-bottom: none; }
.relevant-solutions {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-top: 0.5rem !important;
}
.product-cat-note {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-top: 0.75rem !important;
  font-style: italic;
}

/* About page: Who We Serve / Business Model lists */
.page-content .about-serve-list,
.page-content .about-model-list {
  list-style: none;
  padding-left: 0;
  margin: 0.5rem 0 1.5rem;
}
.page-content .about-serve-list li,
.page-content .about-model-list li {
  padding: 0.35rem 0;
  color: var(--text-muted);
  border-bottom: 1px solid var(--border);
}
.page-content .about-serve-list li:last-child,
.page-content .about-model-list li:last-child { border-bottom: none; }

/* About page: US company block */
.about-company-block {
  margin: 2.5rem 0 2rem;
  padding: 1.5rem 1.75rem;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}
.about-company-name {
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--text);
  margin: 0 0 0.35rem !important;
}
.about-company-location,
.about-company-tagline {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin: 0 0 0.25rem !important;
}
.about-company-tagline { margin-bottom: 0 !important; }

/* Partner Ecosystem page */
.partner-ecosystem-page .partner-modes-list,
.partner-ecosystem-page .partner-value-list {
  list-style: none;
  padding-left: 0;
  margin: 0.5rem 0 1.5rem;
}
.partner-ecosystem-page .partner-modes-list li,
.partner-ecosystem-page .partner-value-list li {
  padding: 0.5rem 0;
  color: var(--text-muted);
  border-bottom: 1px solid var(--border);
}
.partner-ecosystem-page .partner-modes-list li:last-child,
.partner-ecosystem-page .partner-value-list li:last-child { border-bottom: none; }
.partner-cta-block {
  margin-top: 2.5rem;
  padding: 1.5rem 0;
  border-top: 1px solid var(--border);
  text-align: center;
}
.partner-cta-block p { margin-bottom: 1rem !important; }
.partner-cta-block .btn { margin: 0; }

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.9rem;
  margin-bottom: 2rem;
}
.back-link:hover { color: var(--accent); }

/* Contact */
.contact { padding: 5rem 0; text-align: center; }
.contact-form { text-align: left; max-width: 520px; margin: 0 auto 2rem; }
.contact-form label { display: block; margin-bottom: 0.5rem; font-weight: 500; }
.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  margin-bottom: 1rem;
  font-family: var(--font-body);
  font-size: 1rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--text);
}
.contact-form textarea { min-height: 120px; resize: vertical; }
.contact-form .required { color: var(--accent); }
.contact-form .form-status {
  padding: 0.75rem 1rem;
  margin-bottom: 1rem;
  border-radius: var(--radius);
  font-size: 0.95rem;
}
.contact-form .form-status-success {
  background: rgba(34, 197, 94, 0.12);
  border: 1px solid rgba(34, 197, 94, 0.4);
  color: #16a34a;
}
.contact-form .form-status-error {
  background: rgba(239, 68, 68, 0.08);
  border: 1px solid rgba(239, 68, 68, 0.35);
  color: #dc2626;
}
.contact-info { margin-top: 2rem; color: var(--text-muted); font-size: 0.95rem; }
.contact-info a { color: var(--accent); }

.news-article {
  margin-bottom: 3rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--border);
}
.news-article:last-child { border-bottom: none; }
.news-article h3 { font-family: var(--font-head); font-size: 1.35rem; margin: 0 0 0.5rem; }
.news-article .date { font-size: 0.85rem; color: var(--text-muted); margin-bottom: 0.75rem; }
.news-article p { color: var(--text-muted); }
