/* ── Reset & Base ─────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --blue-deep:   #1a2fff;
  --blue-mid:    #2563eb;
  --blue-light:  #38bdf8;
  --blue-glow:   #60a5fa;
  --navy-dark:   #040c1e;
  --navy:        #07112a;
  --navy-card:   #0b1835;
  --navy-border: #1a2d5a;
  --text-bright: #f0f6ff;
  --text-main:   #c8d8f0;
  --text-muted:  #6b85b0;
  --white:       #ffffff;
  --gradient:    linear-gradient(135deg, #1a2fff 0%, #38bdf8 100%);
  --gradient-v:  linear-gradient(180deg, #1a2fff 0%, #38bdf8 100%);
  --font:        'Inter', 'Segoe UI', system-ui, sans-serif;
  --transition:  0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --radius:      12px;
  --radius-lg:   20px;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  background: var(--navy-dark);
  color: var(--text-main);
  line-height: 1.6;
}

/* Wrapper that clips horizontal overflow — kept off body so position:fixed works correctly */
.page-wrap {
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; }

/* ── Typography ───────────────────────────────────────────────────────────── */
h1, h2, h3, h4 { color: var(--text-bright); font-weight: 700; line-height: 1.15; }
h1 { font-size: clamp(2.4rem, 5vw, 4.2rem); letter-spacing: -0.02em; }
h2 { font-size: clamp(1.8rem, 3.5vw, 3rem); letter-spacing: -0.01em; }
h3 { font-size: 1.3rem; }
p  { color: var(--text-main); }

.gradient-text {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── Layout ───────────────────────────────────────────────────────────────── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }
.section { padding: 6rem 0; }
.section-sm { padding: 4rem 0; }

/* ── Buttons ──────────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  text-decoration: none;
}

.btn-primary {
  background: var(--gradient);
  color: var(--white);
  box-shadow: 0 4px 24px rgba(37, 99, 235, 0.4);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(37, 99, 235, 0.6);
}

.btn-outline {
  background: transparent;
  color: var(--blue-light);
  border: 1.5px solid var(--blue-mid);
}
.btn-outline:hover {
  background: rgba(37, 99, 235, 0.15);
  border-color: var(--blue-light);
}

.btn-ghost {
  background: rgba(255,255,255,0.06);
  color: var(--text-bright);
  border: 1px solid var(--navy-border);
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.12);
}

.btn-sm { padding: 0.55rem 1.2rem; font-size: 0.85rem; }
.btn-danger { background: #991b1b; color: #fff; }
.btn-danger:hover { background: #7f1d1d; }

/* ── Navbar ───────────────────────────────────────────────────────────────── */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 1.1rem 0;
  transition: background var(--transition), backdrop-filter var(--transition), box-shadow var(--transition);
}

.navbar.scrolled {
  background: rgba(4, 12, 30, 0.92);
  backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 var(--navy-border);
}

.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 4rem;
}

.nav-logo img { height: 38px; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  list-style: none;
}

.nav-links > li { position: relative; }

.nav-links a {
  display: block;
  padding: 0.5rem 1rem;
  color: var(--text-main);
  font-size: 0.9rem;
  font-weight: 500;
  border-radius: 8px;
  transition: color var(--transition), background var(--transition);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--text-bright);
  background: rgba(255,255,255,0.06);
}

/* Dropdown */
.has-dropdown:hover .dropdown { opacity: 1; visibility: visible; transform: translateY(0); }

.dropdown {
  position: absolute;
  top: calc(100% + 0.5rem);
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  min-width: 200px;
  background: var(--navy-card);
  border: 1px solid var(--navy-border);
  border-radius: var(--radius);
  padding: 0.5rem;
  list-style: none;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition);
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}

.dropdown::before {
  content: '';
  position: absolute;
  top: -6px; left: 50%;
  transform: translateX(-50%);
  width: 12px; height: 12px;
  background: var(--navy-card);
  border-left: 1px solid var(--navy-border);
  border-top: 1px solid var(--navy-border);
  transform: translateX(-50%) rotate(45deg);
}

.dropdown li a {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.6rem 1rem;
  border-radius: 8px;
  font-size: 0.88rem;
  color: var(--text-main);
}

.dropdown li a:hover {
  background: rgba(37,99,235,0.15);
  color: var(--blue-light);
}

.nav-cta { margin-left: 1rem; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--text-bright);
  border-radius: 2px;
  transition: var(--transition);
}

/* ── Hero Split (Home) ───────────────────────────────────────────────────── */
.hero-split {
  position: relative;
  display: flex !important;
  flex-direction: row !important;
  min-height: 100vh;
  background: var(--navy-dark);
  overflow: hidden;
}
.hero-split-left {
  flex: 0 0 40% !important;
  max-width: 40% !important;
  display: flex;
  align-items: center;
  padding: 9rem 3rem 6rem 4rem;
  position: relative;
  z-index: 2;
}
.hero-split-right {
  flex: 1 1 60% !important;
  min-width: 0;
}

