:root {
  --brand: #ff6f00;
  --brand-cyan: #48d9d9;
  --navy: #081738;
  --bg: #f5f6fc;
  --surface: #ffffff;
  --surface-2: #eef1f8;
  --surface-3: #e3e8f3;
  --text: #081738;
  --text-muted: #44506b;
}

body {
  font-family: "Aeonik", "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: var(--text);
}

h1,
h2,
h3,
h4,
h5,
h6,
.navbar .navbar-brand {
  font-family: "Electrolize", "Aeonik", "Inter", sans-serif;
}

a {
  color: inherit;
}

.navbar-glass {
  background: rgba(8, 23, 56, 0.98);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.navbar .navbar-brand {
  color: #ffffff;
  letter-spacing: 0.04em;
}

.navbar .navbar-brand:hover,
.navbar .navbar-brand:focus {
  color: #ffffff;
}

.navbar .nav-link {
  color: rgba(255, 255, 255, 0.75);
  font-weight: 600;
  position: relative;
}

.navbar .nav-link:hover,
.navbar .nav-link:focus {
  color: #ffffff;
}

.navbar .nav-link.active,
.navbar .nav-link[aria-current="page"] {
  color: var(--brand);
}

.navbar .nav-link.active::after,
.navbar .nav-link[aria-current="page"]::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -10px;
  height: 2px;
  background: var(--brand);
}

.navbar .brand-dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--brand);
  margin-right: 10px;
}

.hero-section {
  padding: 6rem 0 5rem;
  background: radial-gradient(circle at top left, #ffffff, #f5f6fc 55%, #eef1f8 100%);
}

.hero-card {
  background: var(--navy);
  color: #ffffff;
  border-radius: 18px;
  padding: 24px;
  border: 1px solid rgba(8, 23, 56, 0.4);
  box-shadow: 0 20px 40px rgba(8, 23, 56, 0.25);
}

.hero-card-header {
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  color: rgba(245, 246, 252, 0.7);
  margin-bottom: 16px;
}

.hero-card-body {
  display: grid;
  gap: 16px;
}

.metric {
  display: flex;
  justify-content: space-between;
  padding: 10px 14px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.12);
}

.metric strong {
  font-size: 1.1rem;
}

.hero-chart {
  height: 120px;
  border-radius: 12px;
  background: linear-gradient(130deg, rgba(255, 111, 0, 0.45), rgba(72, 217, 217, 0.25));
}

.section-space {
  padding: 5rem 0;
}

.section-alt {
  background: var(--surface-2);
}

.solution-card {
  border: 1px solid rgba(8, 23, 56, 0.08);
  border-radius: 16px;
  padding: 24px;
  background: var(--surface);
  box-shadow: 0 10px 30px rgba(8, 23, 56, 0.08);
}

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

.solution-card li {
  margin-bottom: 6px;
}

.industry-card {
  background: var(--surface);
  padding: 24px;
  border-radius: 14px;
  border: 1px solid rgba(8, 23, 56, 0.08);
  box-shadow: 0 10px 24px rgba(8, 23, 56, 0.08);
  transition: all 0.3s ease;
  cursor: pointer;
}

.industry-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 36px rgba(8, 23, 56, 0.14);
  border-color: var(--brand);
}

.industry-icon {
  font-size: 2.5rem;
  color: var(--brand);
  display: block;
  margin-bottom: 12px;
  font-variation-settings: 'FILL' 0, 'wght' 300, 'GRAD' 0, 'opsz' 24;
  transition: all 0.3s ease;
}

.industry-card:hover .industry-icon {
  transform: scale(1.1);
  color: var(--brand-cyan);
}

.industry-title {
  font-family: "Electrolize", sans-serif;
  font-weight: 700;
  font-size: 1.125rem;
  margin-bottom: 8px;
  color: var(--text);
}

.industry-desc {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.4;
}


.timeline {
  display: grid;
  gap: 16px;
}

