:root {
  --db-bg: #FEFEFF;
  --db-bg-alt: #F2F8FC;
  --db-panel: #FFFFFF;
  --db-panel-2: #E8F2F9;
  --db-border: #C5DCEA;
  --db-text: #123047;
  --db-muted: #58728A;
  --db-primary: #0B74BA;
  --db-primary-dark: #085A90;
  --db-accent: #0B74BA;
  --db-success: #10b981;
  --db-warning: #f59e0b;
  --db-danger: #ef4444;
  --db-gradient: linear-gradient(135deg, #0B74BA 0%, #0B74BA 100%);
  --db-gradient-soft: linear-gradient(135deg, rgba(11, 116, 186, 0.12) 0%, rgba(11, 116, 186, 0.04) 100%);
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.4);
  --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.35);
  --shadow-lg: 0 20px 50px rgba(0, 0, 0, 0.5);
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 18px;
  --max-width: 1200px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html, body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background: var(--db-bg);
  color: var(--db-text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  scroll-behavior: smooth;
}

a { color: var(--db-primary); text-decoration: none; transition: color 0.15s ease; }
a:hover { color: var(--db-primary-dark); }

img { max-width: 100%; display: block; }
svg {
  width: 1.25rem;
  height: 1.25rem;
  max-width: 100%;
  max-height: 100%;
  display: block;
}
button { cursor: pointer; font-family: inherit; }

.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 clamp(1rem, 3vw, 1.5rem);
}

/* ============ HEADER / NAV ============ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  margin-bottom: -76px;
  background: #c0c0c0;
  backdrop-filter: blur(14px) saturate(135%);
  -webkit-backdrop-filter: blur(14px) saturate(135%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 8px 30px rgba(4, 18, 30, 0.12);
  transition: all 0.25s ease;
}
.site-header:hover {
  background: #c0c0c0;
}
.admin-header {
  margin-bottom: 0;
  background: rgba(254, 254, 255, 0.96);
  border-bottom-color: var(--db-border);
  box-shadow: var(--shadow-sm);
}
.admin-header:hover { background: rgba(254, 254, 255, 1); }
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}
.brand {
  display: flex;
  align-items: center;
  margin-left: -16px;
  gap: 0.6rem;
  font-weight: 800;
  letter-spacing: -0.01em;
  font-size: 1.15rem;
  color: var(--db-text);
  transition: transform 0.2s ease;
}
.brand:hover { transform: translateY(-1px); }
.brand-logo {
  display: block;
  width: clamp(145px, 15vw, 184px);
  height: auto;
  max-height: 54px;
  object-fit: contain;
}
.brand-mark {
  width: 40px; height: 40px;
  border-radius: 11px;
  background: var(--db-gradient);
  display: grid; place-items: center;
  color: #0a0e1a;
  font-weight: 900;
  font-size: 1.15rem;
  box-shadow: 0 0 24px rgba(34, 211, 238, 0.4),
              inset 0 0 14px rgba(255, 255, 255, 0.15);
  position: relative;
  overflow: hidden;
}
.brand-mark::after {
  content: '';
  position: absolute;
  top: -50%; left: -50%;
  width: 200%; height: 200%;
  background: linear-gradient(45deg, transparent 30%, rgba(255,255,255,0.25) 50%, transparent 70%);
  transform: translateX(-100%);
  transition: transform 0.6s ease;
}
.brand:hover .brand-mark::after { transform: translateX(100%); }

.footer-brand .brand-logo { width: 220px; }

@media (max-width: 600px) {
  .brand-logo { width: 150px; }
  .footer-brand .brand-logo { width: 190px; }
}

.nav-links {
  display: flex;
  align-items: center;
  margin-right: -36px;
  gap: 0;
  list-style: none;
}
.nav-links > .nav-item > a {
  animation: navItemIn 0.45s cubic-bezier(.22,.8,.28,1) both;
}
.nav-links > .nav-item:nth-child(1) > a { animation-delay: 0.28s; }
.nav-links > .nav-item:nth-child(2) > a { animation-delay: 0.23s; }
.nav-links > .nav-item:nth-child(3) > a { animation-delay: 0.18s; }
.nav-links > .nav-item:nth-child(4) > a { animation-delay: 0.13s; }
.nav-links > .nav-item:nth-child(5) > a { animation-delay: 0.08s; }
.nav-links > .nav-item:nth-child(6) > a { animation-delay: 0.03s; }
.nav-links > .nav-item:nth-child(7) > a { animation-delay: 0s; }
.nav-links > .nav-item:nth-child(8) > a { animation-delay: 0s; }
@keyframes navItemIn {
  from {
    opacity: 0;
    transform: translateX(34px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
.nav-item {
  position: relative;
  padding-bottom: 22px;
  margin-bottom: -22px;
}
.nav-item.has-mega::after {
  content: '';
  position: fixed;
  inset: 76px 0 auto;
  height: 10px;
  background: transparent;
  z-index: 98;
}
.nav-item > a, .nav-cta-wrap > a {
  color: #17324d;
  font-weight: 600;
  font-size: 0.9rem;
  position: relative;
  padding: 0.6rem 0.9rem;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  transition: all 0.2s ease;
  white-space: nowrap;
}
.nav-item > a .caret {
  font-size: 0.62rem;
  opacity: 0.6;
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.nav-item > a:hover, .nav-item:hover > a, .nav-item > a.active {
  color: #075985;
  background: rgba(255, 255, 255, 0.12);
}
.nav-item:hover > a .caret {
  transform: rotate(180deg);
  opacity: 1;
  color: var(--db-primary);
}
.nav-item > a.active {
  color: #075985;
}
.nav-item > a.active::after {
  content: '';
  position: absolute;
  bottom: 2px; left: 0.9rem; right: 0.9rem;
  height: 2px;
  background: var(--db-gradient);
  border-radius: 2px;
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  padding: 0.65rem 1.25rem;
  border-radius: 999px;
  background: var(--db-gradient);
  color: #0a0e1a !important;
  font-weight: 700;
  font-size: 0.88rem;
  transition: transform 0.18s ease, box-shadow 0.18s ease, filter 0.18s ease;
  margin-left: 0.5rem;
  position: relative;
  overflow: hidden;
}
.nav-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  transform: translateX(-100%);
  transition: transform 0.5s ease;
}
.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(34, 211, 238, 0.45);
  filter: brightness(1.05);
}
.nav-cta:hover::before { transform: translateX(100%); }

/* ============ MEGA DROPDOWN ============ */
.mega-dropdown {
  position: fixed;
  top: 76px;
  left: 0;
  right: 0;
  width: 100%;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: max-height 0.35s cubic-bezier(.4,0,.2,1),
              opacity 0.2s ease 0s,
              visibility 0s linear 0.25s,
              transform 0.25s cubic-bezier(.4,0,.2,1);
  z-index: 99;
  pointer-events: none;
  padding-top: 6px;
}
.nav-item:hover > .mega-dropdown,
.nav-item:focus-within > .mega-dropdown {
  max-height: calc(100vh - 76px);
  overflow-y: auto;
  overflow-x: hidden;
  scrollbar-gutter: stable;
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
  transition: max-height 0.35s cubic-bezier(.4,0,.2,1),
              opacity 0.18s ease 0s,
              visibility 0s linear 0s,
              transform 0.2s cubic-bezier(.4,0,.2,1);
}

