@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

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

:root {
  --brand-blue: #1B3F6F;
  --white: #FFFFFF;
  --light-gray: #F6F8FB;
  --text: #1B3F6F;
  --text-light: #6B7280;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

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

h1 { font-size: clamp(2.5rem, 6vw, 4rem); font-weight: 700; letter-spacing: -0.03em; line-height: 1.05; }
h2 { font-size: clamp(2rem, 4vw, 3rem); font-weight: 700; letter-spacing: -0.02em; line-height: 1.1; }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); font-weight: 600; letter-spacing: -0.01em; }
h4 { font-size: 1.25rem; font-weight: 600; }
p { color: var(--text-light); line-height: 1.6; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* Navigation */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: var(--brand-blue);
  height: 48px;
  display: flex;
  align-items: center;
}

.nav .container { display: flex; align-items: center; justify-content: space-between; width: 100%; }
.nav-logo { font-size: 1.25rem; font-weight: 600; color: var(--white); letter-spacing: -0.02em; }
.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-links a { font-size: 0.875rem; color: rgba(255,255,255,0.8); transition: color 0.3s; }
.nav-links a:hover, .nav-links a.active { color: var(--white); }
.nav-link-highlight { color: var(--white) !important; }

/* Hero */
.hero { padding-top: 48px;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: var(--brand-blue);
  padding: 80px 24px 60px;
}

.hero h1 { color: var(--white); margin-bottom: 24px; }
.hero h1 .highlight { color: var(--white); font-weight: 700; }
.hero p { font-size: 1.125rem; max-width: 520px; margin: 0 auto 40px; color: rgba(255,255,255,0.9); max-width: 600px; margin: 0 auto 40px; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.0625rem;
  font-weight: 500;
  padding: 14px 28px;
  border-radius: 980px;
  border: none;
  cursor: pointer;
  transition: all 0.3s;
}

.btn-primary { background: var(--brand-blue); color: var(--white); }
.btn-primary:hover { background: #0D2545; }
.btn-accent { background: var(--white); color: var(--brand-blue); }
.btn-accent:hover { background: #F5F5F7; }
.btn-ghost { background: transparent; color: var(--white); border: 1px solid rgba(255,255,255,0.5); }
.btn-ghost:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.8); }

/* Sections */
.section { padding: 80px 0; }
.section-white { background: var(--white); }
.section-gray { background: var(--light-gray); }
.section-blue { background: var(--brand-blue); color: var(--white); }
.section-blue h2 { color: var(--white); }
.section-blue p { color: rgba(255,255,255,0.9); }

.section-header { text-align: center; margin-bottom: 60px; }
.section-header h2 { margin-bottom: 16px; }
.section-header p { font-size: 1.25rem; max-width: 600px; margin: 0 auto; }

/* Grid */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }

@media (max-width: 1024px) {
  .grid-3, .grid-2 { grid-template-columns: 1fr; }
}

/* Cards */
.card {
  background: var(--light-gray);
  border-radius: 24px;
  padding: 48px 36px;
  text-align: center;
  transition: all 0.3s;
}

.card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(27,63,111,0.1); }
.card h3 { color: var(--brand-blue); margin-bottom: 12px; }
.card p { font-size: 1.0625rem; }

.case-card {
  background: var(--light-gray);
  border-radius: 24px;
  overflow: hidden;
  transition: all 0.3s;
}

.case-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(27,63,111,0.1); }
.case-card-img { height: 48px; background: var(--brand-blue); display: flex; align-items: center; justify-content: center; font-size: 0.75rem; font-weight: 600; color: var(--white); letter-spacing: 1px; text-transform: uppercase; }
.case-card-body { padding: 32px; }
.case-tag { display: inline-block; font-size: 0.75rem; font-weight: 600; padding: 4px 12px; border-radius: 100px; margin-bottom: 12px; background: rgba(27,63,111,0.1); color: var(--brand-blue); }
.case-card h3 { color: var(--brand-blue); margin-bottom: 12px; }
.case-card p { margin-bottom: 20px; }
.case-link { color: var(--brand-blue); font-weight: 500; font-size: 0.9375rem; }