.hero-left-inner {
  max-width: 100%;
  width: 100%;
}

.hero-label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue-light);
  margin-bottom: 1.5rem;
}

.hero-label::before {
  content: '';
  display: block;
  width: 2rem; height: 2px;
  background: var(--gradient);
}

.hero-left-inner h1 { margin-bottom: 1.5rem; }

.hero-left-inner p {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: 2.5rem;
  line-height: 1.8;
}

.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

.hero-split-right {
  position: relative;
}

/* Soft fade from left panel into the image */
.hero-split-right::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 80px;
  background: linear-gradient(to right, var(--navy-dark), transparent);
  z-index: 2;
  pointer-events: none;
}

.hero-video-frame {
  position: absolute;
  inset: 0;
  background: #020813;
  overflow: hidden;
}

/* Subtle dark overlay top/bottom */
.hero-video-frame::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom,
    rgba(4,12,30,0.35) 0%,
    transparent 25%,
    transparent 75%,
    rgba(4,12,30,0.35) 100%);
  z-index: 1;
  pointer-events: none;
}

.hero-video-frame img,
.hero-video-frame video,
.hero-video-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: none;
  display: block;
}

.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-muted);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  animation: bounce 2s infinite;
}

.hero-scroll svg { width: 20px; height: 20px; }

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}

/* Legacy full-bg hero (kept for other sections) */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

/* ── Stats Bar ────────────────────────────────────────────────────────────── */
.stats-bar {
  background: var(--navy-card);
  border-top: 1px solid var(--navy-border);
  border-bottom: 1px solid var(--navy-border);
  padding: 3rem 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}

.stat-item {}
.stat-number {
  font-size: 2.5rem;
  font-weight: 800;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 0.4rem;
}
.stat-label { font-size: 0.85rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.08em; }

/* ── Cards ────────────────────────────────────────────────────────────────── */
.card {
  background: var(--navy-card);
  border: 1px solid var(--navy-border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
}

.card:hover {
  border-color: rgba(37,99,235,0.4);
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(26, 47, 255, 0.1);
}

.card-icon {
  width: 52px; height: 52px;
  border-radius: 12px;
  background: rgba(37,99,235,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  color: var(--blue-glow);
}

/* ── Grid ─────────────────────────────────────────────────────────────────── */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }

/* ── Section Header ───────────────────────────────────────────────────────── */
.section-header { text-align: center; margin-bottom: 4rem; }

.section-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue-light);
  background: rgba(37,99,235,0.1);
  border: 1px solid rgba(37,99,235,0.3);
  padding: 0.3rem 1rem;
  border-radius: 50px;
  margin-bottom: 1rem;
}

.section-header h2 { margin-bottom: 1rem; }
.section-header p { color: var(--text-muted); max-width: 560px; margin: 0 auto; font-size: 1.05rem; }

/* ── About Section ────────────────────────────────────────────────────────── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.about-visual {
  position: relative;
}

.about-graphic {
  width: 100%;
  aspect-ratio: 1;
  border-radius: var(--radius-lg);
  background: var(--navy-card);
  border: 1px solid var(--navy-border);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.about-graphic svg { width: 60%; height: 60%; opacity: 0.15; color: var(--blue-mid); }

.about-badge {
  position: absolute;
  bottom: -1rem; right: -1rem;
  background: var(--gradient);
  border-radius: var(--radius);
  padding: 1rem 1.5rem;
  color: white;
  font-weight: 700;
  font-size: 0.9rem;
  box-shadow: 0 8px 32px rgba(26, 47, 255, 0.4);
}

/* ── Solutions Teaser ─────────────────────────────────────────────────────── */
.solutions-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
.solutions-grid-6 { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 1024px) { .solutions-grid-6 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px)  { .solutions-grid-6 { grid-template-columns: 1fr; } }

.solution-card {
  background: var(--navy-card);
  border: 1px solid var(--navy-border);
  border-radius: var(--radius-lg);
  padding: 0;
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
  gap: 0;
  overflow: hidden;
}

.solution-card-thumb {
  position: relative;
  width: 100%;
  height: 180px;
  overflow: hidden;
  flex-shrink: 0;
}
.solution-card-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
  display: block;
}
.solution-card:hover .solution-card-thumb img {
  transform: scale(1.05);
}
.solution-card-thumb::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 40%, rgba(7,17,42,0.85) 100%);
}
.solution-card-icon-overlay {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  z-index: 1;
  width: 40px; height: 40px;
  background: rgba(26,47,255,0.85);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  backdrop-filter: blur(4px);
}
.solution-card:hover {
  border-color: rgba(37,99,235,0.5);
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(26, 47, 255, 0.12);
}

.solution-card h3 {
  font-size: 1.15rem; margin: 0;
  padding: 1.25rem 1.5rem 0;
}
.solution-card p {
  font-size: 0.9rem; color: var(--text-muted); flex: 1;
  padding: 0 1.5rem;
}