.mega-dropdown::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(254, 254, 255, 0.99) 0%, rgba(242, 248, 252, 0.995) 100%);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-top: 1px solid var(--db-border);
  border-bottom: 1px solid var(--db-border);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
  z-index: -1;
}

.mega-grid {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 2.25rem 1.5rem 2.5rem;
  display: grid;
  gap: 2rem;
  position: relative;
}
.mega-3col { grid-template-columns: repeat(3, 1fr); }
.mega-4col { grid-template-columns: repeat(4, 1fr); }
.mega-services .mega-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: start;
}
.mega-services .mega-col:nth-child(3) .mega-links {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  column-gap: 1rem;
  row-gap: 0.15rem;
  align-items: start;
}
.mega-services .mega-col:nth-child(3) {
  grid-column: 1 / -1;
}
.mega-services .mega-col:nth-child(3) .mega-links a {
  min-height: 3.1rem;
}
.mega-services .mega-highlight {
  grid-column: 3 / -1;
  grid-row: 1;
}

.mega-heading {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  color: var(--db-primary);
  margin-bottom: 1.1rem;
  padding-bottom: 0.7rem;
  border-bottom: 1px solid rgba(34, 211, 238, 0.15);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.mega-heading::before {
  content: '';
  width: 3px; height: 14px;
  background: var(--db-gradient);
  border-radius: 2px;
}

.mega-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}
.mega-links li {
  position: relative;
}
.mega-links a {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  padding: 0.6rem 0.8rem;
  border-radius: 10px;
  color: var(--db-text);
  font-weight: 500;
  font-size: 0.92rem;
  transition: all 0.18s ease;
  position: relative;
}
.mega-links a::before {
  content: '';
  position: absolute;
  left: 0; top: 50%;
  width: 0;
  height: 0;
  border-radius: 10px;
  background: var(--db-gradient-soft);
  opacity: 0;
  transition: all 0.2s ease;
  transform: translateY(-50%);
}
.mega-links a:hover {
  background: rgba(255, 255, 255, 0.04);
  transform: translateX(4px);
  color: var(--db-text);
}
.mega-links a:hover::before {
  opacity: 1;
  width: 3px;
  height: 60%;
}
.mega-links .mi {
  font-size: 1.1rem;
  flex-shrink: 0;
  width: 28px;
  display: inline-flex;
  justify-content: center;
  margin-top: 1px;
  transition: transform 0.2s ease;
}
.mega-links a:hover .mi {
  transform: scale(1.1);
}
.mega-links .mega-desc {
  font-size: 0.78rem;
  font-weight: 400;
  color: var(--db-muted);
  margin-top: 0.15rem;
  line-height: 1.4;
  display: none;
}

.mega-col {
  display: flex;
  flex-direction: column;
  animation: megaColIn 0.35s cubic-bezier(.4,0,.2,1) backwards;
}
.nav-item:hover .mega-col { animation-delay: 0.02s; }
.nav-item:hover .mega-col:nth-child(2) { animation-delay: 0.05s; }
.nav-item:hover .mega-col:nth-child(3) { animation-delay: 0.08s; }
.nav-item:hover .mega-col:nth-child(4) { animation-delay: 0.11s; }

@keyframes megaColIn {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}

.mega-col.mega-highlight .mega-card {
  background: linear-gradient(145deg, rgba(34, 211, 238, 0.08), rgba(99, 102, 241, 0.1));
  border: 1px solid rgba(34, 211, 238, 0.2);
  border-radius: 16px;
  padding: 1.5rem;
  height: 100%;
  position: relative;
  overflow: hidden;
  transition: all 0.25s ease;
}
.mega-col.mega-highlight .mega-card::before {
  content: '';
  position: absolute;
  top: -50%; right: -30%;
  width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(34, 211, 238, 0.18), transparent 60%);
  transition: transform 0.4s ease;
}
.mega-col.mega-highlight .mega-card:hover {
  border-color: rgba(34, 211, 238, 0.4);
  transform: translateY(-3px);
  box-shadow: 0 12px 36px rgba(34, 211, 238, 0.15);
}
.mega-col.mega-highlight .mega-card:hover::before {
  transform: scale(1.15);
}
.mega-card-icon {
  width: 52px; height: 52px;
  border-radius: 13px;
  background: var(--db-gradient);
  display: grid; place-items: center;
  font-size: 1.5rem;
  margin-bottom: 1rem;
  box-shadow: 0 8px 20px rgba(34, 211, 238, 0.25);
}
.mega-card h5 {
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-bottom: 0.5rem;
  color: var(--db-text);
}
.mega-card p {
  font-size: 0.86rem;
  color: var(--db-muted);
  line-height: 1.55;
  margin-bottom: 1rem;
}
.mega-card-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.55rem 1rem;
  border-radius: 9px;
  background: #0B74BA;
  color: #ffffff !important;
  font-weight: 600;
  font-size: 0.85rem;
  border: 1px solid #0B74BA;
  transition: all 0.2s ease;
}
.mega-card-btn:hover {
  background: #085A90;
  color: #ffffff !important;
  border-color: #085A90;
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(34, 211, 238, 0.3);
}

.nav-toggle { display: none; }

@media (max-width: 1200px) {
  .nav-item > a { padding: 0.55rem 0.5rem; font-size: 0.82rem; }
}