/* Stats */
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 40px; text-align: center; }
.stat-item h3 { font-size: clamp(2.5rem, 5vw, 4rem); font-weight: 700; color: var(--brand-blue); letter-spacing: -0.02em; margin-bottom: 8px; }
.stat-item p { font-size: 0.9375rem; text-transform: uppercase; letter-spacing: 1px; color: var(--white); }

@media (max-width: 768px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 48px; }
}

/* FAQ */
.faq-item { border-bottom: 1px solid #E5E7EB; }
.faq-question { display: flex; justify-content: space-between; align-items: center; padding: 20px 0; font-size: 1.25rem; font-weight: 500; cursor: pointer; }
.faq-question::after { content: '+'; font-size: 1.5rem; color: var(--text-light); transition: transform 0.3s; }
.faq-item.active .faq-question::after { transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.3s ease-out; }
.faq-item.active .faq-answer { max-height: 300px; padding-bottom: 20px; }
.faq-answer p { font-size: 1.0625rem; }

/* Contact */
.contact-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 80px; align-items: start; }
.contact-form { background: var(--light-gray); border-radius: 24px; padding: 48px; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: 0.875rem; font-weight: 500; margin-bottom: 8px; color: var(--brand-blue); }
.form-group input, .form-group select, .form-group textarea { width: 100%; padding: 14px 18px; border: 1px solid #E5E7EB; border-radius: 12px; font-size: 1rem; font-family: inherit; background: var(--white); transition: border-color 0.3s; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { outline: none; border-color: var(--brand-blue); }
.form-group textarea { min-height: 140px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

@media (max-width: 1024px) {
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
}

/* Footer */
.footer { background: var(--brand-blue); padding: 60px 0 40px; }
.footer h4 { font-size: 0.75rem; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 12px; color: rgba(255,255,255,0.75); }
.footer-links a { display: block; font-size: 0.8125rem; color: rgba(255,255,255,0.7); padding: 4px 0; }
.footer-links a:hover { color: var(--white); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.2); padding-top: 24px; margin-top: 48px; text-align: center; font-size: 0.75rem; color: rgba(255,255,255,0.75); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; }

@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 12px; }
}

/* CTA */
.cta-section { padding: 100px 0; text-align: center; }
.cta-section h2 { margin-bottom: 16px; }
.cta-section p { font-size: 1.25rem; margin-bottom: 32px; }

/* Hero Sub */
.hero-sub { min-height: 40vh; display: flex; align-items: center; justify-content: center; text-align: center; background: var(--brand-blue); padding: 120px 24px 60px; }
.hero-sub h1 { color: var(--white); margin-bottom: 16px; }
.hero-sub p { font-size: 1.25rem; color: rgba(255,255,255,0.9); max-width: 600px; }

/* About */
.about-intro { max-width: 800px; margin: 0 auto; text-align: center; }
.about-intro p { font-size: 1.25rem; line-height: 1.8; margin-bottom: 24px; }

/* Partners */
.partners-grid { display: flex; flex-wrap: wrap; justify-content: center; gap: 32px 48px; }
.partner-item { font-size: 1.25rem; color: var(--text-light); opacity: 0.6; }

/* Contact Info */
.contact-info-item { display: flex; align-items: flex-start; gap: 20px; padding: 24px 0; border-bottom: 1px solid #E5E7EB; }
.contact-info-icon { width: 48px; height: 48px; background: var(--light-gray); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.5rem; }
.contact-info h4 { font-size: 1rem; margin-bottom: 4px; color: var(--brand-blue); }
.contact-info p { font-size: 0.9375rem; }

/* Mobile */
@media (max-width: 768px) {
  .nav-links { display: none; }
  .section { padding: 60px 0; }
  .hero { padding-top: 48px; padding: 100px 24px 60px; }
  .hero h1 { font-size: 2.5rem; }
}


.dropdown { position: relative; }

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--white);
  min-width: 180px;
  border-radius: 12px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.12);
  padding: 6px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(4px);
  transition: all 0.2s;
  border: 1px solid rgba(0,0,0,0.06);
}