.solution-card-link {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--blue-light);
  display: flex;
  align-items: center;
  gap: 0.4rem;
  transition: gap var(--transition);
  padding: 0 1.5rem 1.5rem;
}

.solution-card:hover .solution-card-link { gap: 0.7rem; }

/* 5-card grid for solutions section */
.solutions-grid-5 { grid-template-columns: repeat(5, 1fr); }
@media (max-width: 1200px) {
  .solutions-grid-5 { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 800px) {
  .solutions-grid-5 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 500px) {
  .solutions-grid-5 { grid-template-columns: 1fr; }
}

/* ── Key Company Highlights ───────────────────────────────────────────────── */
.highlights-section {
  border-top: 1px solid var(--navy-border);
  border-bottom: 1px solid var(--navy-border);
  background: rgba(7,17,42,0.55);
}
.highlights-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
  margin-top: 1.75rem;
}
.highlight-card {
  background: var(--navy-card);
  border: 1px solid var(--navy-border);
  border-radius: var(--radius-lg);
  padding: 2rem 1.75rem;
  position: relative;
  overflow: hidden;
  transition: border-color 0.25s, transform 0.25s;
}
.highlight-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--blue-mid), var(--blue-light));
}
.highlight-card:hover {
  border-color: rgba(37,99,235,0.4);
  transform: translateY(-3px);
}
.highlight-icon {
  width: 52px; height: 52px;
  background: rgba(26,47,255,0.12);
  border: 1px solid rgba(26,47,255,0.25);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  color: var(--blue-light);
  margin-bottom: 1.25rem;
}
.highlight-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin: 0 0 0.75rem;
  color: var(--text-bright);
}
.highlight-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin: 0;
}
@media (max-width: 900px) {
  .highlights-grid { grid-template-columns: 1fr; gap: 1.25rem; }
}

/* Mobile nav overlay — hidden globally; shown only via @media mobile rules */
.mobile-nav { display: none; }

/* ── Solutions button with inline chevron ─────────────────────────────────── */
.solutions-btn {
  display: flex !important;
  align-items: center;
  gap: 0.35rem;
}
.nav-chevron {
  transition: transform 0.22s ease;
  flex-shrink: 0;
  opacity: 0.7;
}
.has-dropdown:hover .nav-chevron { transform: rotate(180deg); }

/* ── Footer Accordion ─────────────────────────────────────────────────────── */
.footer-acc-btn {
  display: none;
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  color: inherit;
  align-items: center;
  justify-content: space-between;
  text-align: left;
}
.footer-acc-btn h4 { margin-bottom: 0; }
.footer-acc-chevron { color: var(--text-muted); flex-shrink: 0; transition: transform 0.25s ease; }
.footer-accordion.open .footer-acc-chevron { transform: rotate(180deg); }

/* ── Page Hero ────────────────────────────────────────────────────────────── */
.page-hero {
  padding: 10rem 0 5rem;
  text-align: center;
  background: linear-gradient(180deg, rgba(26,47,255,0.06) 0%, transparent 100%);
  border-bottom: 1px solid var(--navy-border);
  position: relative;
  overflow: hidden;
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-size: cover;
  background-position: center;
}

.page-hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(4,12,30,0.75) 0%, rgba(4,12,30,0.92) 100%);
}

.page-hero .container { position: relative; z-index: 1; }

.page-hero h1 { margin-bottom: 1rem; }
.page-hero p { color: var(--text-muted); font-size: 1.1rem; max-width: 600px; margin: 0 auto; }

/* ── Projects ─────────────────────────────────────────────────────────────── */
.project-card {
  background: var(--navy-card);
  border: 1px solid var(--navy-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition);
}

.project-card:hover {
  border-color: rgba(37,99,235,0.4);
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(26, 47, 255, 0.1);
}

.project-image {
  height: 180px;
  background: linear-gradient(135deg, rgba(26,47,255,0.2), rgba(56,189,248,0.1));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy-border);
}

.project-image svg { width: 48px; height: 48px; }
.project-body { padding: 1.5rem; }
.project-meta { display: flex; gap: 0.75rem; margin-bottom: 0.75rem; }

.badge {
  font-size: 0.72rem;
  font-weight: 600;
  padding: 0.2rem 0.7rem;
  border-radius: 50px;
  background: rgba(37,99,235,0.12);
  color: var(--blue-light);
  border: 1px solid rgba(37,99,235,0.25);
  letter-spacing: 0.05em;
}

.badge-year { background: rgba(255,255,255,0.05); color: var(--text-muted); border-color: var(--navy-border); }

.project-body h3 { font-size: 1.05rem; margin-bottom: 0.5rem; }
.project-body p { font-size: 0.88rem; color: var(--text-muted); line-height: 1.6; }