@media (max-width: 1060px) {
  .nav-links { display: none; position: absolute; top: 76px; left: 0; right: 0;
    flex-direction: column; background: var(--db-bg-alt); padding: 1.25rem 0;
    border-bottom: 1px solid var(--db-border); gap: 0.5rem; align-items: flex-start;
    max-height: calc(100vh - 76px); overflow-y: auto; scrollbar-width: none; }
  .nav-links::-webkit-scrollbar { display: none; }
  .brand { margin-left: 0; }
  .nav-links { margin-right: 0; }
  .nav-links.open { display: flex; }
  .nav-item { width: 100%; }
  .nav-item.has-mega::after { display: none; }
  .nav-links > .nav-item > a { animation: none; }
  .nav-item > a { width: 100%; justify-content: space-between; padding: 0.75rem 1rem; }
  .nav-item > a, .nav-item > a.active { color: #17324d; }
  .nav-item > a:hover, .nav-item:hover > a { color: #075985; background: rgba(11, 116, 186, 0.08); }
  .mega-dropdown { position: static; display: none; opacity: 1; visibility: visible;
    transform: none; max-height: none; width: 100%; overflow: visible; }
  .nav-item:hover > .mega-dropdown,
  .nav-item:focus-within > .mega-dropdown { max-height: none; }
  .mega-dropdown::before { display: none; }
  .mega-grid { padding: 1rem 0.75rem 0; grid-template-columns: 1fr; gap: 1.25rem; }
  .mega-3col, .mega-4col { grid-template-columns: 1fr; }
  .mega-services .mega-grid { grid-template-columns: 1fr; }
  .mega-services .mega-col:nth-child(3) .mega-links { grid-template-columns: 1fr; }
  .mega-services .mega-highlight { grid-column: auto; grid-row: auto; }
  .nav-item.active > .mega-dropdown { display: block; }
  .nav-toggle { display: inline-flex; background: none; border: 1px solid var(--db-border);
    color: var(--db-text); padding: 0.5rem 0.8rem; border-radius: 9px; font-size: 1.1rem; }
}

@media (prefers-reduced-motion: reduce) {
  .nav-links > .nav-item > a { animation: none; }
}

/* SVG icon helpers — responsive with clamp() */
.ki, .mi {
  width: clamp(16px, 2vw, 20px);
  height: clamp(16px, 2vw, 20px);
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--db-primary);
}
.ki svg, .mi svg {
  width: 100%;
  height: 100%;
  display: block;
}
.mi {
  width: clamp(22px, 3vw, 28px);
  height: clamp(18px, 2.5vw, 22px);
  margin-top: 0;
}
.mi svg {
  width: clamp(18px, 2.5vw, 22px);
  height: clamp(18px, 2.5vw, 22px);
}
.card-icon {
  width: clamp(44px, 6vw, 56px);
  height: clamp(44px, 6vw, 56px);
  border-radius: clamp(10px, 1.5vw, 14px);
  background: var(--db-gradient-soft);
  border: 1px solid rgba(34, 211, 238, 0.25);
  display: grid;
  place-items: center;
  margin-bottom: 1rem;
  color: var(--db-primary);
  transition: all 0.25s ease;
  position: relative;
  overflow: hidden;
}
.card-icon::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(34, 211, 238, 0.25), transparent 60%);
  opacity: 0;
  transition: opacity 0.25s ease;
}
.card:hover .card-icon {
  transform: translateY(-2px) scale(1.02);
  border-color: rgba(34, 211, 238, 0.5);
  box-shadow: 0 12px 28px rgba(34, 211, 238, 0.18);
}
.card:hover .card-icon::after { opacity: 1; }
.card-icon svg {
  width: clamp(22px, 3.5vw, 30px);
  height: clamp(22px, 3.5vw, 30px);
  position: relative;
  z-index: 2;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hero-shield {
  width: clamp(80px, 14vw, 140px);
  height: clamp(80px, 14vw, 140px);
  color: var(--db-primary);
  filter: drop-shadow(0 12px 30px rgba(34, 211, 238, 0.35));
  animation: shieldPulse 3.2s ease-in-out infinite;
}
.hero-shield svg { width: 100%; height: 100%; display: block; }
@keyframes shieldPulse {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-6px) scale(1.04); }
}
.contact-card-icon {
  width: clamp(40px, 5.5vw, 52px);
  height: clamp(40px, 5.5vw, 52px);
  border-radius: clamp(10px, 1.4vw, 14px);
  background: var(--db-gradient-soft);
  border: 1px solid rgba(34, 211, 238, 0.25);
  display: grid;
  place-items: center;
  color: var(--db-primary);
  flex-shrink: 0;
}
.contact-card-icon svg {
  width: clamp(20px, 2.8vw, 26px);
  height: clamp(20px, 2.8vw, 26px);
  display: block;
}
.pill-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: clamp(14px, 2vw, 18px);
  height: clamp(14px, 2vw, 18px);
}
.pill-icon svg { width: 100%; height: 100%; display: block; }
.mi svg,
.pill-icon svg,
.card-icon > span > svg,
.mega-card-icon > span > svg {
  max-width: 100%;
  max-height: 100%;
  min-width: 0;
  min-height: 0;
}