.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu a {
  display: flex;
  align-items: center;
  padding: 10px 14px;
  border-radius: 8px;
  font-size: 0.8125rem;
  color: var(--text) !important;
  font-weight: 500;
  transition: background 0.15s;
}

.dropdown-menu a:hover {
  background: var(--light-gray);
}

.menu-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--brand-blue);
  margin-right: 10px;
  flex-shrink: 0;
}

.dropdown { position: relative; }

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--white);
  min-width: 180px;
  border-radius: 12px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.12);
  padding: 6px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(4px);
  transition: all 0.2s;
  border: 1px solid rgba(0,0,0,0.06);
}

.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu a {
  display: flex;
  align-items: center;
  padding: 10px 14px;
  border-radius: 8px;
  font-size: 0.8125rem;
  color: var(--text) !important;
  font-weight: 500;
  transition: background 0.15s;
}

.dropdown-menu a:hover {
  background: var(--light-gray);
}

.menu-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--brand-blue);
  margin-right: 10px;
  flex-shrink: 0;
}

.dropdown { position: relative; }

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--white);
  min-width: 180px;
  border-radius: 12px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.12);
  padding: 6px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(4px);
  transition: all 0.2s;
  border: 1px solid rgba(0,0,0,0.06);
}

.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu a {
  display: flex;
  align-items: center;
  padding: 10px 14px;
  border-radius: 8px;
  font-size: 0.8125rem;
  color: var(--text) !important;
  font-weight: 500;
  transition: background 0.15s;
}

.dropdown-menu a:hover {
  background: var(--light-gray);
}

.menu-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--brand-blue);
  margin-right: 10px;
  flex-shrink: 0;
}

.dropdown { position: relative; }

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--white);
  min-width: 180px;
  border-radius: 12px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.12);
  padding: 6px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(4px);
  transition: all 0.2s;
  border: 1px solid rgba(0,0,0,0.06);
}

.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu a {
  display: flex;
  align-items: center;
  padding: 10px 14px;
  border-radius: 8px;
  font-size: 0.8125rem;
  color: var(--text) !important;
  font-weight: 500;
  transition: background 0.15s;
}

.dropdown-menu a:hover {
  background: var(--light-gray);
}

.menu-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--brand-blue);
  margin-right: 10px;
  flex-shrink: 0;
}

.dropdown { position: relative; }

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--white);
  min-width: 180px;
  border-radius: 12px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.12);
  padding: 6px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(4px);
  transition: all 0.2s;
  border: 1px solid rgba(0,0,0,0.06);
}

.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu a {
  display: flex;
  align-items: center;
  padding: 10px 14px;
  border-radius: 8px;
  font-size: 0.8125rem;
  color: var(--text) !important;
  font-weight: 500;
  transition: background 0.15s;
}

.dropdown-menu a:hover {
  background: var(--light-gray);
}

.menu-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--brand-blue);
  margin-right: 10px;
  flex-shrink: 0;
}

.dropdown { position: relative; }

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--white);
  min-width: 180px;
  border-radius: 12px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.12);
  padding: 6px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(4px);
  transition: all 0.2s;
  border: 1px solid rgba(0,0,0,0.06);
}

.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu a {
  display: flex;
  align-items: center;
  padding: 10px 14px;
  border-radius: 8px;
  font-size: 0.8125rem;
  color: var(--text) !important;
  font-weight: 500;
  transition: background 0.15s;
}

.dropdown-menu a:hover {
  background: var(--light-gray);
}

.menu-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--brand-blue);
  margin-right: 10px;
  flex-shrink: 0;
}

.dropdown { position: relative; }

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--white);
  min-width: 180px;
  border-radius: 12px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.12);
  padding: 6px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(4px);
  transition: all 0.2s;
  border: 1px solid rgba(0,0,0,0.06);
}

.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu a {
  display: flex;
  align-items: center;
  padding: 10px 14px;
  border-radius: 8px;
  font-size: 0.8125rem;
  color: var(--text) !important;
  font-weight: 500;
  transition: background 0.15s;
}

.dropdown-menu a:hover {
  background: var(--light-gray);
}

