@import url('https://fonts.googleapis.com/css2?family=Source+Sans+3:ital,wght@0,300;0,400;0,600;0,700;0,900;1,400;1,700&display=swap');

/* ── BRAND TOKENS ── */
:root {
  --blue-deep:  #1260AF;
  --blue-mid:   #2A7FC6;
  --blue-light: #DAF2FF;
  --cream:      #F3EBD3;
  --forest:     #2E4037;
  --white:      #FFFFFF;
  --off-white:  #F4F8FC;
  --text:       #0f1e2e;
  --muted:      #5b7490;
  --border:     #d4e6f5;
  --dark:       #060f1c;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Source Sans 3', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  background: var(--white);
  color: var(--text);
  overflow-x: hidden;
  font-size: 17px;
  line-height: 1.7;
}

/* ── NAVIGATION ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 300;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 48px; height: 68px;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}
.nav-logo-wrap { display: flex; flex-direction: column; text-decoration: none; }
.nav-logo-name { font-size: 22px; font-weight: 900; color: var(--blue-deep); letter-spacing: -0.02em; line-height: 1; }
.nav-logo-tag {
    font-size: 10px;
    font-weight: 600;
    color: var(--blue-deep);
    letter-spacing: 0.04em;
    margin-top: 2px;
}
.nav-links { display: flex; align-items: center; gap: 4px; list-style: none; }
.nav-links a, .nav-links button.nav-plain {
  font-size: 15px; font-weight: 600; color: var(--muted);
  text-decoration: none; padding: 8px 14px; border-radius: 6px;
  transition: color .2s, background .2s; border: none; background: none;
  font-family: inherit; cursor: pointer;
}
.nav-links a:hover, .nav-links button.nav-plain:hover { color: var(--blue-deep); background: var(--off-white); }
.nav-links .has-dropdown { position: relative; }
.nav-dropdown {
  display: none; position: absolute; top: calc(100% + 8px); left: 0;
  background: var(--white); border: 1.5px solid var(--border);
  border-radius: 12px; padding: 8px; min-width: 220px;
  box-shadow: 0 8px 32px rgba(18,96,175,0.12); z-index: 400;
}
.has-dropdown:hover .nav-dropdown { display: block; }
.nav-dropdown a {
  display: block; padding: 10px 14px; border-radius: 8px;
  font-size: 15px; font-weight: 600; color: var(--text);
  text-decoration: none; transition: background .15s;
}
.nav-dropdown a:hover { background: var(--off-white); color: var(--blue-deep); }
.nav-right { display: flex; align-items: center; gap: 12px; }
.nav-back { font-size: 14px; font-weight: 600; color: var(--muted); text-decoration: none; display: flex; align-items: center; gap: 5px; transition: color .2s; }
.nav-back:hover { color: var(--blue-deep); }
.btn-demo {
  background: var(--blue-deep); color: #fff; border: none;
  padding: 10px 22px; border-radius: 7px; font-size: 15px; font-weight: 700;
  font-family: inherit; cursor: pointer; transition: background .2s, transform .15s;
  text-decoration: none; display: inline-block;
}
.btn-demo:hover { background: var(--blue-mid); transform: translateY(-1px); }
.btn-outline {
  background: transparent; color: var(--blue-deep);
  border: 1.5px solid var(--blue-deep); padding: 10px 22px;
  border-radius: 7px; font-size: 15px; font-weight: 700;
  font-family: inherit; cursor: pointer; transition: all .2s;
  text-decoration: none; display: inline-block;
}
.btn-outline:hover { background: var(--blue-deep); color: #fff; }
.btn-cream {
  background: var(--cream); color: var(--blue-deep);
  border: none; padding: 13px 30px; border-radius: 8px;
  font-size: 16px; font-weight: 700; font-family: inherit;
  cursor: pointer; transition: all .2s; text-decoration: none; display: inline-block;
}
.btn-cream:hover { background: #fff; transform: translateY(-2px); }
.btn-ghost-white {
  background: transparent; color: rgba(218,242,255,0.85);
  border: 1.5px solid rgba(218,242,255,0.35); padding: 13px 30px;
  border-radius: 8px; font-size: 16px; font-weight: 600;
  font-family: inherit; cursor: pointer; transition: all .2s;
  text-decoration: none; display: inline-block;
}
.btn-ghost-white:hover { border-color: rgba(218,242,255,0.7); color: #fff; }

/* ── SECTION PRIMITIVES ── */
.section-tag {
  display: inline-block; font-size: 12px; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--blue-mid); margin-bottom: 16px;
}
.section-tag-light { color: var(--blue-light); }
.section-tag-cream { color: var(--blue-deep); }
.section-tag-muted { color: var(--muted); }