.mega-card-icon {
  width: clamp(44px, 6vw, 56px);
  height: clamp(44px, 6vw, 56px);
  border-radius: clamp(10px, 1.5vw, 14px);
  background: var(--db-gradient);
  display: grid; place-items: center;
  margin-bottom: 1rem;
  box-shadow: 0 8px 20px rgba(34, 211, 238, 0.25);
  color: #0a0e1a;
  flex-shrink: 0;
}
.mega-card-icon svg {
  width: clamp(22px, 3vw, 28px);
  height: clamp(22px, 3vw, 28px);
  display: block;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* ============ HERO ============ */
.hero {
  position: relative;
  isolation: isolate;
  background: #071426 url('../img/Home page.png') center / cover no-repeat;
  padding: clamp(3rem, 8vw, 7rem) 0 clamp(2.5rem, 7vw, 6rem);
  overflow: hidden;
  min-height: clamp(520px, 85vw, 720px);
  display: flex;
  align-items: center;
}

.hero-tiny {
  display: inline-flex;
  width: clamp(14px, 1.8vw, 18px);
  height: clamp(14px, 1.8vw, 18px);
  vertical-align: middle;
  margin-right: 0.25rem;
  align-items: center;
  justify-content: center;
}
.hero-tiny svg { width: 100%; height: 100%; display: block; }
.hero-visual-shield {
  width: clamp(100px, 18vw, 200px);
  height: clamp(100px, 18vw, 200px);
  margin: 0 auto;
  display: grid;
  place-items: center;
  animation: shieldPulse 3.2s ease-in-out infinite;
}
.hero-visual-shield svg { width: 100%; height: 100%; display: block; }
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('../img/Home page.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: -3;
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,
    rgba(10, 14, 26, 0.88) 0%,
    rgba(10, 14, 26, 0.78) 40%,
    rgba(10, 14, 26, 0.92) 100%);
  backdrop-filter: blur(1px);
}
.hero::before {
  content: '';
  position: absolute;
  top: -30%; right: -5%;
  width: 780px; height: 780px;
  background: radial-gradient(ellipse, rgba(34, 211, 238, 0.22), transparent 60%);
  pointer-events: none;
  z-index: -2;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -25%; left: -5%;
  width: 680px; height: 680px;
  background: radial-gradient(ellipse, rgba(99, 102, 241, 0.22), transparent 60%);
  pointer-events: none;
  z-index: -1;
}
.hero-grid::before {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: calc(var(--radius-lg) + 2px);
  background: conic-gradient(from 0deg, transparent 0deg, rgba(34, 211, 238, 0.15) 60deg, transparent 120deg, rgba(99, 102, 241, 0.15) 240deg, transparent 300deg);
  z-index: -1;
  opacity: 0.5;
  animation: heroRotate 12s linear infinite;
}
@keyframes heroRotate {
  to { transform: rotate(360deg); }
}
.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 4rem;
  align-items: center;
}
@media (max-width: 960px) {
  .hero { padding: 3.5rem 0 3rem; }
  .hero-grid { grid-template-columns: 1fr; gap: 2.5rem; }
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
  background: var(--db-gradient-soft);
  border: 1px solid rgba(34, 211, 238, 0.25);
  color: var(--db-primary);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}
.eyebrow .dot {
  width: 8px; height: 8px;
  background: var(--db-success);
  border-radius: 50%;
  box-shadow: 0 0 12px var(--db-success);
}
.hero-location {
  gap: 0.65rem;
  padding: 0.5rem 0.95rem 0.5rem 0.65rem;
  background: rgba(7, 25, 40, 0.72);
  border-color: rgba(139, 220, 255, 0.42);
  color: #bcecff;
  box-shadow: 0 8px 22px rgba(4, 18, 30, 0.18), inset 0 1px 0 rgba(255, 255, 255, 0.08);
}
.location-pin {
  position: relative;
  width: 1.15rem;
  height: 1.15rem;
  flex-shrink: 0;
  fill: rgba(11, 116, 186, 0.28);
  stroke: #8bdcff;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.5;
  filter: drop-shadow(0 0 7px rgba(139, 220, 255, 0.25));
}
.location-pin::after {
  display: none;
}
.location-pin circle {
  fill: var(--db-success);
  stroke: none;
  filter: drop-shadow(0 0 3px var(--db-success));
}
.hero-location > span:last-child {
  line-height: 1;
}
.hero h1 {
  font-size: clamp(2.25rem, 5vw, 3.75rem);
  line-height: 1.08;
  font-weight: 800;
  letter-spacing: -0.025em;
  color: #ffffff;
  margin-bottom: 1.5rem;
}
.hero h1 .grad {
  background: linear-gradient(135deg, #8bdcff 0%, #d8f3ff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero p.lead {
  font-size: 1.15rem;
  color: #d8eaf5;
  max-width: 580px;
  margin-bottom: 2rem;
}
.hero-cta { display: flex; gap: 0.85rem; flex-wrap: wrap; }
.hero-cta .btn-secondary {
  color: #f2f9fd;
  border-color: rgba(242, 249, 253, 0.8);
}
.hero-cta .btn-secondary:hover {
  color: #ffffff;
  border-color: #ffffff;
  background: rgba(255, 255, 255, 0.12);
}
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 0.85rem 1.5rem;
  border-radius: 10px;
  font-weight: 600;
  font-size: 0.95rem;
  border: 1px solid transparent;
  transition: all 0.15s ease;
  gap: 0.5rem;
}
.btn-primary {
  background: var(--db-gradient);
  color: #ffffff;
  box-shadow: 0 8px 24px rgba(34, 211, 238, 0.25);
}
.btn-primary:hover { transform: translateY(-1px); color: #ffffff; box-shadow: 0 12px 32px rgba(34, 211, 238, 0.4); }
.btn-secondary {
  background: transparent;
  color: var(--db-text);
  border-color: var(--db-border);
}
.btn-secondary:hover { border-color: var(--db-primary); color: var(--db-primary); }
.btn-danger {
  background: rgba(239, 68, 68, 0.12);
  color: var(--db-danger);
  border-color: rgba(239, 68, 68, 0.35);
}
.btn-danger:hover { background: var(--db-danger); color: #fff; }
.btn-sm { padding: 0.5rem 0.9rem; font-size: 0.85rem; border-radius: 8px; }
.btn-block { width: 100%; }

.hero-visual {
  position: relative;
  justify-self: end;
  width: 100%;
  max-width: 620px;
  aspect-ratio: 4 / 3;
  border-radius: var(--radius-lg);
  background: #0b1b31;
  border: 1px solid var(--db-border);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.hero-visual.slideshow {
  aspect-ratio: 1 / 1 !important;
  height: auto;
  min-height: 0;
}
@media (min-width: 961px) {
  .hero-visual.slideshow { transform: translateY(-3rem); }
}
.slideshow .slides,
.slideshow .slide {
  position: absolute;
  inset: 0;
}
.slideshow .slide {
  margin: 0;
  opacity: 0;
  transition: opacity 0.7s ease;
  pointer-events: none;
}
.slideshow .slide.is-active {
  opacity: 1;
  pointer-events: auto;
}
.slideshow .slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #0b1b31;
}
.slideshow::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 65%, rgba(5, 15, 30, 0.62));
  pointer-events: none;
}
.slideshow-dot {
  position: absolute;
  z-index: 2;
  border: 1px solid rgba(255, 255, 255, 0.65);
  color: #fff;
  background: rgba(6, 20, 38, 0.68);
  cursor: pointer;
}
.slideshow-dot:hover,
.slideshow-dot:focus-visible { background: var(--db-primary); color: #061426; }
.slideshow-dots {
  position: absolute;
  z-index: 2;
  bottom: 1rem;
  left: 50%;
  display: flex;
  gap: 0.5rem;
  transform: translateX(-50%);
}
.slideshow-dot {
  position: static;
  width: 0.65rem;
  height: 0.65rem;
  padding: 0;
  border-radius: 50%;
}
.slideshow-dot.is-active { background: var(--db-primary); }
@media (prefers-reduced-motion: reduce) {
  .slideshow .slide { transition: none; }
}
.hero-visual .grid-bg {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(139, 220, 255, 0.14) 1px, transparent 1px),
    linear-gradient(90deg, rgba(139, 220, 255, 0.14) 1px, transparent 1px);
  background-size: 32px 32px;
}
.hero-visual .shield {
  position: absolute;
  inset: 0;
  display: grid; place-items: center;
  font-size: 9rem;
  color: transparent;
  background: var(--db-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  filter: drop-shadow(0 0 40px rgba(34, 211, 238, 0.4));
}
.hero-visual .threats {
  position: absolute; inset: 0;
  padding: clamp(1rem, 2.5vw, 2rem);
  font-size: clamp(0.55rem, 1.2vw, 0.82rem);
  color: var(--db-muted);
  font-family: 'JetBrains Mono', 'Courier New', monospace;
}
.hero-visual .threats span { position: absolute; display: inline-flex; align-items: center; gap: clamp(0.15rem, 0.6vw, 0.4rem); padding: clamp(0.2rem, 0.5vw, 0.35rem) clamp(0.4rem, 0.9vw, 0.6rem);
  background: rgba(6, 20, 38, 0.88); border: 1px solid rgba(139, 220, 255, 0.35); border-radius: clamp(4px, 0.8vw, 6px); }
.hero-visual .threats .blocked { color: var(--db-danger); }
.hero-visual .threats .ok { color: var(--db-success); }

/* ============ SECTION ============ */
section { padding: clamp(3rem, 7vw, 5rem) 0; position: relative; }
section.bg-alt { background: var(--db-bg-alt); }
.section-head { text-align: center; margin-bottom: 3rem; }
.section-head .eyebrow { margin-bottom: 0.85rem; }
.section-head h2 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-bottom: 0.85rem;
}
.section-head h2 .grad {
  background: var(--db-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.section-head p.sub {
  color: var(--db-muted);
  font-size: 1.05rem;
  max-width: 640px;
  margin: 0 auto;
}

/* ============ GRIDS / CARDS ============ */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}
@media (max-width: 960px) {
  .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .container { padding-left: 0.75rem; padding-right: 0.75rem; }
  .hero-grid,
  .service-hero .container,
  .breadcrumbs,
  .service-content { padding-left: 1rem; padding-right: 1rem; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .service-main ul li { padding-left: 0; }
}

.card {
  background: var(--db-panel);
  border: 1px solid var(--db-border);
  border-radius: clamp(10px, 1.5vw, var(--radius-md));
  padding: clamp(1.25rem, 2.5vw, 1.75rem);
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
  position: relative;
  overflow: hidden;
}
.card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; height: 2px;
  background: var(--db-gradient);
  opacity: 0;
  transition: opacity 0.2s ease;
}
.card:hover {
  transform: translateY(-3px);
  border-color: rgba(34, 211, 238, 0.35);
  box-shadow: var(--shadow-md);
}
.card:hover::before { opacity: 1; }
.card-icon {
  width: clamp(44px, 6vw, 56px);
  height: clamp(44px, 6vw, 56px);
  display: grid; place-items: center;
  border-radius: clamp(10px, 1.4vw, 14px);
  background: var(--db-gradient-soft);
  color: var(--db-primary);
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  margin-bottom: 1rem;
  border: 1px solid rgba(34, 211, 238, 0.2);
  flex-shrink: 0;
}
.card-icon svg {
  width: clamp(22px, 3.5vw, 30px);
  height: clamp(22px, 3.5vw, 30px);
  display: block;
}
.card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-bottom: 0.65rem;
}
.card p {
  color: var(--db-muted);
  font-size: 0.93rem;
  margin-bottom: 1rem;
}
.card ul { list-style: none; }
.card ul li {
  position: relative;
  padding-left: 1.25rem;
  padding-top: 0.3rem;
  color: var(--db-muted);
  font-size: 0.9rem;
}
.card ul li::before {
  content: '✓';
  position: absolute; left: 0; top: 0.35rem;
  color: var(--db-success);
  font-weight: 700;
  font-size: 0.8rem;
}
.card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--db-primary);
  margin-top: 0.5rem;
}
.card-link:hover { gap: 0.65rem; }