.menu-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--brand-blue);
  margin-right: 10px;
  flex-shrink: 0;
}

.dropdown { position: relative; }

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--white);
  min-width: 180px;
  border-radius: 12px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.12);
  padding: 6px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(4px);
  transition: all 0.2s;
  border: 1px solid rgba(0,0,0,0.06);
}

.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu a {
  display: flex;
  align-items: center;
  padding: 10px 14px;
  border-radius: 8px;
  font-size: 0.8125rem;
  color: var(--text) !important;
  font-weight: 500;
  transition: background 0.15s;
}

.dropdown-menu a:hover {
  background: var(--light-gray);
}

.menu-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--brand-blue);
  margin-right: 10px;
  flex-shrink: 0;
}

.dropdown { position: relative; }

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--white);
  min-width: 180px;
  border-radius: 12px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.12);
  padding: 6px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(4px);
  transition: all 0.2s;
  border: 1px solid rgba(0,0,0,0.06);
}

.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu a {
  display: flex;
  align-items: center;
  padding: 10px 14px;
  border-radius: 8px;
  font-size: 0.8125rem;
  color: var(--text) !important;
  font-weight: 500;
  transition: background 0.15s;
}

.dropdown-menu a:hover {
  background: var(--light-gray);
}

.menu-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--brand-blue);
  margin-right: 10px;
  flex-shrink: 0;
}

.dropdown { position: relative; }

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--white);
  min-width: 180px;
  border-radius: 12px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.12);
  padding: 6px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(4px);
  transition: all 0.2s;
  border: 1px solid rgba(0,0,0,0.06);
}

.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu a {
  display: flex;
  align-items: center;
  padding: 10px 14px;
  border-radius: 8px;
  font-size: 0.8125rem;
  color: var(--text) !important;
  font-weight: 500;
  transition: background 0.15s;
}

.dropdown-menu a:hover {
  background: var(--light-gray);
}

.menu-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--brand-blue);
  margin-right: 10px;
  flex-shrink: 0;
}

.dropdown { position: relative; }

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--white);
  min-width: 180px;
  border-radius: 12px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.12);
  padding: 6px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(4px);
  transition: all 0.2s;
  border: 1px solid rgba(0,0,0,0.06);
}

.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu a {
  display: flex;
  align-items: center;
  padding: 10px 14px;
  border-radius: 8px;
  font-size: 0.8125rem;
  color: var(--text) !important;
  font-weight: 500;
  transition: background 0.15s;
}

.dropdown-menu a:hover {
  background: var(--light-gray);
}

.menu-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--brand-blue);
  margin-right: 10px;
  flex-shrink: 0;
}

.dropdown { position: relative; }

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--white);
  min-width: 180px;
  border-radius: 12px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.12);
  padding: 6px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(4px);
  transition: all 0.2s;
  border: 1px solid rgba(0,0,0,0.06);
}

.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu a {
  display: flex;
  align-items: center;
  padding: 10px 14px;
  border-radius: 8px;
  font-size: 0.8125rem;
  color: var(--text) !important;
  font-weight: 500;
  transition: background 0.15s;
}

.dropdown-menu a:hover {
  background: var(--light-gray);
}

.menu-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--brand-blue);
  margin-right: 10px;
  flex-shrink: 0;
}

.dropdown { position: relative; }

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--white);
  min-width: 180px;
  border-radius: 12px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.12);
  padding: 6px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(4px);
  transition: all 0.2s;
  border: 1px solid rgba(0,0,0,0.06);
}

.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu a {
  display: flex;
  align-items: center;
  padding: 10px 14px;
  border-radius: 8px;
  font-size: 0.8125rem;
  color: var(--text) !important;
  font-weight: 500;
  transition: background 0.15s;
}

.dropdown-menu a:hover {
  background: var(--light-gray);
}

.menu-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--brand-blue);
  margin-right: 10px;
  flex-shrink: 0;
}

.dropdown { position: relative; }

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--white);
  min-width: 180px;
  border-radius: 12px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.12);
  padding: 6px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(4px);
  transition: all 0.2s;
  border: 1px solid rgba(0,0,0,0.06);
}