/* ── Partners ─────────────────────────────────────────────────────────────── */
.partner-card {
  background: var(--navy-card);
  border: 1px solid var(--navy-border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.partner-card:hover {
  border-color: rgba(37,99,235,0.4);
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(26,47,255, 0.1);
}

.partner-logo {
  height: 56px;
  display: flex;
  align-items: center;
}

.partner-logo img {
  max-height: 100%;
  max-width: 160px;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: 0.8;
}

.partner-card h3 { font-size: 1.05rem; margin: 0; }
.partner-card p { font-size: 0.88rem; color: var(--text-muted); flex: 1; line-height: 1.6; }

.partner-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--blue-light);
  padding: 0.55rem 1.25rem;
  border: 1.5px solid rgba(37,99,235,0.4);
  border-radius: 50px;
  transition: all var(--transition);
}

.partner-link:hover {
  background: rgba(37,99,235,0.15);
  border-color: var(--blue-light);
}

/* ── Certifications ───────────────────────────────────────────────────────── */
.cert-card {
  background: var(--navy-card);
  border: 1px solid var(--navy-border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: all var(--transition);
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.cert-card:hover {
  border-color: rgba(37,99,235,0.4);
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(26,47,255, 0.08);
}

.cert-icon {
  flex-shrink: 0;
  width: 56px; height: 56px;
  border-radius: 12px;
  background: rgba(37,99,235,0.1);
  border: 1px solid rgba(37,99,235,0.25);
  display: flex; align-items: center; justify-content: center;
  color: var(--blue-light);
}

.cert-body h3 { font-size: 1.05rem; margin-bottom: 0.3rem; }
.cert-issuer { font-size: 0.8rem; color: var(--blue-light); font-weight: 600; margin-bottom: 0.6rem; }
.cert-body p { font-size: 0.88rem; color: var(--text-muted); line-height: 1.6; }

/* ── Contact ──────────────────────────────────────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 4rem;
  align-items: start;
}

.contact-info { display: flex; flex-direction: column; gap: 1.5rem; }

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.5rem;
  background: var(--navy-card);
  border: 1px solid var(--navy-border);
  border-radius: var(--radius);
}

.contact-item-icon {
  flex-shrink: 0;
  width: 44px; height: 44px;
  background: rgba(37,99,235,0.1);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: var(--blue-light);
}

.contact-item-label { font-size: 0.78rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 0.2rem; }
.contact-item-value { color: var(--text-bright); font-weight: 500; }

.contact-form {
  background: var(--navy-card);
  border: 1px solid var(--navy-border);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
}

.form-group { margin-bottom: 1.5rem; }
.form-group label { display: block; font-size: 0.85rem; font-weight: 600; color: var(--text-muted); margin-bottom: 0.5rem; letter-spacing: 0.05em; }

.form-control {
  width: 100%;
  padding: 0.85rem 1.1rem;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--navy-border);
  border-radius: 10px;
  color: var(--text-bright);
  font-size: 0.95rem;
  font-family: var(--font);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}

.form-control:focus {
  border-color: var(--blue-mid);
  box-shadow: 0 0 0 3px rgba(37,99,235,0.15);
}

.form-control::placeholder { color: var(--text-muted); }
textarea.form-control { resize: vertical; min-height: 120px; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

/* ── Solution Page ────────────────────────────────────────────────────────── */
.solution-hero {
  padding: 10rem 0 5rem;
  background: linear-gradient(180deg, rgba(26,47,255,0.06) 0%, transparent 100%);
  border-bottom: 1px solid var(--navy-border);
}

.solution-hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.solution-features {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.solution-feature {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.9rem 1.25rem;
  background: var(--navy-card);
  border: 1px solid var(--navy-border);
  border-radius: 10px;
  font-size: 0.92rem;
  color: var(--text-bright);
  transition: border-color var(--transition);
}

.solution-feature:hover { border-color: rgba(37,99,235,0.4); }

.solution-feature-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--gradient);
  flex-shrink: 0;
}

/* ── Footer ───────────────────────────────────────────────────────────────── */
.footer {
  background: var(--navy-card);
  border-top: 1px solid var(--navy-border);
  padding: 4rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand p { color: var(--text-muted); font-size: 0.9rem; line-height: 1.7; margin-top: 1rem; max-width: 280px; }
.footer-logo { height: 32px; margin-bottom: 1rem; }

.footer-col h4 { font-size: 0.8rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 1.25rem; }
.footer-links { display: flex; flex-direction: column; gap: 0.6rem; list-style: none; }
.footer-links a { font-size: 0.88rem; color: var(--text-muted); transition: color var(--transition); }
.footer-links a:hover { color: var(--blue-light); }

.footer-bottom {
  border-top: 1px solid var(--navy-border);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--text-muted);
  font-size: 0.82rem;
}

/* ── Alert / Flash ────────────────────────────────────────────────────────── */
.flash-messages { position: fixed; top: 5.5rem; right: 1.5rem; z-index: 9999; display: flex; flex-direction: column; gap: 0.5rem; max-width: 340px; }

.flash {
  padding: 0.85rem 1.25rem;
  border-radius: 10px;
  font-size: 0.88rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  animation: slideIn 0.3s ease;
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

.flash-success { background: rgba(16,185,129,0.15); border: 1px solid rgba(16,185,129,0.3); color: #6ee7b7; }
.flash-error   { background: rgba(239,68,68,0.12);  border: 1px solid rgba(239,68,68,0.25);  color: #fca5a5; }

@keyframes slideIn {
  from { opacity: 0; transform: translateX(20px); }
  to   { opacity: 1; transform: translateX(0); }
}

/* ── Admin Layout ─────────────────────────────────────────────────────────── */
.admin-body {
  background: #030810;
  min-height: 100vh;
  display: flex;
}

.admin-sidebar {
  width: 260px;
  flex-shrink: 0;
  background: #07112a;
  border-right: 1px solid #0d1f45;
  padding: 1.5rem 0;
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 0; left: 0; bottom: 0;
  z-index: 100;
  overflow-y: auto;
}

.sidebar-brand {
  padding: 0 1.5rem 1.5rem;
  border-bottom: 1px solid #0d1f45;
  margin-bottom: 1rem;
}

.sidebar-brand img { height: 32px; }
.sidebar-label {
  display: block;
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #3b5a9a;
  margin-top: 0.4rem;
  font-weight: 600;
}

.sidebar-section {
  padding: 0.5rem 1rem 0;
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #3b5a9a;
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.sidebar-nav { list-style: none; padding: 0 0.75rem; }
.sidebar-nav li { margin-bottom: 0.15rem; }

.sidebar-nav a {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.65rem 0.85rem;
  border-radius: 8px;
  font-size: 0.88rem;
  color: #7a99cc;
  transition: all 0.2s;
}

.sidebar-nav a:hover { background: rgba(37,99,235,0.1); color: #a0c4ff; }
.sidebar-nav a.active { background: rgba(37,99,235,0.18); color: #60a5fa; font-weight: 600; }
.sidebar-nav svg { width: 16px; height: 16px; flex-shrink: 0; }

.sidebar-footer {
  margin-top: auto;
  padding: 1rem 0.75rem 0;
  border-top: 1px solid #0d1f45;
}

.admin-main {
  margin-left: 260px;
  flex: 1;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.admin-topbar {
  background: #07112a;
  border-bottom: 1px solid #0d1f45;
  padding: 1rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 0;
  z-index: 50;
}

.admin-topbar h1 { font-size: 1.1rem; font-weight: 700; color: #c8d8f0; }
.admin-topbar-right { display: flex; align-items: center; gap: 1rem; font-size: 0.85rem; color: #3b5a9a; }

.admin-content { padding: 2rem; flex: 1; }

/* ── Admin hamburger (hidden on desktop) ─────────────────────────────────── */
.admin-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  flex-shrink: 0;
}
.admin-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: #7a99cc;
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.2s ease;
}
.admin-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.admin-hamburger.open span:nth-child(2) { opacity: 0; }
.admin-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── Admin sidebar backdrop (mobile) ─────────────────────────────────────── */
.admin-sidebar-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.55);
  z-index: 99;
}
.admin-sidebar-backdrop.admin-sidebar-backdrop-show { display: block; }

/* ── Dashboard grid (2 cols desktop, 1 col mobile) ───────────────────────── */
.admin-dashboard-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

/* ── Admin Cards ──────────────────────────────────────────────────────────── */
.admin-card {
  background: #07112a;
  border: 1px solid #0d1f45;
  border-radius: 12px;
  padding: 1.5rem;
}

.admin-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.5rem;
}

.admin-card-header h2 { font-size: 1rem; color: #c8d8f0; }

.stat-card {
  background: #07112a;
  border: 1px solid #0d1f45;
  border-radius: 12px;
  padding: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.stat-card-icon {
  width: 48px; height: 48px;
  border-radius: 10px;
  background: rgba(37,99,235,0.12);
  display: flex; align-items: center; justify-content: center;
  color: #60a5fa;
}

.stat-card-num { font-size: 1.8rem; font-weight: 800; color: #f0f6ff; line-height: 1; }
.stat-card-lbl { font-size: 0.78rem; color: #3b5a9a; margin-top: 0.2rem; }

/* ── Admin Table ──────────────────────────────────────────────────────────── */
.admin-table { width: 100%; border-collapse: collapse; font-size: 0.88rem; }
.admin-table th {
  text-align: left;
  padding: 0.75rem 1rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #3b5a9a;
  border-bottom: 1px solid #0d1f45;
}
.admin-table td {
  padding: 0.9rem 1rem;
  border-bottom: 1px solid #0d1f45;
  color: #c8d8f0;
  vertical-align: top;
}
.admin-table tr:last-child td { border-bottom: none; }
.admin-table tr:hover td { background: rgba(37,99,235,0.04); }
.admin-table td.muted { color: #3b5a9a; font-size: 0.82rem; }

/* ── Admin table → card layout on mobile ─────────────────────────────────── */
@media (max-width: 700px) {
  .admin-table thead { display: none; }
  .admin-table, .admin-table tbody, .admin-table tr, .admin-table td {
    display: block;
    width: 100%;
  }
  .admin-table tr {
    border-bottom: 1px solid #0d1f45;
    padding: 0.75rem 0;
  }
  .admin-table tr:last-child { border-bottom: none; }
  .admin-table tr:hover td { background: none; }
  .admin-table td {
    border-bottom: none;
    padding: 0.2rem 1rem;
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    font-size: 0.85rem;
  }
  .admin-table td::before {
    content: attr(data-label);
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #3b5a9a;
    min-width: 80px;
    flex-shrink: 0;
    padding-top: 1px;
  }
  .admin-table td.muted::before { color: #3b5a9a; }
  .admin-table td[data-label=""] { padding-top: 0.6rem; }
  .admin-table td[data-label=""]::before { display: none; }
}

/* ── Admin Form ───────────────────────────────────────────────────────────── */
.admin-form-group { margin-bottom: 1.25rem; }
.admin-form-group label { display: block; font-size: 0.78rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: #3b5a9a; margin-bottom: 0.45rem; }

.admin-input {
  width: 100%;
  padding: 0.75rem 1rem;
  background: #030810;
  border: 1px solid #0d1f45;
  border-radius: 8px;
  color: #c8d8f0;
  font-size: 0.9rem;
  font-family: var(--font);
  transition: border-color 0.2s;
  outline: none;
}

.admin-input:focus { border-color: #2563eb; box-shadow: 0 0 0 2px rgba(37,99,235,0.15); }
.admin-input::placeholder { color: #2a3f6a; }
textarea.admin-input { resize: vertical; min-height: 100px; }

/* ── Content editor ───────────────────────────────────────────────────────── */
.content-section { margin-bottom: 2rem; }
.content-section-title {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #60a5fa;
  padding: 0.5rem 0.75rem;
  background: rgba(37,99,235,0.08);
  border-radius: 6px;
  margin-bottom: 1rem;
}

/* ── Login Page ───────────────────────────────────────────────────────────── */
.login-wrap {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #030810;
  padding: 2rem;
}

.login-card {
  background: #07112a;
  border: 1px solid #0d1f45;
  border-radius: 20px;
  padding: 3rem;
  width: 100%;
  max-width: 420px;
  text-align: center;
}

.login-card img { height: 40px; margin-bottom: 2rem; }
.login-card h1 { font-size: 1.5rem; margin-bottom: 0.5rem; color: #f0f6ff; }
.login-card p { color: #3b5a9a; font-size: 0.88rem; margin-bottom: 2rem; }

/* ── Success Message ──────────────────────────────────────────────────────── */
.success-banner {
  background: rgba(16,185,129,0.1);
  border: 1px solid rgba(16,185,129,0.25);
  border-radius: 12px;
  padding: 1.5rem;
  text-align: center;
  color: #6ee7b7;
  margin-bottom: 1.5rem;
}

/* ═══════════════════════════════════════════════════════════════
   RESPONSIVE — breakpoints: 1024 → 900 → 768 → 480
═══════════════════════════════════════════════════════════════ */

/* ── Tablet large (≤1024px) ───────────────────────────────────────────────── */
@media (max-width: 1024px) {

  /* Layout */
  .container { padding: 0 1.5rem; }
  .section { padding: 4.5rem 0; }
  .section-sm { padding: 3rem 0; }

  /* Grids */
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
  .about-grid { grid-template-columns: 1fr; gap: 3rem; }
  .contact-grid { grid-template-columns: 1fr; }
  .solution-hero-inner { grid-template-columns: 1fr; }

  /* Footer — accordion la tabletă (la fel ca mobile) */
  .footer-grid { grid-template-columns: 1fr; gap: 0; }
  .footer-brand { padding-bottom: 1.75rem; border-bottom: 1px solid var(--navy-border); }
  .footer-col { border-bottom: 1px solid var(--navy-border); }
  .footer-col:last-child { border-bottom: none; }
  .footer-acc-btn {
    display: flex; padding: 1.1rem 0; width: 100%;
    background: none; border: none; cursor: pointer;
    color: inherit; align-items: center; justify-content: space-between;
  }
  .footer-acc-btn h4 { margin-bottom: 0; }
  .footer-acc-body {
    max-height: 0; overflow: hidden;
    transition: max-height 0.28s ease, padding-bottom 0.28s ease;
    padding-bottom: 0;
  }
  .footer-accordion.open .footer-acc-body { max-height: 280px; padding-bottom: 1.25rem; }
  .footer-accordion.open .footer-acc-chevron { transform: rotate(180deg); }
  .footer-bottom { flex-direction: column; gap: 0.75rem; text-align: center; }

  /* Navbar — switch to hamburger on tablet */
  .navbar-inner { padding: 0 2rem; }
  .nav-links { display: none !important; }
  .nav-cta   { display: none; }
  .hamburger { display: flex; }
  .hamburger span { transition: transform 0.25s ease, opacity 0.2s ease; }
  .hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .hamburger.open span:nth-child(2) { opacity: 0; }
  .hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  /* Mobile nav overlay — active from tablet */
  .mobile-nav {
    display: none;
    position: fixed;
    top: 70px; left: 0; right: 0; bottom: 0;
    background: #07112a;
    border-top: 1px solid rgba(255,255,255,0.08);
    z-index: 9999;
    overflow-y: auto;
    flex-direction: column;
    justify-content: space-between;
  }
  .mobile-nav.open {
    display: flex;
    animation: navFadeIn 0.2s ease;
  }
  @keyframes navFadeIn {
    from { opacity: 0; }
    to   { opacity: 1; }
  }
  .mobile-nav-list {
    list-style: none; padding: 0.5rem 0; margin: 0; flex: 1;
  }
  .mobile-nav-list > li { border-bottom: 1px solid rgba(255,255,255,0.06); }
  .mobile-nav-list > li:last-child { border-bottom: none; }
  .mobile-nav-list > li > a {
    display: flex; align-items: center;
    padding: 1.1rem 1.5rem;
    font-size: 1.05rem; font-weight: 500;
    color: var(--text-main);
    transition: background 0.15s, color 0.15s;
  }
  .mobile-nav-list > li > a:hover { background: rgba(37,99,235,0.1); color: var(--blue-light); }
  .mob-solutions-btn {
    display: flex; align-items: center; justify-content: space-between;
    width: 100%; padding: 1.1rem 1.5rem;
    background: none; border: none;
    color: var(--text-main); font-size: 1.05rem; font-weight: 500;
    cursor: pointer; text-align: left;
    transition: background 0.15s, color 0.15s;
  }
  .mob-solutions-btn:hover { background: rgba(37,99,235,0.1); color: var(--blue-light); }
  .mob-chevron { transition: transform 0.22s ease; opacity: 0.6; flex-shrink: 0; }
  .mob-has-solutions.open .mob-chevron { transform: rotate(180deg); }
  .mob-dropdown {
    list-style: none; padding: 0; margin: 0; display: none;
    background: rgba(255,255,255,0.025);
    border-top: 1px solid rgba(255,255,255,0.06);
  }
  .mob-has-solutions.open .mob-dropdown { display: block; }
  .mob-dropdown li a {
    display: block; padding: 0.9rem 1.5rem 0.9rem 2.5rem;
    font-size: 0.95rem; color: var(--text-muted);
    border-left: 2px solid transparent;
    transition: background 0.15s, color 0.15s, border-color 0.15s;
  }
  .mob-dropdown li a:hover {
    background: rgba(37,99,235,0.08); color: var(--blue-light);
    border-left-color: var(--blue-primary);
  }
  .mob-nav-footer { padding: 1.5rem; border-top: 1px solid rgba(255,255,255,0.07); }

  /* Admin */
  .admin-sidebar {
    transform: translateX(-260px);
    transition: transform 0.28s cubic-bezier(0.4,0,0.2,1);
  }
  .admin-sidebar.admin-sidebar-open { transform: translateX(0); }
  .admin-main { margin-left: 0; }
  .admin-hamburger { display: flex; }
  .admin-content { padding: 1.5rem; }
  .admin-topbar { padding: 0 1.5rem; }
  .admin-dashboard-grid { grid-template-columns: 1fr !important; }
  .admin-topbar-right span { display: none; }
}

/* ── Tablet medium — hero stacks (≤900px) ─────────────────────────────────── */
@media (max-width: 900px) {
  .hero-split {
    flex-direction: column !important;
  }
  .hero-split-left {
    flex: none !important;
    max-width: 100% !important;
    width: 100%;
    padding: 7rem 2.5rem 3rem;
    justify-content: center;
    text-align: center;
  }
  .hero-split-right {
    flex: none !important;
    max-width: 100% !important;
    width: 100%;
    min-height: 380px;
  }
  .hero-split-left .hero-actions { justify-content: center; }
  .hero-split-right::before { display: none; }
  .hero-video-frame { position: absolute; inset: 0; }
}

/* ── Mobile (≤768px) ──────────────────────────────────────────────────────── */
@media (max-width: 768px) {

  /* Navbar */
  .navbar-inner { padding: 0 1.25rem; }

  /* Hero */
  .hero-split-left { padding: 6rem 1.5rem 2.5rem; }
  .hero-split-right { min-height: 300px; }

  /* Grids */
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .solutions-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .cert-card { flex-direction: column; }
  .hero { min-height: 100svh; }

  /* Section spacing */
  .section { padding: 3.5rem 0; }
  .section-header { margin-bottom: 2.5rem; }

  /* Footer — regulile de bază sunt deja la 1024px */

  /* Admin */
  .admin-content { padding: 1.25rem; }
  .admin-topbar { padding: 0 1.25rem; }
}

/* ── Mobile small (≤480px) ────────────────────────────────────────────────── */
@media (max-width: 480px) {
  .container { padding: 0 1rem; }
  .section { padding: 3rem 0; }
  .hero-split-left { padding: 5.5rem 1.25rem 2rem; }
  .hero-split-right { min-height: 240px; }
  .stats-grid { grid-template-columns: 1fr 1fr; gap: 1rem; }
  .stat-number { font-size: 2rem; }
  .grid-2, .grid-3, .grid-4 { gap: 1rem; }
}

/* ── Solution detail inline-grid overrides — tablet (≤1024px) ──────────────── */
@media (max-width: 1024px) {
  /* 4-column → 2×2 on tablet */
  [style*="grid-template-columns:repeat(4,1fr)"],
  [style*="grid-template-columns: repeat(4,1fr)"],
  [style*="grid-template-columns: repeat(4, 1fr)"] {
    grid-template-columns: repeat(2,1fr) !important;
    gap: 1.5rem !important;
  }
  /* 3-column → 2 cols on tablet */
  [style*="grid-template-columns:repeat(3,1fr)"],
  [style*="grid-template-columns: repeat(3,1fr)"],
  [style*="grid-template-columns: repeat(3, 1fr)"] {
    grid-template-columns: repeat(2,1fr) !important;
    gap: 1.5rem !important;
  }
  /* 5-column → 3 cols on tablet */
  [style*="grid-template-columns:repeat(5,1fr)"],
  [style*="grid-template-columns: repeat(5,1fr)"],
  [style*="grid-template-columns: repeat(5, 1fr)"] {
    grid-template-columns: repeat(3,1fr) !important;
    gap: 1.5rem !important;
  }
}

/* ── Solution detail inline-grid overrides — mobile (≤768px) ───────────────── */
@media (max-width: 768px) {
  /* 2-column → single column */
  [style*="grid-template-columns:1fr 1fr"],
  [style*="grid-template-columns: 1fr 1fr"] {
    grid-template-columns: 1fr !important;
    gap: 2rem !important;
  }
  /* 4-column → single column */
  [style*="grid-template-columns:repeat(4,1fr)"],
  [style*="grid-template-columns: repeat(4,1fr)"],
  [style*="grid-template-columns: repeat(4, 1fr)"] {
    grid-template-columns: repeat(2,1fr) !important;
    gap: 1.25rem !important;
  }
  /* 3-column → single column */
  [style*="grid-template-columns:repeat(3,1fr)"],
  [style*="grid-template-columns: repeat(3,1fr)"],
  [style*="grid-template-columns: repeat(3, 1fr)"] {
    grid-template-columns: 1fr !important;
    gap: 1rem !important;
  }
  /* 5-column → single column */
  [style*="grid-template-columns:repeat(5,1fr)"],
  [style*="grid-template-columns: repeat(5,1fr)"],
  [style*="grid-template-columns: repeat(5, 1fr)"] {
    grid-template-columns: 1fr !important;
    gap: 1.5rem !important;
  }
  /* Nested 2-column cards → 1-col */
  [style*="grid-template-columns:1fr 1fr"][style*="gap:1rem"],
  [style*="grid-template-columns: 1fr 1fr"][style*="gap:1rem"],
  [style*="grid-template-columns:1fr 1fr"][style*="gap: 1rem"] {
    grid-template-columns: 1fr !important;
  }
  /* Hide step connector lines */
  [style*="height:2px"][style*="position:absolute"],
  [style*="height: 2px"][style*="position: absolute"],
  [style*="height:2px"][style*="position: absolute"] {
    display: none !important;
  }
  /* Smaller step circles */
  [style*="width:5rem"][style*="height:5rem"],
  [style*="width: 5rem"][style*="height: 5rem"] {
    width: 3.5rem !important; height: 3.5rem !important; font-size: 1rem !important;
  }
  /* Tables scroll horizontally */
  table { display: block; overflow-x: auto; -webkit-overflow-scrolling: touch; }
  /* Sticky sidebar → static */
  [style*="position:sticky"], [style*="position: sticky"] {
    position: static !important; top: auto !important;
  }
  /* Hero section padding */
  section[style*="padding:9rem"], section[style*="padding: 9rem"] {
    padding-top: 5rem !important; padding-bottom: 2.5rem !important;
  }
  /* Key numbers font size */
  [style*="font-size:2.8rem"], [style*="font-size: 2.8rem"] { font-size: 2rem !important; }
  /* Large gap reductions */
  [style*="gap:5rem"], [style*="gap: 5rem"] { gap: 2rem !important; }
  [style*="gap:4rem"], [style*="gap: 4rem"] { gap: 2rem !important; }
}

/* ── Utility ──────────────────────────────────────────────────────────────── */
.text-center { text-align: center; }
.text-muted { color: var(--text-muted); }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.d-flex { display: flex; }
.align-center { align-items: center; }
.gap-1 { gap: 0.5rem; }
.gap-2 { gap: 1rem; }
.fw-600 { font-weight: 600; }
.empty-state { text-align: center; padding: 4rem 2rem; color: var(--text-muted); }
.empty-state svg { width: 48px; height: 48px; opacity: 0.3; margin-bottom: 1rem; }

/* ── Glow decorations ─────────────────────────────────────────────────────── */
.glow-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  z-index: 0;
}