/* ============ STATS ============ */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  padding: 2.5rem;
  border-radius: var(--radius-lg);
  background: var(--db-panel);
  border: 1px solid var(--db-border);
}
@media (max-width: 780px) { .stats { grid-template-columns: repeat(2, 1fr); padding: 1.75rem; } }
.stat { text-align: center; }
.stat .num {
  font-size: 2.5rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  background: var(--db-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.stat .lbl { color: var(--db-muted); font-size: 0.88rem; margin-top: 0.25rem; }

/* ============ TESTIMONIAL / QUOTE ============ */
.quote-wrap {
  padding: 3rem;
  border-radius: var(--radius-lg);
  background: var(--db-gradient-soft);
  border: 1px solid rgba(34, 211, 238, 0.2);
  position: relative;
}
.quote-wrap .q {
  position: absolute; top: 1rem; left: 1.5rem;
  font-size: 5rem;
  line-height: 1;
  color: var(--db-primary);
  opacity: 0.3;
  font-family: Georgia, serif;
}
.quote-wrap blockquote {
  position: relative;
  font-size: 1.4rem;
  font-weight: 600;
  line-height: 1.4;
  max-width: 900px;
  margin: 0 auto 1rem;
  color: var(--db-text);
  text-align: center;
}
.quote-wrap .sig { text-align: center; color: var(--db-muted); font-size: 0.9rem; }

/* ============ DIFFERENCE TABLE ============ */
.diff-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  background: var(--db-panel);
  border: 1px solid var(--db-border);
  border-radius: var(--radius-md);
  overflow: hidden;
}
.diff-table th, .diff-table td {
  padding: 1.15rem 1.5rem;
  text-align: left;
  border-bottom: 1px solid var(--db-border);
  vertical-align: top;
}
.diff-table th {
  background: var(--db-panel-2);
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--db-primary);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  width: 50%;
}
.diff-table tr:last-child th, .diff-table tr:last-child td { border-bottom: none; }
.diff-table td { color: var(--db-muted); }
.diff-table td strong { color: var(--db-text); }