.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu a {
  display: flex;
  align-items: center;
  padding: 10px 14px;
  border-radius: 8px;
  font-size: 0.8125rem;
  color: var(--text) !important;
  font-weight: 500;
  transition: background 0.15s;
}

.dropdown-menu a:hover {
  background: var(--light-gray);
}

.menu-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--brand-blue);
  margin-right: 10px;
  flex-shrink: 0;
}

.dropdown { position: relative; }

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--white);
  min-width: 180px;
  border-radius: 12px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.12);
  padding: 6px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(4px);
  transition: all 0.2s;
  border: 1px solid rgba(0,0,0,0.06);
}

.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu a {
  display: flex;
  align-items: center;
  padding: 10px 14px;
  border-radius: 8px;
  font-size: 0.8125rem;
  color: var(--text) !important;
  font-weight: 500;
  transition: background 0.15s;
}

.dropdown-menu a:hover {
  background: var(--light-gray);
}

.menu-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--brand-blue);
  margin-right: 10px;
  flex-shrink: 0;
}

.dropdown { position: relative; }

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--white);
  min-width: 180px;
  border-radius: 12px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.12);
  padding: 6px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(4px);
  transition: all 0.2s;
  border: 1px solid rgba(0,0,0,0.06);
}

.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu a {
  display: flex;
  align-items: center;
  padding: 10px 14px;
  border-radius: 8px;
  font-size: 0.8125rem;
  color: var(--text) !important;
  font-weight: 500;
  transition: background 0.15s;
}

.dropdown-menu a:hover {
  background: var(--light-gray);
}

.menu-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--brand-blue);
  margin-right: 10px;
  flex-shrink: 0;
}

.dropdown { position: relative; }

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--white);
  min-width: 180px;
  border-radius: 12px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.12);
  padding: 6px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(4px);
  transition: all 0.2s;
  border: 1px solid rgba(0,0,0,0.06);
}

.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu a {
  display: flex;
  align-items: center;
  padding: 10px 14px;
  border-radius: 8px;
  font-size: 0.8125rem;
  color: var(--text) !important;
  font-weight: 500;
  transition: background 0.15s;
}

.dropdown-menu a:hover {
  background: var(--light-gray);
}

.menu-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--brand-blue);
  margin-right: 10px;
  flex-shrink: 0;
}

.dropdown { position: relative; }

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--white);
  min-width: 180px;
  border-radius: 12px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.12);
  padding: 6px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(4px);
  transition: all 0.2s;
  border: 1px solid rgba(0,0,0,0.06);
}

.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu a {
  display: flex;
  align-items: center;
  padding: 10px 14px;
  border-radius: 8px;
  font-size: 0.8125rem;
  color: var(--text) !important;
  font-weight: 500;
  transition: background 0.15s;
}

.dropdown-menu a:hover {
  background: var(--light-gray);
}

.menu-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--brand-blue);
  margin-right: 10px;
  flex-shrink: 0;
}

.dropdown { position: relative; }

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--white);
  min-width: 180px;
  border-radius: 12px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.12);
  padding: 6px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(4px);
  transition: all 0.2s;
  border: 1px solid rgba(0,0,0,0.06);
}

.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu a {
  display: flex;
  align-items: center;
  padding: 10px 14px;
  border-radius: 8px;
  font-size: 0.8125rem;
  color: var(--text) !important;
  font-weight: 500;
  transition: background 0.15s;
}

.dropdown-menu a:hover {
  background: var(--light-gray);
}

.menu-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--brand-blue);
  margin-right: 10px;
  flex-shrink: 0;
}

.dropdown { position: relative; }

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--white);
  min-width: 180px;
  border-radius: 12px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.12);
  padding: 6px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(4px);
  transition: all 0.2s;
  border: 1px solid rgba(0,0,0,0.06);
}

.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu a {
  display: flex;
  align-items: center;
  padding: 10px 14px;
  border-radius: 8px;
  font-size: 0.8125rem;
  color: var(--text) !important;
  font-weight: 500;
  transition: background 0.15s;
}