h2.page-h2 {
  font-size: clamp(28px, 4.5vw, 46px); font-weight: 900;
  letter-spacing: -0.02em; line-height: 1.1; margin-bottom: 16px;
}
h2.page-h2 em { font-style: italic; color: var(--blue-mid); }
h2.page-h2-white { color: #fff; }
h2.page-h2-white em { color: var(--cream); }

.page-lead {
  font-size: 18px; color:Black; font-weight: 300;
  max-width: 600px; line-height: 1.75; margin-bottom: 44px;
}
.page-lead-white { color: rgba(218,242,255,0.85); }

/* ── HERO TYPES ── */
.hero-dark  { background: var(--blue-deep); }
.hero-light { background: var(--off-white); border-bottom: 1px solid var(--border); }
.hero-cream { background: var(--cream); border-bottom: 1px solid #e0d4b8; }

.hero-wrap {
  padding: 130px 48px 80px; position: relative; overflow: hidden;
}
.hero-wrap-center { text-align: center; }
.hero-wrap-center .page-lead { margin-left: auto; margin-right: auto; }

.hero-dark::before, .hero-dark::after {
  content: ''; position: absolute; border-radius: 50%;
  filter: blur(90px); pointer-events: none;
}
.hero-dark::before { width: 580px; height: 580px; background: rgba(218,242,255,0.14); top: -160px; right: -120px; }
.hero-dark::after  { width: 380px; height: 380px; background: rgba(243,235,211,0.09); bottom: -80px; left: -60px; }
.hero-grid-overlay {
  position: absolute; inset: 0; pointer-events: none;
  background-image: linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 54px 54px;
}

.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 18px; border-radius: 100px; margin-bottom: 24px;
  font-size: 12px; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; position: relative;
}
.eyebrow-dark  { background: rgba(218,242,255,0.12); border: 1px solid rgba(218,242,255,0.25); color: var(--blue-light); }
.eyebrow-light { background: var(--blue-light); border: 1px solid var(--border); color: var(--blue-deep); }
.eyebrow-cream { background: rgba(18,96,175,0.1); border: 1px solid rgba(18,96,175,0.2); color: var(--blue-deep); }
.eyebrow-dot { width: 6px; height: 6px; border-radius: 50%; background: currentColor; opacity: 0.6; }

.hero-h1 {
  font-size: clamp(36px, 6vw, 72px); font-weight: 900;
  letter-spacing: -0.03em; line-height: 1.0;
  margin-bottom: 22px; position: relative;
}
.hero-h1-white { color: #fff; }
.hero-h1-white em { font-style: italic; color: var(--cream); }
.hero-h1-dark  { color: var(--text); }
.hero-h1-dark em { font-style: italic; color: var(--blue-deep); }

.hero-sub {
  font-size: 19px; font-weight: 300; max-width: 580px;
  line-height: 1.75; margin-bottom: 40px; position: relative;
}
.hero-sub-white {
    color: rgba(255,255,255,0.85);
}
.hero-sub-dark  { color: var(--muted); }

.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; position: relative; }
.hero-actions-center { justify-content: center; }

.hero-stats { display: flex; gap: 52px; flex-wrap: wrap; margin-top: 64px; position: relative; }
.hero-stats-center { justify-content: center; }
.stat-num { font-size: 38px; font-weight: 900; letter-spacing: -0.03em; color: #fff; }
.stat-lbl { font-size: 13px; color: rgba(218,242,255,0.8); margin-top: 3px; }
.stat-num-dark { color: var(--blue-deep); }
.stat-lbl-dark { color: var(--muted); }

/* ── PAGE SECTIONS ── */
.sec          { padding: 88px 48px; max-width: 1100px; margin: 0 auto; }
.sec-full     { padding: 88px 48px; }
.sec-full-inner { max-width: 1100px; margin: 0 auto; }
.sec-dark     { background: var(--dark); padding: 88px 48px; }
.sec-alt      { background: var(--off-white); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 88px 48px; }
.sec-cream    { background: var(--cream); border-top: 1px solid #e0d4b8; border-bottom: 1px solid #e0d4b8; padding: 88px 48px; }
.sec-blue     { background: var(--blue-deep); padding: 88px 48px; }

/* ── FEATURE CARDS ── */
.feat-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 18px; }
.feat-card {
  background: var(--white); border: 1.5px solid var(--border);
  border-radius: 14px; padding: 28px;
  transition: border-color .2s, box-shadow .2s;
}
.feat-card:hover { border-color: var(--blue-mid); box-shadow: 0 6px 28px rgba(42,127,198,0.1); }
.feat-card-dark {
  background: rgba(255,255,255,0.04); border: 1px solid rgba(218,242,255,0.1);
  border-radius: 14px; padding: 28px;
  transition: border-color .2s, background .2s;
}
.feat-card-dark:hover { border-color: rgba(218,242,255,0.28); background: rgba(255,255,255,0.07); }
.feat-icon  { font-size: 30px; margin-bottom: 14px; display: block; }
.feat-title { font-size: 17px; font-weight: 800; color: var(--text); margin-bottom: 9px; }
.feat-title-white { color: #fff; }
.feat-body  { font-size: 16px; color: var(--muted); line-height: 1.65; font-weight: 300; }
.feat-body-white { color: rgba(218,242,255,0.6); }

/* ── TWO COL ── */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
.two-col-center { align-items: center; }
@media (max-width: 820px) { .two-col { grid-template-columns: 1fr; gap: 40px; } }

.check-list { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.check-list li {
  display: flex; gap: 12px; font-size: 16px; color: var(--text);
  line-height: 1.6; align-items: flex-start;
}
.check-list li::before {
  content: '✓'; color: var(--blue-mid); font-weight: 800;
  font-size: 14px; margin-top: 3px; flex-shrink: 0;
}
.check-list-white li { color: rgba(218,242,255,0.85); }
.check-list-white li::before { color: var(--blue-light); }

/* ── MOCK UI ── */
.mock-ui {
  background: var(--dark); border-radius: 16px; overflow: hidden;
  border: 1px solid rgba(218,242,255,0.1);
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}
.mock-ui-light {
  background: var(--white); border-radius: 16px; overflow: hidden;
  border: 1.5px solid var(--border);
  box-shadow: 0 8px 40px rgba(18,96,175,0.1);
}
.mock-bar {
  background: rgba(255,255,255,0.05); padding: 13px 18px;
  display: flex; gap: 8px; align-items: center;
  border-bottom: 1px solid rgba(218,242,255,0.08);
}
.mock-bar-light {
  background: var(--off-white); padding: 11px 18px;
  display: flex; gap: 8px; align-items: center;
  border-bottom: 1px solid var(--border);
}
.mock-dot { width: 11px; height: 11px; border-radius: 50%; }
.dot-r{background:#f87171} .dot-y{background:#fbbf24} .dot-g{background:#4ade80}
.mock-title       { font-size: 12px; font-weight: 600; color: rgba(218,242,255,0.4); margin-left: 8px; }
.mock-title-light { font-size: 12px; font-weight: 600; color: var(--muted); margin-left: 8px; }
.mock-body { padding: 20px; }
.mock-row {
  display: flex; gap: 12px; align-items: flex-start;
  padding: 11px 14px; border-radius: 9px; margin-bottom: 9px;
  background: rgba(255,255,255,0.04); border: 1px solid rgba(218,242,255,0.07);
}
.mock-row-light {
  display: flex; gap: 12px; align-items: flex-start;
  padding: 11px 14px; border-radius: 9px; margin-bottom: 9px;
  background: var(--off-white); border: 1px solid var(--border);
}
.mr-dot { width: 10px; height: 10px; border-radius: 50%; flex-shrink: 0; margin-top: 5px; }
.mr-green{background:#4ade80} .mr-amber{background:#fbbf24} .mr-blue{background:var(--blue-light)} .mr-red{background:#f87171}
.mr-title      { font-size: 14px; font-weight: 700; color: #fff; margin-bottom: 3px; }
.mr-title-dark { font-size: 14px; font-weight: 700; color: var(--text); margin-bottom: 3px; }
.mr-meta       { font-size: 12px; color: rgba(218,242,255,0.45); }
.mr-meta-dark  { font-size: 12px; color: var(--muted); }
.mr-note       { margin-top: 7px; padding: 7px 10px; background: rgba(218,242,255,0.07); border-radius: 6px; font-size: 12px; color: rgba(218,242,255,0.6); font-style: italic; line-height: 1.55; }
.mr-note-light { margin-top: 7px; padding: 7px 10px; background: var(--blue-light); border-radius: 6px; font-size: 12px; color: var(--blue-deep); font-style: italic; line-height: 1.55; }

/* ── AI SAMPLES ── */
.ai-samp { background: rgba(218,242,255,0.07); border: 1px solid rgba(218,242,255,0.14); border-radius: 12px; padding: 18px 20px; margin-top: 14px; }
.ai-samp-lbl { font-size: 11px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(218,242,255,0.4); margin-bottom: 9px; }
.ai-samp-txt { font-size: 15px; color: rgba(218,242,255,0.75); line-height: 1.7; font-style: italic; }
.ai-samp-light { background: var(--off-white); border: 1px solid var(--border); border-radius: 12px; padding: 18px 20px; margin-top: 14px; }
.ai-samp-lbl-light { font-size: 11px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); margin-bottom: 9px; }
.ai-samp-txt-light { font-size: 15px; color: var(--text); line-height: 1.7; font-style: italic; }

/* ── PILLS ── */
.pill-row { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 14px; }
.pill      { display: inline-block; padding: 5px 14px; border-radius: 100px; font-size: 13px; font-weight: 600; background: var(--blue-light); color: var(--blue-deep); }
.pill-dark { background: rgba(218,242,255,0.1); color: rgba(218,242,255,0.8); border: 1px solid rgba(218,242,255,0.18); }
.pill-warn { background: rgba(251,191,36,0.12); color: rgba(251,191,36,0.9); border: 1px solid rgba(251,191,36,0.22); }
.pill-green { background: rgba(74,222,128,0.1); color: #4ade80; border: 1px solid rgba(74,222,128,0.2); }

/* ── CHANNEL BADGES ── */
.ch-badges { display: flex; flex-wrap: wrap; gap: 10px; margin: 20px 0; }
.ch-badge { display: inline-flex; align-items: center; gap: 6px; background: var(--blue-light); color: var(--blue-deep); border-radius: 100px; padding: 6px 14px; font-size: 14px; font-weight: 700; }

/* ── STAT ROW ── */
.stat-row { display: flex; gap: 40px; flex-wrap: wrap; margin: 32px 0; }
.stat-val       { font-size: 42px; font-weight: 900; color: var(--blue-deep); letter-spacing: -0.03em; line-height: 1; }
.stat-val-white { color: #fff; }
.stat-lbl-s       { font-size: 14px; color: var(--muted); margin-top: 4px; }
.stat-lbl-s-white { color: rgba(218,242,255,0.8); font-size: 14px; margin-top: 4px; }

/* ── SEGMENT GRID ── */
.seg-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); gap: 12px; margin-top: 20px; }
.seg-card { border-radius: 14px; padding: 20px; border: 1px solid transparent; }
.seg-green  { background: rgba(74,222,128,0.08);  border-color: rgba(74,222,128,0.18); }
.seg-amber  { background: rgba(251,191,36,0.08);  border-color: rgba(251,191,36,0.18); }
.seg-blue   { background: rgba(218,242,255,0.07); border-color: rgba(218,242,255,0.14); }
.seg-purple { background: rgba(167,139,250,0.08); border-color: rgba(167,139,250,0.18); }
.seg-icon  { font-size: 22px; margin-bottom: 8px; }
.seg-name  { font-size: 15px; font-weight: 800; color: #fff; margin-bottom: 5px; }
.seg-name-dark { color: var(--text); }
.seg-desc  { font-size: 13px; color: rgba(218,242,255,0.5); line-height: 1.55; margin-bottom: 8px; }
.seg-desc-dark { color: var(--muted); }
.seg-count {
    font-size: 13px;
    font-weight: 700;
    color: rgba(218,242,255,0.9);
    ;
}
.seg-count-dark { color: var(--blue-mid); }

/* ── INSIGHT GRID ── */
.insight-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 12px; margin-top: 14px; }
.insight-item { background: rgba(218,242,255,0.06); border: 1px solid rgba(218,242,255,0.1); border-radius: 12px; padding: 16px 18px; }
.insight-item-light { background: var(--off-white); border: 1.5px solid var(--border); border-radius: 12px; padding: 16px 18px; }
.insight-val   { font-size: 22px; font-weight: 900; letter-spacing: -0.02em; margin-bottom: 5px; }
.val-green{color:#4ade80} .val-amber{color:#fbbf24} .val-blue{color:var(--blue-light)} .val-red{color:#f87171}
.val-blue-dark{color:var(--blue-deep)} .val-green-dark{color:#16a34a} .val-amber-dark{color:#d97706}
.insight-lbl   { font-size: 13px; color: rgba(218,242,255,0.5); line-height: 1.55; }
.insight-lbl-dark { font-size: 13px; color: var(--muted); line-height: 1.55; }

/* ── CTA BAND ── */
.cta-band { background: var(--blue-deep); padding: 80px 48px; text-align: center; position: relative; overflow: hidden; }
.cta-band::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at 50% 100%, rgba(243,235,211,0.1) 0%, transparent 65%); pointer-events: none; }
.cta-band h2 { font-size: clamp(28px, 4vw, 46px); font-weight: 900; color: #fff; letter-spacing: -0.02em; margin-bottom: 14px; position: relative; }
.cta-band h2 em { font-style: italic; color: var(--cream); }
.cta-band p  { font-size: 18px; color: rgba(218,242,255,0.85); font-weight: 300; margin-bottom: 36px; position: relative; }
.cta-band-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; position: relative; }

/* ── OTHER MODULES ── */
.other-modules { padding: 72px 48px; max-width: 1100px; margin: 0 auto; }
.other-modules h3 { font-size: 20px; font-weight: 800; margin-bottom: 22px; }
.other-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(190px, 1fr)); gap: 12px; }
.other-card {
  background: var(--off-white); border: 1.5px solid var(--border);
  border-radius: 12px; padding: 18px; text-decoration: none; display: block;
  transition: border-color .2s, background .2s, transform .2s;
}
.other-card:hover { border-color: var(--blue-mid); background: #eef5fc; transform: translateY(-2px); }
.other-emoji { font-size: 24px; margin-bottom: 8px; }
.other-name { font-size: 15px; font-weight: 700; color: var(--text); line-height: 1.4; }

/* ── TRUST BADGES ── */
.trust-strip { display: flex; align-items: center; gap: 32px; flex-wrap: wrap; }
.trust-badge {
  display: flex; align-items: center; gap: 12px;
  padding: 14px 20px; border-radius: 12px;
  background: var(--white); border: 1.5px solid var(--border);
}
.trust-badge-dark {
  display: flex; align-items: center; gap: 12px;
  padding: 14px 20px; border-radius: 12px;
  background: rgba(255,255,255,0.06); border: 1px solid rgba(218,242,255,0.14);
}
.tb-icon  { font-size: 28px; flex-shrink: 0; }
.tb-title { font-size: 15px; font-weight: 800; color: var(--text); margin-bottom: 2px; }
.tb-title-white { color: #fff; }
.tb-sub   { font-size: 13px; color: var(--muted); }
.tb-sub-white { color: rgba(218,242,255,0.8); font-size: 13px; }

/* ── FOOTER ── */
footer {
  background: #07101c; padding: 64px 48px 36px;
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px;
  max-width: 1100px; margin: 0 auto 48px;
}
.footer-brand-name { font-size: 22px; font-weight: 900; color: #fff; margin-bottom: 4px; }
.footer-brand-tag  { font-size: 12px; color: rgba(218,242,255,0.4); margin-bottom: 16px; letter-spacing: 0.04em; }
.footer-brand-desc {
    font-size: 15px;
    color: #8aacc8;
    line-height: 1.7;
    max-width: 280px;
}
.footer-col h4 {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #5a7a9a;
    margin-bottom: 16px;
}
.footer-col a {
    display: block;
    font-size: 15px;
    color: #7aaac8;
    text-decoration: none;
    margin-bottom: 10px;
    transition: color .2s;
}
.footer-col a:hover { color: var(--blue-light); }
.footer-bottom {
  border-top: 1px solid #0e1f30; padding-top: 24px;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 12px; max-width: 1100px; margin: 0 auto;
}
    .footer-bottom span {
        font-size: 13px;
        color: #5a7a9a;
    }
.footer-saral {
    font-size: 13px;
    color: #5a7a9a;
}
.footer-saral a { color: #2a4a6b; text-decoration: none; }
.footer-saral a:hover { color: var(--blue-light); }
.footer-social { display: flex; gap: 12px; }
.footer-social a {
  width: 36px; height: 36px; border-radius: 8px;
  background: #0e1f30; display: flex; align-items: center; justify-content: center;
  font-size: 16px; text-decoration: none; transition: background .2s;
}
.footer-social a:hover { background: var(--blue-deep); }

/* ── SCROLL REVEAL ── */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .6s ease, transform .6s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ── MOBILE ── */
@media (max-width: 900px) {
  nav { padding: 0 20px; }
  .nav-links { display: none; }
  .hero-wrap { padding: 100px 20px 60px; }
  .hero-stats { gap: 28px; }
  .sec, .sec-full, .sec-dark, .sec-alt, .sec-cream, .sec-blue { padding: 60px 20px; }
  .sec-full-inner { padding: 0; }
  .other-modules { padding: 52px 20px; }
  .cta-band { padding: 60px 20px; }
  footer { padding: 48px 20px 28px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .trust-strip { gap: 16px; }
}
@media (max-width: 520px) {
  .footer-grid { grid-template-columns: 1fr; }
  .two-col { grid-template-columns: 1fr; gap: 32px; }
}

@RenderSection("head", required: false) </head> <body> <style>

.has-dropdown {
    position: relative;
}

.has-dropdown .nav-dropdown {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 9999;
    padding-top: 8px;
}

.has-dropdown:hover .nav-dropdown {
    display: block;
}

.has-dropdown::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 100%;
    height: 8px;
}

.nav-item.dropdown:hover .dropdown-menu {
    display: block;
    margin-top: 0;
    padding-top: 8px;
}