@media (max-width: 780px) {
  .diff-table, .diff-table thead, .diff-table tbody, .diff-table tr, .diff-table th, .diff-table td { display: block; width: 100%; }
  .diff-table th { background: var(--db-panel-2); border-bottom: none; }
  .diff-table td { border-bottom: 2px solid var(--db-border); padding-top: 0.5rem; }
  .diff-table tr:last-child td { border-bottom: none; }
}

/* ============ CTA SECTION ============ */
.cta-section {
  padding: 4rem;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, var(--db-panel) 0%, var(--db-panel-2) 100%);
  border: 1px solid var(--db-border);
  position: relative;
  overflow: hidden;
  text-align: center;
}
.cta-section::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(circle at 20% 20%, rgba(34, 211, 238, 0.15), transparent 50%),
              radial-gradient(circle at 80% 80%, rgba(99, 102, 241, 0.15), transparent 50%);
  pointer-events: none;
}
.cta-section > * { position: relative; }
.cta-section h2 {
  font-size: clamp(1.75rem, 4vw, 2.4rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}
.cta-section p { color: var(--db-muted); margin-bottom: 2rem; max-width: 600px; margin-left: auto; margin-right: auto; }
.cta-offer {
  display: inline-block;
  margin: 1.5rem 0 2rem;
  padding: 1rem 1.5rem;
  background: rgba(10, 14, 26, 0.6);
  border: 1px dashed rgba(34, 211, 238, 0.4);
  border-radius: var(--radius-md);
  color: #d9eaf4;
  text-align: left;
  max-width: 560px;
  font-size: 0.95rem;
}
.cta-offer strong { color: #36c7f4; }

/* ============ FORMS ============ */
.form-group { margin-bottom: 1.25rem; }
.form-group label {
  display: block;
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 0.45rem;
  color: var(--db-text);
}
.form-group label .req { color: var(--db-danger); margin-left: 0.15rem; }
.form-group .hint { font-size: 0.78rem; color: var(--db-muted); margin-top: 0.35rem; }
.form-control, select.form-control, textarea.form-control {
  width: 100%;
  padding: 0.78rem 1rem;
  border-radius: 10px;
  background: var(--db-bg);
  border: 1px solid var(--db-border);
  color: var(--db-text);
  font-family: inherit;
  font-size: 0.95rem;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.form-control::placeholder { color: #4e5b80; }
.form-control:focus {
  outline: none;
  border-color: var(--db-primary);
  box-shadow: 0 0 0 3px rgba(34, 211, 238, 0.15);
}
.form-control.error { border-color: var(--db-danger); }
textarea.form-control { min-height: 160px; resize: vertical; }
select.form-control option { background: var(--db-bg-alt); }
.field-error {
  color: var(--db-danger);
  font-size: 0.82rem;
  margin-top: 0.35rem;
}

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
@media (max-width: 640px) { .form-row { grid-template-columns: 1fr; } }

.panel {
  background: var(--db-panel);
  border: 1px solid var(--db-border);
  border-radius: var(--radius-md);
  padding: 2rem;
}

/* ============ FLASH MESSAGES ============ */
.alert {
  padding: 0.9rem 1.15rem;
  border-radius: 10px;
  font-size: 0.9rem;
  margin-bottom: 1.25rem;
  border: 1px solid transparent;
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
}
.alert-success { background: rgba(16, 185, 129, 0.1); border-color: rgba(16, 185, 129, 0.35); color: var(--db-success); }
.alert-error { background: rgba(239, 68, 68, 0.1); border-color: rgba(239, 68, 68, 0.35); color: var(--db-danger); }
.alert-warning { background: rgba(245, 158, 11, 0.1); border-color: rgba(245, 158, 11, 0.35); color: var(--db-warning); }
.alert-info { background: var(--db-gradient-soft); border-color: rgba(34, 211, 238, 0.3); color: var(--db-primary); }

/* ============ BREADCRUMBS ============ */
.breadcrumbs {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: var(--db-muted);
  padding: 1.25rem 0 0;
}
.breadcrumbs a { color: var(--db-muted); }
.breadcrumbs a:hover { color: var(--db-primary); }
.breadcrumbs .sep { opacity: 0.5; }
.breadcrumbs .curr { color: var(--db-text); }

/* ============ SERVICE HERO (INNER PAGES) ============ */
.service-hero {
  padding: 4rem 0 3rem;
  position: relative;
  isolation: isolate;
  overflow: hidden;
}
.service-hero .hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: -3;
}
.service-hero .hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,
    rgba(10, 14, 26, 0.92) 0%,
    rgba(10, 14, 26, 0.82) 45%,
    rgba(10, 14, 26, 0.95) 100%);
  backdrop-filter: blur(1px);
}
.service-hero::before {
  content: '';
  position: absolute;
  top: -40%; right: -10%;
  width: 560px; height: 560px;
  background: radial-gradient(ellipse, rgba(34, 211, 238, 0.18), transparent 60%);
  pointer-events: none;
  z-index: -2;
}
.service-hero::after {
  content: '';
  position: absolute;
  bottom: -50%; left: -8%;
  width: 520px; height: 520px;
  background: radial-gradient(ellipse, rgba(99, 102, 241, 0.18), transparent 60%);
  pointer-events: none;
  z-index: -1;
}
.service-hero .container { position: relative; z-index: 2; }
.service-hero h1 {
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  color: #ffffff;
  margin: 0.75rem 0 1rem;
}
.service-hero .service-tagline {
  font-size: 1.2rem;
  color: #d8eaf5;
  max-width: 720px;
}

/* Per-page IT-themed PNG backgrounds (user-provided, from /img folder) */
.hero-bg-about {
  background-image: url('../img/about us.png');
}
.hero-bg-contact {
  background-image: url('../img/Solutions.png');
}
.hero-bg-services {
  background-image: url('../img/Services.png');
}
.hero-bg-cyber {
  background-image: url('../img/cyber security.png');
}
.hero-bg-bdr {
  background-image: url('../img/Services.png');
}
.hero-bg-network {
  background-image: url('../img/managed it services.png');
}
.hero-bg-consulting {
  background-image: url('../img/products.png');
}
.hero-bg-physical {
  background-image: url('../img/products.png');
}
.hero-bg-print {
  background-image: url('../img/Services.png');
}
.hero-bg-home {
  background-image: url('../img/Home page.png');
  background-size: cover;
  background-color: var(--db-bg);
}
.hero-bg-partners {
  background-image: url('../img/partners.png');
}
.hero-bg-products {
  background-image: url('../img/products.png');
}
.hero-bg-solutions {
  background-image: url('../img/Solutions.png');
}
.service-content {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 3rem;
  padding: 2rem 0 4rem;
}
@media (max-width: 960px) { .service-content { grid-template-columns: 1fr; gap: 2rem; } }
@media (max-width: 640px) {
  .service-content { padding-left: 1rem; padding-right: 1rem; }
}

.service-main h2 {
  font-size: 1.5rem;
  font-weight: 700;
  margin: 2rem 0 0.75rem;
  letter-spacing: -0.01em;
}
.service-main h2:first-child { margin-top: 0; }
.service-main p { color: var(--db-muted); margin-bottom: 1rem; }
.service-main ul { list-style: none; margin: 1rem 0 1.5rem; }
.service-main ul li {
  position: relative;
  padding: 0.5rem 0 0.5rem 1.5rem;
  color: var(--db-text);
  border-bottom: 1px dashed rgba(38, 50, 86, 0.5);
}
.service-main ul li::before {
  content: '';
  position: absolute; left: 0; top: 0.55rem;
  color: var(--db-primary);
  font-weight: 700;
}
.service-main ul li strong { color: var(--db-primary); }

.service-aside { position: sticky; top: 96px; align-self: start; }
.aside-card {
  background: var(--db-panel);
  border: 1px solid var(--db-border);
  border-radius: var(--radius-md);
  padding: 1.75rem;
  margin-bottom: 1.25rem;
}
.aside-card h4 { font-size: 1rem; font-weight: 700; margin-bottom: 1rem; color: var(--db-primary); }
.aside-card ul { list-style: none; }
.aside-card ul li {
  padding: 0.6rem 0;
  border-bottom: 1px solid var(--db-border);
  font-size: 0.9rem;
  color: var(--db-muted);
}
.aside-card ul li:last-child { border-bottom: none; }
.aside-card ul li a { color: var(--db-muted); }
.aside-card ul li a.active { color: var(--db-primary); font-weight: 600; }

/* ============ CONTACT LAYOUT ============ */
.contact-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  padding: 2.5rem 0 4rem;
}
.contact-wrap > .panel {
  min-width: 0;
  color: var(--db-text);
}
.contact-wrap > .panel form {
  display: block;
  position: relative;
  z-index: 1;
  opacity: 1;
  visibility: visible;
}
.contact-wrap > .panel .form-group {
  display: block;
}
.contact-wrap > .panel .form-control {
  display: block;
  min-height: 44px;
}
.contact-wrap > .panel textarea.form-control {
  min-height: 160px;
}
@media (max-width: 960px) { .contact-wrap { grid-template-columns: 1fr; } }
.contact-info-block { margin-bottom: 2rem; }
.contact-info-block h3 { font-size: 1.1rem; margin-bottom: 0.5rem; color: var(--db-primary); }
.contact-info-block p { color: var(--db-muted); }
.contact-info-block a { color: var(--db-text); }
.contact-info-block a:hover { color: var(--db-primary); }