.dropdown-menu a:hover {
  background: var(--light-gray);
}

.menu-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--brand-blue);
  margin-right: 10px;
  flex-shrink: 0;
}

.dropdown { position: relative; }

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--white);
  min-width: 180px;
  border-radius: 12px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.12);
  padding: 6px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(4px);
  transition: all 0.2s;
  border: 1px solid rgba(0,0,0,0.06);
}

.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu a {
  display: flex;
  align-items: center;
  padding: 10px 14px;
  border-radius: 8px;
  font-size: 0.8125rem;
  color: var(--text) !important;
  font-weight: 500;
  transition: background 0.15s;
}

.dropdown-menu a:hover {
  background: var(--light-gray);
}

.menu-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--brand-blue);
  margin-right: 10px;
  flex-shrink: 0;
}

.dropdown { position: relative; }

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--white);
  min-width: 180px;
  border-radius: 12px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.12);
  padding: 6px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(4px);
  transition: all 0.2s;
  border: 1px solid rgba(0,0,0,0.06);
}

.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu a {
  display: flex;
  align-items: center;
  padding: 10px 14px;
  border-radius: 8px;
  font-size: 0.8125rem;
  color: var(--text) !important;
  font-weight: 500;
  transition: background 0.15s;
}

.dropdown-menu a:hover {
  background: var(--light-gray);
}

.menu-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--brand-blue);
  margin-right: 10px;
  flex-shrink: 0;
}

.dropdown { position: relative; }

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--white);
  min-width: 180px;
  border-radius: 12px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.12);
  padding: 6px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(4px);
  transition: all 0.2s;
  border: 1px solid rgba(0,0,0,0.06);
}

.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu a {
  display: flex;
  align-items: center;
  padding: 10px 14px;
  border-radius: 8px;
  font-size: 0.8125rem;
  color: var(--text) !important;
  font-weight: 500;
  transition: background 0.15s;
}

.dropdown-menu a:hover {
  background: var(--light-gray);
}

.menu-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--brand-blue);
  margin-right: 10px;
  flex-shrink: 0;
}

.dropdown { position: relative; }

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--white);
  min-width: 180px;
  border-radius: 12px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.12);
  padding: 6px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(4px);
  transition: all 0.2s;
  border: 1px solid rgba(0,0,0,0.06);
}

.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu a {
  display: flex;
  align-items: center;
  padding: 10px 14px;
  border-radius: 8px;
  font-size: 0.8125rem;
  color: var(--text) !important;
  font-weight: 500;
  transition: background 0.15s;
}

.dropdown-menu a:hover {
  background: var(--light-gray);
}

.menu-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--brand-blue);
  margin-right: 10px;
  flex-shrink: 0;
}

.dropdown { position: relative; }

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--white);
  min-width: 180px;
  border-radius: 12px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.12);
  padding: 6px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(4px);
  transition: all 0.2s;
  border: 1px solid rgba(0,0,0,0.06);
}

.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu a {
  display: flex;
  align-items: center;
  padding: 10px 14px;
  border-radius: 8px;
  font-size: 0.8125rem;
  color: var(--text) !important;
  font-weight: 500;
  transition: background 0.15s;
}

.dropdown-menu a:hover {
  background: var(--light-gray);
}

.menu-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--brand-blue);
  margin-right: 10px;
  flex-shrink: 0;
}

.dropdown { position: relative; }

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--white);
  min-width: 180px;
  border-radius: 12px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.12);
  padding: 6px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(4px);
  transition: all 0.2s;
  border: 1px solid rgba(0,0,0,0.06);
}

.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu a {
  display: flex;
  align-items: center;
  padding: 10px 14px;
  border-radius: 8px;
  font-size: 0.8125rem;
  color: var(--text) !important;
  font-weight: 500;
  transition: background 0.15s;
}

.dropdown-menu a:hover {
  background: var(--light-gray);
}

.menu-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--brand-blue);
  margin-right: 10px;
  flex-shrink: 0;
}

