/* Make A Referral Week — makeareferralweek.com
   Growth-marketing blog aesthetic. Bold orange accent. White background.
   Font: Inter. Energetic, tactical, conversion-focused. */

:root {
  --bg: #ffffff;
  --bg-soft: #FFF7ED;
  --bg-card: #FFFBF5;
  --bg-alt: #FFF9F2;
  --ink: #0F172A;
  --ink-soft: #334155;
  --muted: #64748B;
  --rule: #E2E8F0;
  --rule-strong: #CBD5E1;
  --accent: #F97316;
  --accent-dark: #EA580C;
  --accent-soft: #FFEDD5;
  --good: #16A34A;
  --warn: #D97706;
  --bad: #DC2626;
  --pink: #EC4899;
  --max: 1140px;
}

* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; background: var(--bg); }
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 17px;
  line-height: 1.6;
  font-feature-settings: 'cv11', 'ss01';
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; }
a { color: var(--accent); text-decoration: underline; text-underline-offset: 3px; text-decoration-thickness: 1.5px; }
a:hover { color: var(--accent-dark); }
h1, h2, h3, h4 {
  font-family: 'Inter', sans-serif;
  color: var(--ink);
  letter-spacing: -0.02em;
  margin: 1.4em 0 .5em;
  font-weight: 800;
}
h1 { font-size: 56px; line-height: 1.04; letter-spacing: -0.035em; font-weight: 900; margin-top: 0; }
h2 { font-size: 32px; line-height: 1.18; margin-top: 1.6em; letter-spacing: -0.025em; }
h3 { font-size: 22px; line-height: 1.32; font-weight: 700; }
h4 { font-size: 17px; line-height: 1.35; font-weight: 700; }
p { margin: 0 0 1.1em; color: var(--ink-soft); font-size: 17px; }
p strong { color: var(--ink); font-weight: 700; }
ul, ol { color: var(--ink-soft); }
li { margin-bottom: 6px; }
@media (max-width: 760px) {
  h1 { font-size: 36px; }
  h2 { font-size: 24px; }
  body { font-size: 16px; }
}

.container { max-width: var(--max); margin: 0 auto; padding: 0 24px; }
.container.narrow { max-width: 820px; }

/* ============== HEADER ============== */
.site-header {
  border-bottom: 1px solid var(--rule);
  background: rgba(255,255,255,.92);
  backdrop-filter: saturate(180%) blur(8px);
  position: sticky;
  top: 0;
  z-index: 50;
}
.site-header .container { display: flex; align-items: center; justify-content: space-between; padding-top: 18px; padding-bottom: 18px; }
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: inherit;
}
.brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: var(--accent);
  color: white;
  border-radius: 8px;
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(249, 115, 22, .25);
}
.brand-mark svg { display: block; }
.brand-words {
  display: inline-flex;
  flex-direction: column;
  line-height: 1.05;
  min-width: 0;
}
.brand-name {
  font-weight: 800;
  font-size: 17px;
  color: var(--ink);
  letter-spacing: -0.015em;
  white-space: nowrap;
}
.brand-tag {
  font-size: 10px;
  color: var(--muted);
  letter-spacing: 0.14em;
  margin-top: 3px;
  white-space: nowrap;
  font-weight: 600;
}
@media (max-width: 480px) {
  .brand-tag { display: none; }
  .brand-mark { width: 32px; height: 32px; }
  .brand-mark svg { width: 18px; height: 18px; }
}
.nav { display: flex; align-items: center; gap: 26px; }
.nav a { color: var(--ink); text-decoration: none; font-size: 14px; font-weight: 600; }
.nav a:hover { color: var(--accent); }
.nav .btn-sm { background: var(--accent); color: white; padding: 9px 16px; border-radius: 8px; font-weight: 700; box-shadow: 0 2px 8px rgba(249, 115, 22, .25); }
.nav .btn-sm:hover { background: var(--accent-dark); color: white; box-shadow: 0 4px 14px rgba(249, 115, 22, .35); }
@media (max-width: 700px) {
  .nav a:not(.btn-sm) { display: none; }
}