.success-box {
  text-align: center;
  padding: 4rem 2rem;
  max-width: 640px;
  margin: 2rem auto;
}
.success-icon {
  width: 88px; height: 88px;
  border-radius: 50%;
  margin: 0 auto 1.5rem;
  background: rgba(16, 185, 129, 0.15);
  color: var(--db-success);
  display: grid; place-items: center;
  font-size: 2.5rem;
  border: 2px solid var(--db-success);
  box-shadow: 0 0 40px rgba(16, 185, 129, 0.3);
}
.success-box h1 {
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 0.75rem;
}
.success-box p { color: var(--db-muted); margin-bottom: 2rem; }

/* ============ LOGIN ============ */
.login-wrap {
  min-height: calc(100vh - 72px - 280px);
  display: grid; place-items: center;
  padding: 4rem 1rem;
}
.login-box {
  width: 100%;
  max-width: 440px;
  background: var(--db-panel);
  border: 1px solid var(--db-border);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-md);
}
.login-box h2 {
  font-size: 1.75rem;
  font-weight: 800;
  margin-bottom: 0.4rem;
  letter-spacing: -0.02em;
}
.login-box .sub { color: var(--db-muted); margin-bottom: 2rem; font-size: 0.93rem; }
.login-default {
  margin-top: 1.25rem;
  padding: 0.9rem;
  font-size: 0.8rem;
  border-radius: 8px;
  background: rgba(34, 211, 238, 0.08);
  border: 1px solid rgba(34, 211, 238, 0.2);
  color: var(--db-muted);
}
.login-default code {
  background: var(--db-bg);
  padding: 0.15rem 0.4rem;
  border-radius: 4px;
  color: var(--db-primary);
  font-family: 'JetBrains Mono', monospace;
}

/* ============ ADMIN LAYOUT ============ */
.admin-wrap {
  min-height: calc(100vh - 72px);
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 0;
}
.admin-sidebar {
  background: var(--db-bg-alt);
  border-right: 1px solid var(--db-border);
  padding: 1.75rem 1rem;
  position: sticky;
  top: 72px;
  height: calc(100vh - 72px);
  overflow-y: auto;
}
.admin-sidebar h5 {
  color: var(--db-muted);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin: 1.25rem 0.5rem 0.5rem;
}
.admin-nav { list-style: none; }
.admin-nav a {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.65rem 0.85rem;
  border-radius: 8px;
  color: var(--db-muted);
  font-size: 0.9rem;
  font-weight: 500;
  margin: 0.15rem 0;
  transition: background 0.1s ease, color 0.1s ease;
}
.admin-nav a:hover { background: var(--db-panel); color: var(--db-text); }
.admin-nav a.active { background: var(--db-gradient-soft); color: var(--db-primary); }
.admin-nav a .badge {
  margin-left: auto;
  background: var(--db-danger);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 0.15rem 0.5rem;
  border-radius: 999px;
}
.admin-main { padding: 2rem; }
@media (max-width: 900px) {
  .hero { padding: calc(3.5rem + 76px) 0 3rem; }
  .hero-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .hero-visual { justify-self: stretch; max-width: none; }
}

.admin-page-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2rem;
}
.admin-page-head h1 {
  font-size: 1.75rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}
.admin-page-head .sub { color: var(--db-muted); font-size: 0.9rem; }