.timeline-step {
  padding: 18px 20px;
  border-radius: 14px;
  border-left: 4px solid var(--brand);
  background: var(--surface);
}

.contact-info {
  display: grid;
  gap: 16px;
  margin-top: 24px;
}

.contact-form {
  background: rgba(255, 255, 255, 0.08);
  padding: 28px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.footer {
  background: var(--navy);
  color: #fff;
  padding: 24px 0;
}

.btn-primary {
  background-color: var(--brand);
  border-color: var(--brand);
  color: #fff;
  font-weight: 600;
}

.btn-primary:hover,
.btn-primary:focus {
  background-color: #e66400;
  border-color: #e66400;
}

.btn-outline-secondary {
  color: var(--text);
  border-color: rgba(8, 23, 56, 0.25);
}

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

.btn-outline-dark {
  color: var(--navy);
  border-color: rgba(8, 23, 56, 0.35);
}

.btn-outline-dark:hover {
  background: var(--brand);
  border-color: var(--brand);
  color: #fff;
}

.text-secondary {
  color: var(--text-muted) !important;
}

.badge.text-bg-dark {
  background-color: var(--navy) !important;
}

.badge-accent {
  background: var(--navy);
  color: var(--brand);
  border: 1px solid rgba(255, 111, 0, 0.4);
  font-weight: 600;
}

.product-card {
  background: var(--surface);
  border: 1px solid rgba(8, 23, 56, 0.08);
  border-radius: 18px;
  padding: 32px;
  box-shadow: 0 10px 30px rgba(8, 23, 56, 0.08);
  height: 100%;
  transition: all 0.3s ease;
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(8, 23, 56, 0.14);
}

.product-highlight {
  border: 2px solid var(--brand);
  position: relative;
  overflow: hidden;
}

.product-highlight::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--brand), var(--brand-cyan));
}

.product-icon-wrapper {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  background: rgba(255, 111, 0, 0.1);
  border-radius: 12px;
  margin-bottom: 16px;
}

.product-icon {
  font-size: 2rem;
  color: var(--brand);
  font-variation-settings: 'FILL' 1, 'wght' 400, 'GRAD' 0, 'opsz' 24;
}

.product-badge {
  display: inline-block;
  font-family: "Electrolize", sans-serif;
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  padding: 6px 12px;
  background: rgba(8, 23, 56, 0.06);
  border-radius: 6px;
  margin-bottom: 12px;
}

.product-badge-new {
  background: rgba(255, 111, 0, 0.15);
  color: var(--brand);
  border: 1px solid rgba(255, 111, 0, 0.3);
}

.product-title {
  font-family: "Electrolize", sans-serif;
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--text);
}

.product-description {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.product-specs {
  display: grid;
  gap: 12px;
  margin-top: 20px;
}

.spec-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 16px;
  background: var(--surface-2);
  border-radius: 8px;
}

.spec-label {
  font-family: "Electrolize", sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  color: var(--brand);
  font-weight: 600;
}

.spec-value {
  font-weight: 600;
  color: var(--text);
}

.product-features {
  display: grid;
  gap: 12px;
  margin-top: 20px;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9rem;
  color: var(--text);
}

.feature-item .material-symbols-outlined {
  font-size: 1.25rem;
  color: var(--brand-cyan);
  font-variation-settings: 'FILL' 1, 'wght' 300, 'GRAD' 0, 'opsz' 24;
}

.text-accent {
  color: var(--brand);
}

.hero-label {
  display: inline-block;
  font-family: "Electrolize", sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--brand);
  font-weight: 600;
}

.hero-heading {
  font-size: 3.5rem;
  line-height: 1.1;
}

.section-label {
  font-family: "Electrolize", sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  font-weight: 600;
}

.section-heading {
  font-size: 2.25rem;
  line-height: 1.2;
}

.footer a {
  text-decoration: none;
}

@media (max-width: 991px) {
  .hero-section {
    padding: 4rem 0;
  }
}