/* ============== HERO ============== */
.hero {
  padding: 80px 0 64px;
  background: linear-gradient(180deg, var(--bg-soft) 0%, var(--bg) 100%);
  border-bottom: 1px solid var(--rule);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, var(--accent-soft) 0%, transparent 70%);
  opacity: .6;
  z-index: 0;
}
.hero .container { position: relative; z-index: 1; max-width: 980px; }
.hero .eyebrow {
  display: inline-block;
  font-size: 13px;
  color: var(--accent-dark);
  margin-bottom: 22px;
  padding: 6px 14px;
  background: var(--accent-soft);
  border-radius: 999px;
  font-weight: 700;
  letter-spacing: 0.02em;
}
.hero h1 { max-width: 880px; margin-bottom: 24px; }
.hero .lede { font-size: 21px; line-height: 1.5; max-width: 760px; color: var(--ink-soft); margin-bottom: 32px; font-weight: 400; }
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 40px; }

.hero .stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 20px;
  margin-top: 24px;
  padding-top: 32px;
  border-top: 1px solid var(--rule);
}
.hero .stats > div { display: flex; flex-direction: column; gap: 6px; }
.hero .stats .num {
  font-size: 38px;
  font-weight: 900;
  letter-spacing: -0.03em;
  color: var(--accent);
  line-height: 1;
}
.hero .stats .label { font-size: 13px; color: var(--muted); font-weight: 500; }

/* ============== BUTTONS ============== */
.btn {
  display: inline-block;
  padding: 13px 26px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform .12s ease, box-shadow .15s ease, background .15s ease;
}
.btn:hover { text-decoration: none; transform: translateY(-1px); }
.btn-primary {
  background: var(--accent);
  color: white;
  box-shadow: 0 4px 14px rgba(249, 115, 22, .3);
}
.btn-primary:hover { background: var(--accent-dark); color: white; box-shadow: 0 6px 20px rgba(249, 115, 22, .4); }
.btn-ghost {
  background: white;
  color: var(--ink);
  border-color: var(--rule-strong);
}
.btn-ghost:hover { background: var(--ink); color: white; border-color: var(--ink); }
.btn-lg { padding: 16px 36px; font-size: 17px; border-radius: 12px; }
.btn-sm { padding: 8px 16px; font-size: 13px; }