.kpi-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; margin-bottom: 2rem; }
@media (max-width: 900px) { .kpi-grid { grid-template-columns: repeat(2, 1fr); } }
.kpi {
  background: var(--db-panel);
  border: 1px solid var(--db-border);
  border-radius: var(--radius-md);
  padding: 1.25rem;
}
.kpi .label { color: var(--db-muted); font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 0.5rem; }
.kpi .value {
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  background: var(--db-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.kpi .trend { font-size: 0.8rem; color: var(--db-muted); margin-top: 0.3rem; }
.kpi .trend.up { color: var(--db-success); }

.admin-table-wrap {
  background: var(--db-panel);
  border: 1px solid var(--db-border);
  border-radius: var(--radius-md);
  overflow-x: auto;
}
.admin-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}
.admin-table th, .admin-table td { padding: 0.9rem 1.15rem; text-align: left; border-bottom: 1px solid var(--db-border); }
.admin-table th {
  background: var(--db-panel-2);
  font-weight: 700;
  font-size: 0.78rem;
  color: var(--db-primary);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  white-space: nowrap;
}
.admin-table tr:last-child td { border-bottom: none; }
.admin-table tbody tr:hover { background: rgba(255, 255, 255, 0.02); }
.admin-table .name { font-weight: 600; color: var(--db-text); }
.admin-table .muted { color: var(--db-muted); font-size: 0.82rem; }
.status-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.25rem 0.65rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 600;
  border: 1px solid transparent;
  white-space: nowrap;
}
.status-chip::before {
  content: '';
  width: 6px; height: 6px; border-radius: 50%;
}
.status-chip.NEW { background: rgba(34, 211, 238, 0.1); color: var(--db-primary); border-color: rgba(34, 211, 238, 0.3); }
.status-chip.NEW::before { background: var(--db-primary); }
.status-chip.CONTACTED { background: rgba(245, 158, 11, 0.1); color: var(--db-warning); border-color: rgba(245, 158, 11, 0.3); }
.status-chip.CONTACTED::before { background: var(--db-warning); }
.status-chip.QUALIFIED { background: rgba(16, 185, 129, 0.1); color: var(--db-success); border-color: rgba(16, 185, 129, 0.3); }
.status-chip.QUALIFIED::before { background: var(--db-success); }
.status-chip.PROPOSAL_SENT { background: rgba(99, 102, 241, 0.1); color: var(--db-accent); border-color: rgba(99, 102, 241, 0.3); }
.status-chip.PROPOSAL_SENT::before { background: var(--db-accent); }
.status-chip.CLOSED_WON { background: rgba(16, 185, 129, 0.15); color: var(--db-success); border-color: rgba(16, 185, 129, 0.45); }
.status-chip.CLOSED_WON::before { background: var(--db-success); }
.status-chip.CLOSED_LOST { background: rgba(239, 68, 68, 0.1); color: var(--db-danger); border-color: rgba(239, 68, 68, 0.3); }
.status-chip.CLOSED_LOST::before { background: var(--db-danger); }
.status-chip.SPAM { background: #333; color: #999; border-color: #444; }
.status-chip.SPAM::before { background: #888; }

.badge-new {
  display: inline-block;
  padding: 0.1rem 0.45rem;
  font-size: 0.7rem;
  font-weight: 700;
  border-radius: 4px;
  background: var(--db-danger);
  color: #fff;
  margin-left: 0.35rem;
  letter-spacing: 0.04em;
}

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
}
.filter-bar a {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.45rem 0.9rem;
  background: var(--db-panel);
  border: 1px solid var(--db-border);
  border-radius: 8px;
  color: var(--db-muted);
  font-size: 0.85rem;
  font-weight: 500;
  transition: all 0.1s ease;
}
.filter-bar a:hover { color: var(--db-text); border-color: rgba(34, 211, 238, 0.3); }
.filter-bar a.active {
  background: var(--db-gradient-soft);
  border-color: rgba(34, 211, 238, 0.35);
  color: var(--db-primary);
}
.filter-bar a .count {
  background: var(--db-panel-2);
  padding: 0.05rem 0.5rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 700;
}

.detail-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 1.5rem;
}
@media (max-width: 900px) { .detail-grid { grid-template-columns: 1fr; } }
.detail-section-title {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--db-primary);
  margin-bottom: 0.75rem;
}
.meta-list { list-style: none; }
.meta-list li {
  display: grid;
  grid-template-columns: 140px 1fr;
  padding: 0.55rem 0;
  border-bottom: 1px solid var(--db-border);
  font-size: 0.9rem;
  gap: 1rem;
}
.meta-list li:last-child { border-bottom: none; }
.meta-list li .k { color: var(--db-muted); }
.meta-list li .v { color: var(--db-text); word-break: break-word; }

.msg-bubble {
  background: var(--db-bg-alt);
  border: 1px solid var(--db-border);
  border-radius: 12px;
  padding: 1.25rem;
  white-space: pre-wrap;
  word-wrap: break-word;
  color: var(--db-text);
  line-height: 1.7;
  font-size: 0.95rem;
}
.action-buttons { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 1rem; }

/* ============ FOOTER ============ */
.site-footer {
  background: var(--db-bg-alt);
  border-top: 1px solid var(--db-border);
  padding: 3.5rem 0 1.5rem;
  margin-top: 2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.25fr;
  gap: 2.5rem;
  margin-bottom: 2.5rem;
}
@media (max-width: 960px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 640px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-col h4 {
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--db-primary);
  margin-bottom: 1rem;
  font-weight: 700;
}
.footer-col p, .footer-col li { color: var(--db-muted); font-size: 0.9rem; }
.footer-col ul { list-style: none; }
.footer-col ul li { padding: 0.35rem 0; }
.footer-col ul li a { color: var(--db-muted); }
.footer-col ul li a:hover { color: var(--db-primary); }
.footer-brand p { max-width: 360px; margin-top: 0.75rem; line-height: 1.65; }
.footer-bottom {
  padding-top: 1.5rem;
  border-top: 1px solid var(--db-border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.82rem;
  color: var(--db-muted);
}

/* ============ UTILS ============ */
.text-center { text-align: center; }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.w-full { width: 100%; }
.space-y-1 > * + * { margin-top: 0.5rem; }
.space-y-2 > * + * { margin-top: 1rem; }
.space-y-3 > * + * { margin-top: 1.5rem; }
.flex { display: flex; }
.flex-wrap { flex-wrap: wrap; }
.items-center { align-items: center; }
.justify-between { justify-content: space-between; }
.gap-1 { gap: 0.5rem; }
.gap-2 { gap: 1rem; }
.text-grad {
  background: var(--db-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