.dropdown { position: relative; }

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--white);
  min-width: 180px;
  border-radius: 12px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.12);
  padding: 6px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(4px);
  transition: all 0.2s;
  border: 1px solid rgba(0,0,0,0.06);
}

.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu a {
  display: flex;
  align-items: center;
  padding: 10px 14px;
  border-radius: 8px;
  font-size: 0.8125rem;
  color: var(--text) !important;
  font-weight: 500;
  transition: background 0.15s;
}

.dropdown-menu a:hover {
  background: var(--light-gray);
}

.menu-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--brand-blue);
  margin-right: 10px;
  flex-shrink: 0;
}

.dropdown { position: relative; }

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--white);
  min-width: 180px;
  border-radius: 12px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.12);
  padding: 6px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(4px);
  transition: all 0.2s;
  border: 1px solid rgba(0,0,0,0.06);
}

.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu a {
  display: flex;
  align-items: center;
  padding: 10px 14px;
  border-radius: 8px;
  font-size: 0.8125rem;
  color: var(--text) !important;
  font-weight: 500;
  transition: background 0.15s;
}

.dropdown-menu a:hover {
  background: var(--light-gray);
}

.menu-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--brand-blue);
  margin-right: 10px;
  flex-shrink: 0;
}

.dropdown { position: relative; }

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--white);
  min-width: 180px;
  border-radius: 12px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.12);
  padding: 6px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(4px);
  transition: all 0.2s;
  border: 1px solid rgba(0,0,0,0.06);
}

.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu a {
  display: flex;
  align-items: center;
  padding: 10px 14px;
  border-radius: 8px;
  font-size: 0.8125rem;
  color: var(--text) !important;
  font-weight: 500;
  transition: background 0.15s;
}

.dropdown-menu a:hover {
  background: var(--light-gray);
}

.menu-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--brand-blue);
  margin-right: 10px;
  flex-shrink: 0;
}

.dropdown { position: relative; }

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--white);
  min-width: 180px;
  border-radius: 12px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.12);
  padding: 6px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(4px);
  transition: all 0.2s;
  border: 1px solid rgba(0,0,0,0.06);
}

.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu a {
  display: flex;
  align-items: center;
  padding: 10px 14px;
  border-radius: 8px;
  font-size: 0.8125rem;
  color: var(--text) !important;
  font-weight: 500;
  transition: background 0.15s;
}

.dropdown-menu a:hover {
  background: var(--light-gray);
}

.menu-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--brand-blue);
  margin-right: 10px;
  flex-shrink: 0;
}

.dropdown { position: relative; }

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--white);
  min-width: 180px;
  border-radius: 12px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.12);
  padding: 6px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(4px);
  transition: all 0.2s;
  border: 1px solid rgba(0,0,0,0.06);
}

.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu a {
  display: flex;
  align-items: center;
  padding: 10px 14px;
  border-radius: 8px;
  font-size: 0.8125rem;
  color: var(--text) !important;
  font-weight: 500;
  transition: background 0.15s;
}

.dropdown-menu a:hover {
  background: var(--light-gray);
}

.menu-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--brand-blue);
  margin-right: 10px;
  flex-shrink: 0;
}

.dropdown { position: relative; }

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--white);
  min-width: 180px;
  border-radius: 12px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.12);
  padding: 6px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(4px);
  transition: all 0.2s;
  border: 1px solid rgba(0,0,0,0.06);
}

.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu a {
  display: flex;
  align-items: center;
  padding: 10px 14px;
  border-radius: 8px;
  font-size: 0.8125rem;
  color: var(--text) !important;
  font-weight: 500;
  transition: background 0.15s;
}

.dropdown-menu a:hover {
  background: var(--light-gray);
}

.menu-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--brand-blue);
  margin-right: 10px;
  flex-shrink: 0;
}

.dropdown { position: relative; }

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--white);
  min-width: 180px;
  border-radius: 12px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.12);
  padding: 6px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(4px);
  transition: all 0.2s;
  border: 1px solid rgba(0,0,0,0.06);
}

.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu a {
  display: flex;
  align-items: center;
  padding: 10px 14px;
  border-radius: 8px;
  font-size: 0.8125rem;
  color: var(--text) !important;
  font-weight: 500;
  transition: background 0.15s;
}

