* {
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  color: #e2e8f0;
  background: #1a1a2e;
  margin: 0;
  padding: 0;
}

a {
  text-decoration: none;
}

img {
  max-width: 100%;
}

.site-nav {
  background: #0f0f1a;
  border-bottom: 1px solid #2d2d4a;
  padding: 0 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 1px 12px rgba(0,0,0,0.4);
}

.site-nav .navbar-brand {
  font-size: 22px;
  font-weight: 800;
  color: #f1f5f9;
  letter-spacing: -0.3px;
}

.site-nav .navbar-brand span {
  color: #EA580C;
}

.site-nav .navbar-toggler {
  border-color: #2d2d4a;
}

.site-nav .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28241, 245, 249, 0.75%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.site-nav .nav-link {
  color: #94a3b8;
  font-weight: 500;
  font-size: 15px;
  padding: 8px 14px;
  transition: color 0.2s;
}

.site-nav .nav-link:hover {
  color: #EA580C;
}

.site-nav .nav-link.active {
  color: #EA580C;
}

.btn-nav-cta {
  background: #EA580C;
  color: #fff;
  border-radius: 6px;
  padding: 9px 20px;
  font-weight: 600;
  font-size: 14px;
  border: none;
  transition: background 0.2s;
  display: inline-block;
}

.btn-nav-cta:hover {
  background: #c2410c;
  color: #fff;
}