/* ============== SECTIONS ============== */
.section { padding: 72px 0; border-bottom: 1px solid var(--rule); }
.section.alt { background: var(--bg-alt); }
.section h2 { margin-top: 0; }
.kicker {
  display: inline-block;
  font-size: 13px;
  color: var(--accent);
  margin-bottom: 10px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* ============== BIG QUOTE ============== */
.big-quote {
  margin: 32px 0;
  padding: 28px 32px 28px 32px;
  font-size: 22px;
  line-height: 1.45;
  font-weight: 600;
  color: var(--ink);
  border-left: 5px solid var(--accent);
  background: var(--bg-soft);
  border-radius: 0 12px 12px 0;
  letter-spacing: -0.015em;
  font-style: normal;
}
@media (max-width: 600px) {
  .big-quote { font-size: 18px; padding: 20px 22px; }
}

/* ============== STAT CALLOUT ============== */
.stat-callout {
  display: flex;
  align-items: center;
  gap: 28px;
  margin: 36px 0;
  padding: 28px 32px;
  background: linear-gradient(135deg, var(--accent) 0%, #FB923C 100%);
  color: white;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(249, 115, 22, .25);
}
.stat-callout .stat-num {
  font-size: 64px;
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1;
  flex-shrink: 0;
}
.stat-callout .stat-text {
  font-size: 17px;
  line-height: 1.4;
  font-weight: 500;
  color: rgba(255,255,255,.95);
}
@media (max-width: 600px) {
  .stat-callout { flex-direction: column; text-align: center; gap: 14px; padding: 24px; }
  .stat-callout .stat-num { font-size: 48px; }
}

/* ============== BIG LIST ============== */
.big-list {
  list-style: none;
  padding: 0;
  margin: 24px 0;
}
.big-list li {
  position: relative;
  padding: 14px 16px 14px 50px;
  margin-bottom: 10px;
  background: var(--bg-card);
  border: 1px solid var(--rule);
  border-radius: 10px;
  font-size: 16px;
  color: var(--ink);
}
.big-list li::before {
  content: '';
  position: absolute;
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--accent);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 18 18'%3E%3Cpath fill='none' stroke='white' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round' d='M4 9l3.5 3.5L14 6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
}

/* ============== COST TABLE ============== */
.cost-table {
  margin: 28px 0;
  border: 1px solid var(--rule);
  border-radius: 12px;
  overflow: hidden;
  background: white;
}
.cost-row {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr 1fr;
  padding: 16px 20px;
  border-bottom: 1px solid var(--rule);
  font-size: 15px;
  align-items: center;
}
.cost-row:last-child { border-bottom: none; }
.cost-row.head {
  background: var(--ink);
  color: white;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.cost-row.head span { color: white; }
.cost-row.best { background: var(--accent-soft); border-left: 4px solid var(--accent); }
.cost-row .highlight { color: var(--accent-dark); font-weight: 800; font-size: 17px; }
.cost-table.small .cost-row { grid-template-columns: 1.4fr .6fr 2fr; font-size: 14px; }
@media (max-width: 700px) {
  .cost-row { grid-template-columns: 1fr 1fr; gap: 6px; padding: 12px; font-size: 13px; }
  .cost-row.head { display: none; }
  .cost-table.small .cost-row { grid-template-columns: 1fr 1fr; }
}

/* ============== RANK CARDS (homepage) ============== */
.rank-card {
  background: white;
  border: 1px solid var(--rule);
  border-radius: 16px;
  padding: 28px;
  margin-bottom: 18px;
  transition: transform .15s ease, box-shadow .15s ease;
}
.rank-card:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(15, 23, 42, .08); }
.rank-card.top-pick {
  border: 2px solid var(--accent);
  background: linear-gradient(180deg, var(--accent-soft) 0%, white 30%);
}
.rank-head {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 12px;
}
.rank-num {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: var(--ink);
  color: white;
  border-radius: 10px;
  font-size: 20px;
  font-weight: 800;
  flex-shrink: 0;
}
.rank-card.top-pick .rank-num { background: var(--accent); }
.rank-head h3 { margin: 0; font-size: 24px; }
.rank-tag {
  display: inline-block;
  margin-top: 4px;
  padding: 3px 10px;
  background: var(--accent);
  color: white;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.rank-score {
  margin-left: auto;
  font-size: 28px;
  font-weight: 900;
  color: var(--accent);
  letter-spacing: -0.02em;
  flex-shrink: 0;
}
.rank-card .verdict { font-style: italic; color: var(--ink); font-size: 17px; font-weight: 600; margin: 8px 0 14px; }
.rank-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px dashed var(--rule);
}
.rank-stats > div {
  display: flex;
  flex-direction: column;
  font-size: 12px;
  color: var(--muted);
  font-weight: 500;
}
.rank-stats strong {
  color: var(--accent);
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 2px;
}
@media (max-width: 600px) {
  .rank-head { flex-wrap: wrap; }
  .rank-score { width: 100%; text-align: right; margin-left: 0; }
}

/* ============== TLDR + CTA blocks ============== */
.tldr {
  background: var(--bg-card);
  border: 1px solid var(--rule);
  border-left: 4px solid var(--accent);
  padding: 22px 26px;
  margin: 32px 0;
  border-radius: 0 12px 12px 0;
}
.tldr h4 {
  font-size: 12px;
  color: var(--accent);
  margin: 0 0 12px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.tldr ul { margin: 0; padding-left: 22px; }
.tldr li { margin-bottom: 6px; font-size: 16px; color: var(--ink); }
.tldr .overall {
  margin-top: 14px;
  font-weight: 800;
  font-size: 17px;
  color: var(--accent);
}

.tldr-cta { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; margin: 0 0 28px; }
.tldr-cta .subtext { font-size: 13px; color: var(--muted); margin: 0; }

.tldr-crosslink {
  margin: 0 0 28px;
  padding: 16px 20px;
  background: var(--bg-soft);
  border-left: 4px solid var(--accent);
  border-radius: 0 10px 10px 0;
  font-size: 15px;
  line-height: 1.55;
  color: var(--ink);
}
.tldr-crosslink p { margin: 0; }
.tldr-crosslink strong { color: var(--ink); font-weight: 700; }
.tldr-crosslink a { color: var(--accent); font-weight: 700; }

.cta-card {
  background: white;
  border: 2px solid var(--accent);
  padding: 28px 32px;
  margin: 40px 0;
  border-radius: 16px;
  text-align: left;
  box-shadow: 0 8px 24px rgba(249, 115, 22, .12);
}
.cta-card h4 {
  font-size: 20px;
  font-weight: 800;
  margin: 0 0 10px;
  color: var(--ink);
  letter-spacing: -0.015em;
}
.cta-card p { margin: 0 0 16px; }
.cta-card .btn { margin: 0; }
.cta-card .subtext { margin-top: 12px; font-size: 13px; color: var(--muted); margin-bottom: 0; }

/* ============== PRICING + PROS/CONS ============== */
.pricing-list { list-style: none; padding: 0; margin: 16px 0; }
.pricing-list li {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
  padding: 14px 16px;
  border-bottom: 1px solid var(--rule);
  font-size: 15px;
  background: var(--bg-card);
  margin-bottom: 6px;
  border-radius: 8px;
  border: 1px solid var(--rule);
}
.pricing-list .plan { color: var(--ink); font-weight: 600; }
.pricing-list .price { color: var(--accent-dark); font-weight: 800; }

.proscons { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin: 24px 0; }
.proscons > div {
  padding: 22px 24px;
  border-radius: 12px;
  border: 1px solid var(--rule);
}
.proscons .pros { background: #F0FDF4; border-color: #BBF7D0; }
.proscons .cons { background: #FEF3F2; border-color: #FECACA; }
.proscons ul { padding-left: 20px; margin: 8px 0 0; }
.proscons li { margin-bottom: 6px; font-size: 15px; color: var(--ink); }
.proscons .pros h4 { color: var(--good); margin-top: 0; font-size: 15px; letter-spacing: 0.02em; text-transform: uppercase; }
.proscons .cons h4 { color: var(--bad); margin-top: 0; font-size: 15px; letter-spacing: 0.02em; text-transform: uppercase; }
@media (max-width: 600px) { .proscons { grid-template-columns: 1fr; } }

/* ============== BREADCRUMB / BYLINE ============== */
.breadcrumb {
  font-size: 13px;
  color: var(--muted);
  padding-top: 16px;
  padding-bottom: 16px;
  font-weight: 500;
}
.breadcrumb a { color: var(--muted); text-decoration: none; }
.breadcrumb a:hover { color: var(--accent); }

.byline {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 0;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  font-size: 14px;
  color: var(--muted);
  margin: 24px 0 32px;
}
.byline > img.byline-avatar { display: block; }
.byline-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  flex-shrink: 0;
  border: 2px solid var(--accent);
}
.byline strong { color: var(--ink); font-weight: 700; }
.byline .meta-line { display: flex; gap: 10px; flex-wrap: wrap; align-items: baseline; }
.byline .sep { color: var(--rule-strong); }

/* ============== AUTHOR BLOCK + TOOLTIP ============== */
.author-block {
  background: var(--bg-card);
  padding: 28px;
  display: flex;
  gap: 22px;
  align-items: flex-start;
  margin: 32px 0;
  border-radius: 14px;
  border-left: 4px solid var(--accent);
}
.author-block img {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: block;
  flex-shrink: 0;
  border: 2px solid var(--accent);
}
.author-block h3 { margin: 0 0 6px; font-size: 22px; }
.author-block p { margin: 0 0 8px; font-size: 15px; }
.author-block .role {
  font-size: 12px;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 700;
}
@media (max-width: 600px) { .author-block { flex-direction: column; } }

.author-mention { position: relative; display: inline-block; }
.author-name {
  cursor: help;
  border-bottom: 1px dotted var(--accent);
  font-weight: 700;
  color: var(--ink);
  text-decoration: none;
  outline: none;
}
.author-name:hover, .author-name:focus { color: var(--accent); }
.author-card {
  position: absolute; left: 0; top: calc(100% + 6px); z-index: 30;
  width: 320px; max-width: calc(100vw - 32px);
  background: white; border: 1px solid var(--rule);
  border-left: 4px solid var(--accent);
  padding: 14px 16px;
  border-radius: 10px;
  box-shadow: 0 8px 24px rgba(15, 23, 42, .12);
  font-size: 13px; line-height: 1.55; color: var(--ink-soft);
  opacity: 0; visibility: hidden; transform: translateY(-4px);
  transition: opacity .15s ease, transform .15s ease, visibility .15s;
  pointer-events: none; white-space: normal;
}
.author-card strong { display: block; color: var(--ink); font-size: 14px; margin-bottom: 4px; }
.author-mention:hover .author-card,
.author-name:focus ~ .author-card,
.author-card:hover { opacity: 1; visibility: visible; transform: translateY(0); pointer-events: auto; }

/* ============== FAQ ============== */
.faq-item {
  border-bottom: 1px solid var(--rule);
  padding: 20px 0;
}
.faq-item summary {
  cursor: pointer;
  font-weight: 700;
  font-size: 18px;
  color: var(--ink);
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  color: var(--accent);
  font-size: 24px;
  line-height: 1;
  flex-shrink: 0;
  font-weight: 600;
}
.faq-item[open] summary::after { content: '−'; }
.faq-item .answer { padding-top: 14px; }
.faq-item .answer p { color: var(--ink-soft); }

/* ============== FOOTER ============== */
.site-footer {
  background: var(--ink);
  color: #94A3B8;
  padding: 56px 0 24px;
  margin-top: 0;
}
.site-footer h4 {
  color: white;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 14px;
  font-weight: 700;
}
.site-footer p { color: #94A3B8; font-size: 14px; }
.site-footer a { color: #CBD5E1; text-decoration: none; font-size: 14px; }
.site-footer a:hover { color: var(--accent); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 40px; margin-bottom: 32px; }
.footer-grid ul { list-style: none; padding: 0; margin: 0; }
.footer-grid li { margin-bottom: 8px; }
@media (max-width: 760px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
.disclosure {
  border-top: 1px solid #1E293B;
  padding-top: 20px;
  font-size: 13px;
  color: #64748B;
  line-height: 1.6;
}
.disclosure a { color: #94A3B8; text-decoration: underline; text-underline-offset: 2px; }
.disclosure a:hover { color: var(--accent); }
.disclosure strong { color: #CBD5E1; }

.divider { border: none; border-top: 1px solid var(--rule); margin: 36px 0; }
.muted { color: var(--muted); font-size: 14px; }

.lede {
  font-size: 19px;
  color: var(--ink-soft);
  line-height: 1.5;
  margin-bottom: 24px;
}

/* references footer */
.references { font-size: 14px; }
.references a { color: var(--ink-soft); }
.references a:hover { color: var(--accent); }

/* === Reviews dropdown === */
.nav-dropdown { position: relative; }
.nav-dropdown > .dropdown-trigger {
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  text-decoration: none;
  /* font-family, font-size, font-weight, text-transform, letter-spacing,
     color all inherit from the sibling nav <a> rule so the trigger matches
     the rest of the nav. */
}
.nav-dropdown > .dropdown-trigger::after {
  content: "\25BE";
  font-size: 0.72em;
  margin-left: 3px;
  opacity: 0.6;
  color: currentColor;
  transition: opacity .15s ease, color .15s ease;
}
.nav-dropdown:hover > .dropdown-trigger,
.nav-dropdown:focus-within > .dropdown-trigger,
.nav-dropdown > .dropdown-trigger:hover { color: var(--accent); }
.nav-dropdown:hover > .dropdown-trigger::after,
.nav-dropdown:focus-within > .dropdown-trigger::after { color: var(--accent); }

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%) translateY(-4px);
  background: var(--bg-card);
  border: 1px solid var(--rule);
  border-radius: 8px;
  box-shadow: 0 12px 28px rgba(249, 115, 22, .12);
  min-width: 260px;
  padding: 8px 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity .15s ease, transform .15s ease, visibility .15s;
  z-index: 60;
}
.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.nav-dropdown-menu a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 16px;
  font-size: 14px;
  color: var(--ink);
  text-decoration: none;
  font-weight: 600;
}
.nav-dropdown-menu a:hover {
  background: var(--bg-soft);
  color: var(--accent);
}
.nav-dropdown-menu .pick-tag {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fff;
  background: var(--accent);
  padding: 2px 8px;
  border-radius: 4px;
  margin-left: 12px;
}
@media (max-width: 760px) {
  .nav { flex-wrap: wrap; gap: 12px; }
  .nav-dropdown-menu { min-width: 220px; }
}