.dropdown-menu a:hover {
  background: var(--light-gray);
}

.menu-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--brand-blue);
  margin-right: 10px;
  flex-shrink: 0;
}

.dropdown { position: relative; }

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--white);
  min-width: 180px;
  border-radius: 12px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.12);
  padding: 6px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(4px);
  transition: all 0.2s;
  border: 1px solid rgba(0,0,0,0.06);
}

.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu a {
  display: flex;
  align-items: center;
  padding: 10px 14px;
  border-radius: 8px;
  font-size: 0.8125rem;
  color: var(--text) !important;
  font-weight: 500;
  transition: background 0.15s;
}

.dropdown-menu a:hover {
  background: var(--light-gray);
}

.menu-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--brand-blue);
  margin-right: 10px;
  flex-shrink: 0;
}

.dropdown { position: relative; }

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--white);
  min-width: 180px;
  border-radius: 12px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.12);
  padding: 6px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(4px);
  transition: all 0.2s;
  border: 1px solid rgba(0,0,0,0.06);
}

.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu a {
  display: flex;
  align-items: center;
  padding: 10px 14px;
  border-radius: 8px;
  font-size: 0.8125rem;
  color: var(--text) !important;
  font-weight: 500;
  transition: background 0.15s;
}

.dropdown-menu a:hover {
  background: var(--light-gray);
}

.menu-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--brand-blue);
  margin-right: 10px;
  flex-shrink: 0;
}

.dropdown { position: relative; }

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--white);
  min-width: 180px;
  border-radius: 12px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.12);
  padding: 6px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(4px);
  transition: all 0.2s;
  border: 1px solid rgba(0,0,0,0.06);
}

.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu a {
  display: flex;
  align-items: center;
  padding: 10px 14px;
  border-radius: 8px;
  font-size: 0.8125rem;
  color: var(--text) !important;
  font-weight: 500;
  transition: background 0.15s;
}

.dropdown-menu a:hover {
  background: var(--light-gray);
}

.menu-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--brand-blue);
  margin-right: 10px;
  flex-shrink: 0;
}

.dropdown { position: relative; }

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--white);
  min-width: 180px;
  border-radius: 12px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.12);
  padding: 6px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(4px);
  transition: all 0.2s;
  border: 1px solid rgba(0,0,0,0.06);
}

.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu a {
  display: flex;
  align-items: center;
  padding: 10px 14px;
  border-radius: 8px;
  font-size: 0.8125rem;
  color: var(--text) !important;
  font-weight: 500;
  transition: background 0.15s;
}

.dropdown-menu a:hover {
  background: var(--light-gray);
}

.menu-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--brand-blue);
  margin-right: 10px;
  flex-shrink: 0;
}

.dropdown { position: relative; }

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--white);
  min-width: 180px;
  border-radius: 12px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.12);
  padding: 6px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(4px);
  transition: all 0.2s;
  border: 1px solid rgba(0,0,0,0.06);
}

.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu a {
  display: flex;
  align-items: center;
  padding: 10px 14px;
  border-radius: 8px;
  font-size: 0.8125rem;
  color: var(--text) !important;
  font-weight: 500;
  transition: background 0.15s;
}

.dropdown-menu a:hover {
  background: var(--light-gray);
}

.menu-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--brand-blue);
  margin-right: 10px;
  flex-shrink: 0;
}

.dropdown { position: relative; }

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--white);
  min-width: 180px;
  border-radius: 12px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.12);
  padding: 6px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(4px);
  transition: all 0.2s;
  border: 1px solid rgba(0,0,0,0.06);
}

.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu a {
  display: flex;
  align-items: center;
  padding: 10px 14px;
  border-radius: 8px;
  font-size: 0.8125rem;
  color: var(--text) !important;
  font-weight: 500;
  transition: background 0.15s;
}

.dropdown-menu a:hover {
  background: var(--light-gray);
}

.menu-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--brand-blue);
  margin-right: 10px;
  flex-shrink: 0;
}
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--brand-blue);
  margin-right: 8px;
}