.hero {
  background: #0f0f1a;
  padding: 100px 0 80px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background: radial-gradient(ellipse at 80% 40%, rgba(234,88,12,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.hero-eyebrow {
  display: inline-block;
  background: rgba(234,88,12,0.15);
  color: #EA580C;
  border-radius: 20px;
  padding: 5px 16px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 20px;
  border: 1px solid rgba(234,88,12,0.3);
}

.hero h1 {
  font-size: 52px;
  font-weight: 800;
  color: #f1f5f9;
  line-height: 1.12;
  margin-bottom: 22px;
  letter-spacing: -1.5px;
  max-width: 640px;
}

.hero h1 span {
  color: #EA580C;
}

.hero-sub {
  font-size: 18px;
  color: #94a3b8;
  max-width: 520px;
  margin: 0 0 36px;
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 60px;
}

.btn-primary-hero {
  background: #EA580C;
  color: #fff;
  padding: 14px 32px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 16px;
  border: none;
  transition: background 0.2s, transform 0.15s;
  display: inline-block;
}

.btn-primary-hero:hover {
  background: #c2410c;
  color: #fff;
  transform: translateY(-1px);
}

.btn-outline-hero {
  background: transparent;
  color: #f1f5f9;
  padding: 14px 32px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 16px;
  border: 2px solid #2d2d4a;
  transition: all 0.2s;
  display: inline-block;
}

.btn-outline-hero:hover {
  background: #2d2d4a;
  color: #f1f5f9;
}

.hero-dashboard {
  background: #12122a;
  border-radius: 16px;
  border: 1px solid #2d2d4a;
  box-shadow: 0 24px 64px rgba(0,0,0,0.5);
  overflow: hidden;
  max-width: 560px;
}

.hero-dash-bar {
  background: #0a0a1a;
  padding: 10px 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.hero-dash-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.hero-dash-dot.red { background: #ef4444; }
.hero-dash-dot.yellow { background: #f59e0b; }
.hero-dash-dot.green { background: #22c55e; }

.hero-dash-title {
  margin-left: 8px;
  color: #64748b;
  font-size: 12px;
  font-weight: 500;
}

.hero-dash-body {
  padding: 20px;
}

.hero-dash-row {
  display: flex;
  gap: 12px;
  margin-bottom: 14px;
}

.hero-dash-metric {
  background: #1a1a2e;
  border: 1px solid #2d2d4a;
  border-radius: 10px;
  padding: 14px 16px;
  flex: 1;
}

.hero-dash-metric.alert {
  border-color: rgba(234,88,12,0.5);
  background: rgba(234,88,12,0.08);
}

.hero-dash-metric .metric-label {
  font-size: 11px;
  color: #64748b;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 4px;
}

.hero-dash-metric .metric-val {
  font-size: 24px;
  font-weight: 800;
  color: #f1f5f9;
  line-height: 1;
}

.hero-dash-metric.alert .metric-val {
  color: #EA580C;
}

.hero-dash-metric .metric-sub {
  font-size: 11px;
  color: #64748b;
  margin-top: 3px;
}

.hero-dash-chart {
  background: #1a1a2e;
  border: 1px solid #2d2d4a;
  border-radius: 10px;
  padding: 14px 16px;
}

.hero-dash-chart-label {
  font-size: 12px;
  color: #94a3b8;
  margin-bottom: 10px;
  font-weight: 500;
}

.mini-bars {
  display: flex;
  align-items: flex-end;
  gap: 6px;
  height: 48px;
}

.mini-bar {
  flex: 1;
  border-radius: 3px 3px 0 0;
  background: #2d2d4a;
  min-height: 8px;
}

.mini-bar.active {
  background: #EA580C;
}

.section-eyebrow {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #EA580C;
  margin-bottom: 10px;
}

.section-title {
  font-size: 36px;
  font-weight: 800;
  color: #f1f5f9;
  margin-bottom: 14px;
  letter-spacing: -0.5px;
}

.section-sub {
  font-size: 17px;
  color: #64748b;
  max-width: 580px;
  line-height: 1.65;
}

.capabilities-section {
  padding: 80px 0;
  background: #1a1a2e;
}

.capability-card {
  background: #12122a;
  border: 1px solid #2d2d4a;
  border-radius: 16px;
  padding: 36px 28px;
  height: 100%;
  transition: box-shadow 0.2s, border-color 0.2s, transform 0.2s;
}

.capability-card:hover {
  border-color: rgba(234,88,12,0.4);
  box-shadow: 0 8px 32px rgba(234,88,12,0.1);
  transform: translateY(-3px);
}

.capability-icon {
  width: 52px;
  height: 52px;
  background: rgba(234,88,12,0.12);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 22px;
  color: #EA580C;
  border: 1px solid rgba(234,88,12,0.25);
}

.capability-card h3 {
  font-size: 20px;
  font-weight: 700;
  color: #f1f5f9;
  margin-bottom: 10px;
}

.capability-card p {
  color: #64748b;
  font-size: 15px;
  line-height: 1.65;
  margin: 0;
}

.stats-bar {
  background: #0f0f1a;
  padding: 56px 0;
  border-top: 1px solid #2d2d4a;
  border-bottom: 1px solid #2d2d4a;
}

.stat-item {
  text-align: center;
  padding: 8px 20px;
}

.stat-item .stat-num {
  font-size: 42px;
  font-weight: 800;
  color: #EA580C;
  line-height: 1;
  margin-bottom: 8px;
  letter-spacing: -1px;
}

.stat-item .stat-label {
  font-size: 14px;
  color: #64748b;
  font-weight: 500;
}

.stat-item .stat-desc {
  font-size: 12px;
  color: #475569;
  margin-top: 4px;
}

.industries-section {
  padding: 80px 0;
  background: #1a1a2e;
}

.industry-card {
  background: #12122a;
  border: 1px solid #2d2d4a;
  border-radius: 12px;
  padding: 28px 24px;
  height: 100%;
  transition: border-color 0.2s;
}

.industry-card:hover {
  border-color: rgba(234,88,12,0.4);
}

.industry-icon {
  font-size: 28px;
  color: #EA580C;
  margin-bottom: 14px;
}

.industry-card h4 {
  font-size: 18px;
  font-weight: 700;
  color: #f1f5f9;
  margin-bottom: 8px;
}

.industry-card p {
  font-size: 14px;
  color: #64748b;
  margin: 0;
  line-height: 1.6;
}

.cta-banner {
  background: linear-gradient(135deg, #EA580C 0%, #c2410c 100%);
  padding: 80px 0;
  text-align: center;
}

.cta-banner h2 {
  font-size: 38px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 14px;
  letter-spacing: -0.5px;
}

.cta-banner p {
  font-size: 18px;
  color: rgba(255,255,255,0.8);
  margin-bottom: 32px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

.btn-cta-white {
  background: #fff;
  color: #EA580C;
  padding: 14px 36px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 16px;
  border: none;
  transition: all 0.2s;
  display: inline-block;
  margin: 6px;
}

.btn-cta-white:hover {
  background: #f1f5f9;
  color: #EA580C;
  transform: translateY(-1px);
}

.btn-cta-outline-white {
  background: transparent;
  color: #fff;
  padding: 14px 36px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 16px;
  border: 2px solid rgba(255,255,255,0.6);
  transition: all 0.2s;
  display: inline-block;
  margin: 6px;
}

.btn-cta-outline-white:hover {
  background: rgba(255,255,255,0.1);
  color: #fff;
  border-color: #fff;
}

.site-footer {
  background: #0a0a14;
  padding: 64px 0 32px;
  color: #64748b;
  border-top: 1px solid #2d2d4a;
}

.footer-brand {
  font-size: 20px;
  font-weight: 800;
  color: #f1f5f9;
  margin-bottom: 12px;
}

.footer-brand span {
  color: #EA580C;
}

.footer-tagline {
  font-size: 14px;
  color: #475569;
  line-height: 1.6;
  max-width: 280px;
}

.footer-col-title {
  font-size: 13px;
  font-weight: 700;
  color: #f1f5f9;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 16px;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: #475569;
  font-size: 14px;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: #EA580C;
}

.footer-links li.footer-text-item {
  color: #475569;
  font-size: 14px;
}

.footer-bottom {
  border-top: 1px solid #1a1a2e;
  margin-top: 48px;
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom-left {
  font-size: 13px;
  color: #334155;
}

.footer-bottom-right a {
  color: #334155;
  font-size: 13px;
  margin-left: 16px;
  transition: color 0.2s;
}

.footer-bottom-right a:hover {
  color: #EA580C;
}

.page-header {
  background: #0f0f1a;
  padding: 72px 0 56px;
  border-bottom: 1px solid #2d2d4a;
}

.page-header h1 {
  font-size: 42px;
  font-weight: 800;
  color: #f1f5f9;
  margin-bottom: 14px;
  letter-spacing: -0.5px;
}

.page-header p {
  font-size: 18px;
  color: #64748b;
  max-width: 560px;
  margin: 0;
  line-height: 1.6;
}

.product-section {
  padding: 80px 0;
  background: #1a1a2e;
}

.product-feature-row {
  padding: 56px 0;
  border-bottom: 1px solid #2d2d4a;
}

.product-feature-row:last-child {
  border-bottom: none;
}

.product-img-placeholder {
  background: #12122a;
  border-radius: 16px;
  height: 320px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #EA580C;
  font-size: 14px;
  font-weight: 500;
  border: 1px solid #2d2d4a;
}

.product-img-placeholder i {
  font-size: 64px;
  display: block;
  margin-bottom: 12px;
  opacity: 0.5;
}

.product-img-placeholder span {
  color: #475569;
  font-size: 13px;
}

.value-item {
  display: flex;
  gap: 16px;
  margin-bottom: 28px;
}

.value-icon {
  width: 44px;
  height: 44px;
  background: rgba(234,88,12,0.12);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #EA580C;
  font-size: 18px;
  flex-shrink: 0;
  border: 1px solid rgba(234,88,12,0.25);
}

.value-item h4 {
  font-size: 17px;
  font-weight: 700;
  color: #f1f5f9;
  margin-bottom: 6px;
}

.value-item p {
  font-size: 14px;
  color: #64748b;
  margin: 0;
  line-height: 1.6;
}

.solutions-section {
  padding: 80px 0;
  background: #1a1a2e;
}

.solution-block {
  background: #12122a;
  border: 1px solid #2d2d4a;
  border-radius: 16px;
  padding: 40px;
  height: 100%;
  transition: border-color 0.2s;
}

.solution-block:hover {
  border-color: rgba(234,88,12,0.4);
}

.solution-block h3 {
  font-size: 22px;
  font-weight: 700;
  color: #f1f5f9;
  margin-bottom: 12px;
}

.solution-block p {
  color: #64748b;
  font-size: 15px;
  line-height: 1.65;
  margin-bottom: 20px;
}

.solution-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.solution-list li {
  padding: 8px 0;
  color: #94a3b8;
  font-size: 14px;
  border-bottom: 1px solid #1a1a2e;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.solution-list li:last-child {
  border-bottom: none;
}

.solution-list li i {
  color: #EA580C;
  margin-top: 2px;
  flex-shrink: 0;
}

.about-section {
  padding: 80px 0;
  background: #1a1a2e;
}

.about-img-placeholder {
  background: #12122a;
  border-radius: 16px;
  height: 380px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #EA580C;
  font-size: 14px;
  font-weight: 500;
  border: 1px solid #2d2d4a;
}

.team-section {
  padding: 80px 0;
  background: #12122a;
}

.team-card {
  background: #1a1a2e;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid #2d2d4a;
  transition: box-shadow 0.2s, border-color 0.2s;
  text-align: center;
}

.team-card:hover {
  border-color: rgba(234,88,12,0.4);
  box-shadow: 0 8px 32px rgba(0,0,0,0.3);
}

.team-card-img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  object-position: center;
}

.team-card-body {
  padding: 20px;
}

.team-card-name {
  font-size: 18px;
  font-weight: 700;
  color: #f1f5f9;
  margin-bottom: 4px;
}

.team-card-title {
  font-size: 13px;
  color: #EA580C;
  font-weight: 600;
  margin-bottom: 10px;
}

.team-card-bio {
  font-size: 13px;
  color: #64748b;
  line-height: 1.6;
}

.contact-section {
  padding: 80px 0;
  background: #1a1a2e;
}

.contact-card {
  background: #12122a;
  border-radius: 16px;
  padding: 36px;
  border: 1px solid #2d2d4a;
  height: 100%;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 24px;
}

.contact-icon {
  width: 44px;
  height: 44px;
  background: rgba(234,88,12,0.12);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #EA580C;
  font-size: 18px;
  flex-shrink: 0;
  border: 1px solid rgba(234,88,12,0.25);
}

.contact-item h5 {
  font-size: 14px;
  font-weight: 700;
  color: #f1f5f9;
  margin-bottom: 3px;
}

.contact-item p {
  font-size: 14px;
  color: #64748b;
  margin: 0;
  line-height: 1.5;
}

.contact-item a {
  color: #EA580C;
}

.contact-form .form-control {
  background: #0f0f1a;
  border: 1px solid #2d2d4a;
  border-radius: 8px;
  padding: 12px 16px;
  font-size: 15px;
  color: #f1f5f9;
  transition: border-color 0.2s;
}

.contact-form .form-control:focus {
  border-color: #EA580C;
  box-shadow: 0 0 0 3px rgba(234,88,12,0.12);
  outline: none;
  background: #0f0f1a;
  color: #f1f5f9;
}

.contact-form .form-control::placeholder {
  color: #475569;
}

.contact-form label {
  font-size: 14px;
  font-weight: 600;
  color: #94a3b8;
  margin-bottom: 6px;
}

.btn-submit {
  background: #EA580C;
  color: #fff;
  padding: 13px 32px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 15px;
  border: none;
  width: 100%;
  transition: background 0.2s;
  cursor: pointer;
}

.btn-submit:hover {
  background: #c2410c;
}

.news-section {
  padding: 80px 0;
  background: #1a1a2e;
}

.news-card {
  background: #12122a;
  border: 1px solid #2d2d4a;
  border-radius: 16px;
  overflow: hidden;
  transition: box-shadow 0.2s, border-color 0.2s, transform 0.2s;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.news-card:hover {
  box-shadow: 0 8px 32px rgba(0,0,0,0.3);
  border-color: rgba(234,88,12,0.4);
  transform: translateY(-3px);
}

.news-card-img {
  background: #1a1a2e;
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #EA580C;
  font-size: 48px;
  border-bottom: 1px solid #2d2d4a;
}

.news-card-body {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.news-tag {
  display: inline-block;
  background: rgba(234,88,12,0.12);
  color: #EA580C;
  border-radius: 6px;
  padding: 3px 10px;
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 10px;
  border: 1px solid rgba(234,88,12,0.25);
}

.news-card-body h3 {
  font-size: 18px;
  font-weight: 700;
  color: #f1f5f9;
  margin-bottom: 10px;
  line-height: 1.4;
}

.news-card-body p {
  font-size: 14px;
  color: #64748b;
  line-height: 1.6;
  flex: 1;
  margin-bottom: 16px;
}

.news-meta {
  font-size: 12px;
  color: #475569;
  margin-bottom: 14px;
}

.btn-news {
  color: #EA580C;
  font-weight: 600;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.2s;
}

.btn-news:hover {
  gap: 10px;
  color: #c2410c;
}

.legal-section {
  padding: 64px 0 80px;
  background: #1a1a2e;
}

.legal-section h1 {
  font-size: 36px;
  font-weight: 800;
  color: #f1f5f9;
  margin-bottom: 8px;
}

.legal-section .last-updated {
  font-size: 14px;
  color: #475569;
  margin-bottom: 40px;
}

.legal-section h2 {
  font-size: 22px;
  font-weight: 700;
  color: #f1f5f9;
  margin-top: 36px;
  margin-bottom: 12px;
}

.legal-section p, .legal-section li {
  font-size: 15px;
  color: #64748b;
  line-height: 1.75;
}

.legal-section ul {
  padding-left: 20px;
}

.legal-section a {
  color: #EA580C;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #0a0a14;
  color: #94a3b8;
  padding: 16px 24px;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.5);
  border-top: 1px solid #2d2d4a;
}

.cookie-banner p {
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
  flex: 1;
  min-width: 200px;
}

.cookie-banner a {
  color: #EA580C;
  text-decoration: underline;
}

.cookie-banner-btns {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}

.btn-cookie-accept {
  background: #EA580C;
  color: #fff;
  padding: 8px 20px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 13px;
  border: none;
  cursor: pointer;
  transition: background 0.2s;
}

.btn-cookie-accept:hover {
  background: #c2410c;
}

.btn-cookie-decline {
  background: transparent;
  color: #64748b;
  padding: 8px 16px;
  border-radius: 6px;
  font-weight: 500;
  font-size: 13px;
  border: 1px solid #2d2d4a;
  cursor: pointer;
  transition: all 0.2s;
}

.btn-cookie-decline:hover {
  border-color: #64748b;
  color: #94a3b8;
}

@media (max-width: 768px) {
  .hero h1 { font-size: 34px; }
  .hero-sub { font-size: 16px; }
  .section-title { font-size: 28px; }
  .cta-banner h2 { font-size: 28px; }
  .stat-item .stat-num { font-size: 32px; }
  .page-header h1 { font-size: 32px; }
}

/* === Card Uniformity Fix (auto-generated) === */

.capability-card {
  display: flex;
  flex-direction: column;
}

.team-card {
  height: 100%;
  display: flex;
  flex-direction: column;
}

.article-body {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.article-body > a:last-child,
.article-body > p:last-child + a {
  margin-top: auto;
}

.capability-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.news-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.team-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

/* === Read More Pin Fix (auto-generated) === */

.article-body > p {
  flex: 1;
}

.article-body > a:last-child,
.article-body > a:last-of-type {
  margin-top: auto;
  padding-top: 12px;
}

.read-more,
a[class*="read-more"],
a[class*="readmore"] {
  margin-top: auto;
  padding-top: 12px;
}

/* === Last-Child Pin Fix (auto-generated) === */

.article-body > :last-child {
  margin-top: auto;
}

.contact-card > :last-child {
  margin-top: auto;
}

.team-card > :last-child {
  margin-top: auto;
}

a.read-more,
[class*="read-more"],
[class*="blog-read-more"] {
  margin-top: auto;
}

/* Card title link styling */
.blog-card h3 a, .blog-card h4 a, .blog-card h5 a,
.news-card h3 a, .news-card h4 a, .news-card h5 a,
.insight-card h3 a, .insight-card h4 a, .insight-card h5 a,
[class*="-card"] h3 a, [class*="-card"] h4 a, [class*="-card"] h5 a {
  color: inherit;
  text-decoration: none;
}
[class*="-card"] h3 a:hover, [class*="-card"] h4 a:hover, [class*="-card"] h5 a:hover {
  text-decoration: underline;
}

/* Universal card equal height */
[class$="-card"], [class*="-card "] {
  height: 100%;
  display: flex;
  flex-direction: column;
}
