:root {
  --accent: #60a5fa;
  --accent-2: #2563eb;
  --dark: #060c1a;
  --light: #eef4ff;
  --white: #ffffff;
  --text: #334155;
  --muted: #64748b;
  --border: rgba(11, 61, 145, 0.12);
  --shadow: 0 18px 45px rgba(15, 23, 42, 0.08);
}
* { box-sizing: border-box; }
body { margin: 0; padding-top: 88px; font-family: "Inter", sans-serif; color: var(--text); background: var(--white); }
h1, h2, h3 { font-family: "Inter", sans-serif; color: var(--dark); }
a { text-decoration: none; }
#navbar { position: fixed; inset: 0 0 auto; z-index: 1000; padding: 18px 0; transition: all 0.25s ease; background: rgba(6, 12, 26, 0.96); box-shadow: 0 8px 28px rgba(0,0,0,.32); backdrop-filter: blur(18px); }
#navbar.scrolled { background: rgba(6, 12, 26, 0.96); padding: 12px 0; }
.navbar-brand { display: flex; align-items: center; gap: 10px; font-family: "Inter", sans-serif; font-weight: 800; color: #fff; }
.navbar-brand span { color: #fff; }
.navbar-brand em { color: var(--accent); font-style: normal; }
.brand-logo { width: auto; height: 34px; max-width: 140px; display: block; object-fit: contain; flex-shrink: 0; }
.navbar-nav .nav-link { color: rgba(255,255,255,0.82) !important; border-radius: 999px; padding: 8px 14px !important; }
.navbar-nav .nav-link.active, .navbar-nav .nav-link:hover { color: #fff !important; background: rgba(255,255,255,0.08); }
.btn-nav, .btn-primary-custom, .btn-outline-custom { display: inline-flex; align-items: center; justify-content: center; border-radius: 999px; padding: 13px 24px; font-weight: 700; }
.btn-nav, .btn-primary-custom { background: linear-gradient(135deg, var(--accent), var(--accent-2)); color: #fff !important; }
.btn-outline-custom { border: 1px solid var(--border); color: var(--dark); background: #fff; }
.section-badge { display: inline-flex; gap: 8px; align-items: center; padding: 7px 14px; border-radius: 999px; background: rgba(0,194,255,0.1); color: var(--accent); font-size: 0.78rem; font-weight: 700; text-transform: uppercase; }
.page-hero { padding: 96px 0 48px; background: radial-gradient(circle at top right, rgba(0,194,255,0.14), transparent 28%), linear-gradient(135deg, #060c1a, #10224f); color: #fff; }
.page-hero h1 { color: #fff; font-size: clamp(2.6rem, 6vw, 4.4rem); margin: 18px 0 12px; }
.page-hero p { max-width: 720px; margin: 0 auto; color: rgba(255,255,255,0.72); line-height: 1.8; }
section { padding: 82px 0; }
#industries { background: var(--light); }
.industry-tabs { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 28px; }
.ind-tab { border: 1px solid var(--border); background: #fff; color: var(--muted); border-radius: 999px; padding: 11px 20px; font-weight: 700; }
.ind-tab.active { background: linear-gradient(135deg, var(--accent), var(--accent-2)); color: #fff; border-color: transparent; }
.ind-content { display: none; }
.ind-content.active { display: block; }
.industry-card, .cta-panel { background: #fff; border: 1px solid var(--border); border-radius: 22px; box-shadow: var(--shadow); }
.industry-card { height: 100%; padding: 28px; }
.industry-card p { color: var(--muted); line-height: 1.8; margin: 0; }
.cta-panel { padding: 32px; display: flex; gap: 24px; justify-content: space-between; align-items: center; flex-wrap: wrap; }
.cta-panel p { color: var(--muted); max-width: 640px; margin: 10px 0 0; }
.cta-actions { display: flex; gap: 12px; flex-wrap: wrap; }
@media (max-width: 767px) {
  body { padding-top: 78px; }
  .cta-actions, .industry-tabs { flex-direction: column; }
  .btn-primary-custom, .btn-outline-custom, .ind-tab { width: 100%; }
}


/* -- NAV DROPDOWN -- */
.nav-dropdown { background: rgba(10,12,45,.97) !important; border: 1px solid rgba(0,194,255,.15) !important; border-radius: 12px !important; padding: 8px !important; min-width: 240px; box-shadow: 0 16px 40px rgba(0,0,0,.4) !important; margin-top: 8px !important; }
.nav-dropdown .dropdown-item { color: rgba(255,255,255,.8) !important; font-size: .88rem; font-weight: 500; padding: 10px 14px !important; border-radius: 8px; transition: background .2s, color .2s; }
.nav-dropdown .dropdown-item:hover, .nav-dropdown .dropdown-item:focus { background: rgba(0,194,255,.12) !important; color: #fff !important; }
.nav-dropdown .dropdown-item.active { background: rgba(0,194,255,.18) !important; color: #fff !important; }
.navbar-nav .dropdown-toggle::after { border-top-color: rgba(255,255,255,.7); vertical-align: .18em; }
