/* ═══════════════════════════════════════════════
   ALLTOOGETHER  - SHARED STYLES
   Design system: Neo-brutalist, Montserrat 900
═══════════════════════════════════════════════ */

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

:root {
  --pink:      #f62aa0;
  --green:     #5eb229;
  --orange:    #ff6701;
  --blue:      #00a5e9;
  --black:     #0a0a0a;
  --white:     #ffffff;
  --off-white: #fafafa;
}

html { scroll-behavior: smooth; overflow-x: hidden; }
body {
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  color: var(--black);
  background: var(--white);
}

/* ── NAV ─────────────────────────────────────── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 40px; height: 68px;
  background: var(--white); border-bottom: 3px solid var(--black);
}
.logo {
  display: flex; align-items: center;
  text-decoration: none; line-height: 1;
}
.nav-logo {
  font-weight: 900;
  font-size: 16px;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--black, #0a0a0a);
  letter-spacing: 0.02em;
}
.nav-links { display: flex; align-items: center; gap: 28px; list-style: none; }
.nav-links a {
  font-size: 11px; font-weight: 700; letter-spacing: 0.06em;
  text-transform: uppercase; color: var(--black);
  text-decoration: none; transition: color 0.15s; white-space: nowrap;
}
.nav-links a:hover,
.nav-links a.active { color: var(--pink); }
.nav-cta {
  display: inline-flex; align-items: center;
  background: var(--pink); color: var(--white);
  font-family: 'Montserrat', sans-serif; font-weight: 900;
  font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase;
  padding: 12px 20px; border: 3px solid var(--black);
  box-shadow: 4px 4px 0 var(--black); text-decoration: none;
  transition: box-shadow 0.12s, transform 0.12s; white-space: nowrap;
}
.nav-cta:hover { box-shadow: 1px 1px 0 var(--black); transform: translate(3px, 3px); }

.nav-hamburger {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; padding: 4px; background: none; border: none;
}
.nav-hamburger span { display: block; width: 22px; height: 2px; background: var(--black); }

/* Mobile nav */
.mobile-nav {
  display: none; position: fixed; top: 68px; left: 0; right: 0;
  background: var(--white); border-bottom: 3px solid var(--black);
  z-index: 199; flex-direction: column;
}
.mobile-nav a {
  padding: 16px 24px; font-weight: 900; font-size: 12px;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--black); text-decoration: none;
  border-bottom: 1px solid rgba(0,0,0,0.08); display: block;
}
.mobile-nav a:hover { color: var(--pink); }
.mobile-nav.open { display: flex; }

/* Page wrapper  - offset for fixed nav */
.page-body { padding-top: 68px; }

/* ── BUTTONS ─────────────────────────────────── */
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--pink); color: var(--white);
  font-family: 'Montserrat', sans-serif; font-weight: 900;
  font-size: 13px; letter-spacing: 0.06em; text-transform: uppercase;
  padding: 16px 32px; text-decoration: none;
  border: 3px solid var(--black); box-shadow: 5px 5px 0 var(--black);
  cursor: pointer; transition: box-shadow 0.12s, transform 0.12s;
}
.btn-primary:hover { box-shadow: 2px 2px 0 var(--black); transform: translate(3px, 3px); }

.btn-secondary {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent; color: var(--black);
  font-family: 'Montserrat', sans-serif; font-weight: 900;
  font-size: 13px; letter-spacing: 0.06em; text-transform: uppercase;
  padding: 16px 32px; text-decoration: none;
  border: 3px solid var(--black); box-shadow: 5px 5px 0 var(--black);
  cursor: pointer; transition: box-shadow 0.12s, transform 0.12s;
}
.btn-secondary:hover { box-shadow: 2px 2px 0 var(--black); transform: translate(3px, 3px); }

.btn-white {
  background: var(--white); color: var(--black);
  border-color: var(--white); box-shadow: 5px 5px 0 rgba(255,255,255,0.25);
}
.btn-white:hover { box-shadow: 2px 2px 0 rgba(255,255,255,0.25); }

.btn-sm { padding: 10px 20px; font-size: 11px; box-shadow: 3px 3px 0 var(--black); }
.btn-sm:hover { box-shadow: 1px 1px 0 var(--black); transform: translate(2px, 2px); }

/* ── EYEBROW ─────────────────────────────────── */
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px; margin-bottom: 20px;
}
.eyebrow-dot { width: 10px; height: 10px; border-radius: 50%; flex-shrink: 0; }
.eyebrow span { font-weight: 900; font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; }
.dot-pink   { background: var(--pink);   } .eyebrow.pink   span { color: var(--pink);   }
.dot-green  { background: var(--green);  } .eyebrow.green  span { color: var(--green);  }
.dot-orange { background: var(--orange); } .eyebrow.orange span { color: var(--orange); }
.dot-blue   { background: var(--blue);   } .eyebrow.blue   span { color: var(--blue);   }
.eyebrow.white span { color: rgba(255,255,255,0.6); }
.eyebrow.white .eyebrow-dot { background: rgba(255,255,255,0.4); }

/* ── SHARED HEADLINE ─────────────────────────── */
.sh {
  font-weight: 900;
  font-size: clamp(36px, 4.5vw, 60px);
  line-height: 0.92; letter-spacing: -0.04em;
  text-transform: uppercase; color: var(--black); margin-bottom: 24px;
}
.sh em { font-style: normal; color: var(--pink); }
.sh.on-dark { color: var(--white); }

/* ── SECTION SPACING ─────────────────────────── */
.sp { padding: 100px 60px; border-bottom: 3px solid var(--black); }
.mx { max-width: 1200px; margin: 0 auto; }

/* ── TICKER ──────────────────────────────────── */
.ticker {
  background: var(--black); border-bottom: 3px solid var(--black);
  overflow: hidden; padding: 14px 0;
}
.ticker-inner {
  display: flex; animation: ticker 32s linear infinite; white-space: nowrap;
}
.ticker-inner:hover { animation-play-state: paused; }
.ticker-item {
  display: inline-flex; align-items: center; gap: 16px; padding: 0 32px;
  font-weight: 900; font-size: 12px; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--white); flex-shrink: 0;
}
.ticker-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--pink); flex-shrink: 0; }
@keyframes ticker { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ── STATS STRIP ─────────────────────────────── */
.stats-strip {
  background: var(--black); border-bottom: 3px solid var(--black);
  display: grid; grid-template-columns: repeat(4, 1fr);
}
.stat-item {
  padding: 60px 40px; border-right: 3px solid rgba(255,255,255,0.08);
  text-align: center; transition: background 0.2s;
}
.stat-item:last-child { border-right: none; }
.stat-item:hover { background: rgba(246,42,160,0.07); }
.stat-number {
  font-weight: 900; font-size: clamp(44px, 5vw, 64px);
  line-height: 1; color: var(--pink); letter-spacing: -0.04em; margin-bottom: 12px;
}
.stat-label { font-weight: 500; font-size: 13px; line-height: 1.5; color: rgba(255,255,255,0.6); }

/* ── FINAL CTA ───────────────────────────────── */
.final-cta {
  background: var(--black); padding: 120px 60px; text-align: center;
}
.final-eyebrow {
  display: inline-flex; align-items: center; gap: 10px; margin-bottom: 32px;
}
.final-eyebrow span {
  font-weight: 900; font-size: 11px; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--pink);
}
.final-eyebrow::before, .final-eyebrow::after {
  content: ''; display: block; width: 32px; height: 2px; background: var(--pink);
}
.final-headline {
  font-weight: 900; font-size: clamp(44px, 6vw, 82px);
  line-height: 0.88; letter-spacing: -0.05em;
  text-transform: uppercase; color: var(--white); margin-bottom: 28px;
}
.final-headline em { font-style: normal; color: var(--pink); }
.final-body {
  font-weight: 500; font-size: 16px; color: rgba(255,255,255,0.6);
  max-width: 560px; margin: 0 auto 48px; line-height: 1.65;
}
.final-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ── NEWSLETTER ──────────────────────────────── */
.newsletter {
  background: var(--off-white, #fafafa); padding: 64px 60px;
  border-top: 3px solid var(--black, #0a0a0a); border-bottom: 3px solid var(--black, #0a0a0a);
}
.newsletter-inner {
  max-width: 680px; margin: 0 auto; text-align: center;
}
.newsletter-tag {
  display: inline-block; font-weight: 900; font-size: 10px;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--pink, #f62aa0); margin-bottom: 12px;
}
.newsletter-headline {
  font-weight: 900; font-size: 28px; letter-spacing: -0.02em;
  text-transform: uppercase; color: var(--black, #0a0a0a); margin-bottom: 12px;
}
.newsletter-body {
  font-weight: 500; font-size: 14px; line-height: 1.7;
  color: rgba(0,0,0,0.55); margin-bottom: 28px; max-width: 500px; margin-left: auto; margin-right: auto;
}
.newsletter-form {
  display: flex; gap: 0; max-width: 480px; margin: 0 auto;
}
.newsletter-input {
  flex: 1; padding: 14px 16px; font-family: 'Montserrat', sans-serif;
  font-size: 13px; font-weight: 500; border: 3px solid var(--black, #0a0a0a);
  border-right: none; outline: none; background: var(--white, #ffffff);
}
.newsletter-input::placeholder { color: rgba(0,0,0,0.3); }
.newsletter-input:focus { box-shadow: inset 0 0 0 1px var(--pink, #f62aa0); }
.newsletter-btn {
  padding: 14px 24px; font-family: 'Montserrat', sans-serif;
  font-weight: 900; font-size: 11px; letter-spacing: 0.08em;
  text-transform: uppercase; background: var(--black, #0a0a0a);
  color: var(--white, #ffffff); border: 3px solid var(--black, #0a0a0a);
  cursor: pointer; transition: background 0.15s, color 0.15s; white-space: nowrap;
}
.newsletter-btn:hover { background: var(--pink, #f62aa0); }
.newsletter-btn:disabled { opacity: 0.6; cursor: not-allowed; }
.newsletter-msg {
  margin-top: 12px; font-size: 12px; font-weight: 600;
  letter-spacing: 0.04em; text-transform: uppercase;
}
.newsletter-msg.success { color: var(--green, #5eb229); }
.newsletter-msg.error { color: var(--orange, #ff6701); }
.newsletter-note {
  margin-top: 16px; font-size: 11px; color: rgba(0,0,0,0.35);
}
.newsletter-note a { color: var(--pink, #f62aa0); text-decoration: none; }
.newsletter-note a:hover { text-decoration: underline; }

@media (max-width: 600px) {
  .newsletter { padding: 48px 24px; }
  .newsletter-headline { font-size: 22px; }
  .newsletter-form { flex-direction: column; }
  .newsletter-input { border-right: 3px solid var(--black, #0a0a0a); border-bottom: none; }
  .newsletter-btn { width: 100%; }
}

/* ── FOOTER ──────────────────────────────────── */
footer {
  background: var(--black); padding: 48px 60px;
  display: flex; justify-content: space-between; align-items: center;
  border-top: 3px solid var(--pink);
}
.footer-logo {
  display: flex; align-items: center;
  font-family: 'Montserrat', sans-serif; font-weight: 900;
  font-size: 20px; letter-spacing: -0.04em; color: var(--white); text-decoration: none;
}
.footer-logo { text-decoration: none; display: flex; align-items: center; }
.footer-text { font-weight: 500; font-size: 12px; color: rgba(255,255,255,0.35); text-align: center; }
.footer-links { display: flex; gap: 24px; }
.footer-links a {
  font-weight: 700; font-size: 11px; letter-spacing: 0.08em;
  text-transform: uppercase; color: rgba(255,255,255,0.4);
  text-decoration: none; transition: color 0.15s;
}
.footer-links a:hover { color: var(--pink); }

/* ── FORMS ───────────────────────────────────── */
.form-label {
  display: block; font-weight: 900; font-size: 10px;
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--black); margin-bottom: 6px;
}
.form-field { margin-bottom: 16px; }
.form-input {
  width: 100%; border: 2px solid var(--black);
  padding: 13px 16px; font-family: 'Montserrat', sans-serif;
  font-size: 14px; font-weight: 500; color: var(--black);
  background: var(--white); outline: none; transition: border-color 0.15s;
}
.form-input:focus { border-color: var(--pink); }
.form-input::placeholder { color: #bbb; }
.form-submit {
  width: 100%; background: var(--pink); color: var(--white);
  font-family: 'Montserrat', sans-serif; font-weight: 900;
  font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase;
  border: 3px solid var(--black); box-shadow: 4px 4px 0 var(--black);
  padding: 16px; cursor: pointer; margin-top: 8px;
  transition: box-shadow 0.12s, transform 0.12s;
}
.form-submit:hover { box-shadow: 1px 1px 0 var(--black); transform: translate(3px, 3px); }
.form-note { font-size: 11px; font-weight: 500; color: #aaa; margin-top: 14px; text-align: center; }

/* ── HERO (split  - used by home + subpages) ──── */
.hero {
  display: grid; grid-template-columns: 1fr 1fr;
  min-height: calc(100vh - 68px); border-bottom: 3px solid var(--black);
}
.hero-left {
  padding: 80px 60px; display: flex; flex-direction: column;
  justify-content: center; border-right: 3px solid var(--black);
}
.hero-eyebrow {
  font-weight: 900; font-size: 11px; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--pink);
  display: flex; align-items: center; gap: 10px; margin-bottom: 28px;
}
.hero-eyebrow::before {
  content: ''; width: 10px; height: 10px; border-radius: 50%;
  background: var(--pink); display: block; flex-shrink: 0;
}
.hero-headline {
  font-weight: 900; font-size: clamp(48px, 6.5vw, 84px);
  line-height: 0.88; letter-spacing: -0.05em;
  text-transform: uppercase; color: var(--black); margin-bottom: 28px;
}
.hero-headline em { font-style: normal; color: var(--pink); }
.hero-body {
  font-weight: 500; font-size: 17px; line-height: 1.65;
  color: #444; max-width: 520px; margin-bottom: 40px;
}
.hero-body strong { color: var(--black); font-weight: 900; }
.hero-actions { display: flex; gap: 16px; align-items: center; flex-wrap: wrap; }

.hero-right {
  background: var(--pink); display: flex; flex-direction: column;
  justify-content: center; align-items: flex-start;
  padding: 80px 60px; position: relative; overflow: hidden;
}
.hero-right::before {
  content: ''; position: absolute; top: -60px; right: -60px;
  width: 360px; height: 360px; border-radius: 50%;
  background: rgba(255,255,255,0.08);
}
.hero-right::after {
  content: ''; position: absolute; bottom: -80px; right: 40px;
  width: 240px; height: 240px; border-radius: 50%;
  background: rgba(255,255,255,0.06);
}
.hero-right-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.15); border: 2px solid rgba(255,255,255,0.3);
  padding: 8px 16px; margin-bottom: 28px; position: relative; z-index: 1;
}
.hero-right-badge span { font-weight: 900; font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--white); }
.hero-right-badge-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--white); flex-shrink: 0; }
.hero-right-headline {
  font-weight: 900; font-size: clamp(24px, 3vw, 40px);
  line-height: 1.05; letter-spacing: -0.04em;
  text-transform: uppercase; color: var(--white); margin-bottom: 32px;
  position: relative; z-index: 1;
}
.hero-right-headline em { font-style: normal; color: rgba(255,255,255,0.45); }

/* Compare widget used on homepage hero */
.hero-compare { display: flex; flex-direction: column; gap: 0; position: relative; z-index: 1; width: 100%; }
.hero-compare-label {
  font-weight: 900; font-size: 10px; letter-spacing: 0.12em;
  text-transform: uppercase; color: rgba(255,255,255,0.5);
  margin-bottom: 10px; margin-top: 20px;
}
.hero-compare-row {
  display: flex; align-items: flex-start; gap: 14px; padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.15);
}
.hero-compare-row:first-of-type { border-top: 1px solid rgba(255,255,255,0.15); }
.hero-compare-icon {
  width: 22px; height: 22px; display: flex; align-items: center;
  justify-content: center; flex-shrink: 0; font-size: 12px;
  font-weight: 900; margin-top: 1px;
}
.hero-compare-icon.yes { background: rgba(255,255,255,0.2); color: var(--white); }
.hero-compare-icon.no  { background: rgba(0,0,0,0.2); color: rgba(255,255,255,0.35); }
.hero-compare-text { font-weight: 700; font-size: 13px; color: var(--white); line-height: 1.4; }
.hero-compare-text.faded { color: rgba(255,255,255,0.45); text-decoration: line-through; }

/* ── DARK SECTION (reused) ───────────────────── */
.dark-section { background: var(--black); }
.dark-body {
  font-weight: 500; font-size: 17px; line-height: 1.7;
  color: rgba(255,255,255,0.65); margin-bottom: 28px;
}
.dark-body strong { color: var(--white); font-weight: 900; }

/* ── CARD BASE ───────────────────────────────── */
.card-base {
  background: var(--white); border: 3px solid var(--black);
  box-shadow: 8px 8px 0 var(--black); padding: 48px;
}

/* ── TESTIMONIAL CARDS ───────────────────────── */
.proof-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  border: 3px solid var(--black); margin-top: 60px;
}
.proof-card {
  padding: 48px 40px; border-right: 3px solid var(--black);
  display: flex; flex-direction: column;
}
.proof-card:last-child { border-right: none; }
.proof-card:nth-child(1) { border-top: 5px solid var(--pink); }
.proof-card:nth-child(2) { border-top: 5px solid var(--blue); }
.proof-card:nth-child(3) { border-top: 5px solid var(--green); }
.proof-mark {
  font-weight: 900; font-size: 52px; color: var(--pink); line-height: 1;
  margin-bottom: 16px; display: block; font-family: Georgia, serif;
}
.proof-card:nth-child(2) .proof-mark { color: var(--blue); }
.proof-card:nth-child(3) .proof-mark { color: var(--green); }
.proof-text {
  font-weight: 500; font-size: 15px; line-height: 1.7;
  color: #333; margin-bottom: 32px; font-style: italic; flex: 1;
}
.proof-attr { border-top: 2px solid var(--black); padding-top: 20px; margin-top: auto; }
.proof-name {
  font-weight: 900; font-size: 12px; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--black); display: block; margin-bottom: 4px;
}
.proof-role { font-weight: 500; font-size: 12px; color: #888; display: block; }

/* ── COMPARISON SECTION ──────────────────────── */
.comparison { background: var(--pink); padding: 100px 60px; border-bottom: 3px solid var(--black); }
.comparison-inner { max-width: 1200px; margin: 0 auto; }
.comparison-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  border: 3px solid var(--black); margin-top: 60px;
  box-shadow: 8px 8px 0 var(--black);
}
.comp-col { padding: 48px; }
.comp-col:first-child { background: rgba(0,0,0,0.15); border-right: 3px solid var(--black); }
.comp-col:last-child  { background: var(--black); }
.comp-badge {
  display: inline-flex; padding: 6px 14px;
  border: 2px solid rgba(255,255,255,0.3); font-weight: 900; font-size: 10px;
  letter-spacing: 0.14em; text-transform: uppercase; color: rgba(255,255,255,0.7); margin-bottom: 20px;
}
.comp-col:last-child .comp-badge { border-color: var(--pink); color: var(--pink); }
.comp-title { font-weight: 900; font-size: 18px; letter-spacing: -0.01em; text-transform: uppercase; color: var(--white); margin-bottom: 28px; }
.comp-list { list-style: none; display: flex; flex-direction: column; gap: 14px; }
.comp-list li {
  display: flex; align-items: flex-start; gap: 14px;
  font-weight: 600; font-size: 14px; color: rgba(255,255,255,0.75); line-height: 1.4;
}
.comp-x {
  width: 22px; height: 22px; background: rgba(255,255,255,0.1); display: flex;
  align-items: center; justify-content: center; flex-shrink: 0; margin-top: 1px;
  font-size: 12px; color: rgba(255,255,255,0.35); border: 2px solid rgba(255,255,255,0.15);
}
.comp-check {
  width: 22px; height: 22px; background: var(--pink); display: flex;
  align-items: center; justify-content: center; flex-shrink: 0; margin-top: 1px;
  font-size: 12px; color: var(--white);
}

/* ── RESPONSIVE ──────────────────────────────── */
@media (max-width: 960px) {
  nav { padding: 0 24px; }
  .nav-links, .nav-cta { display: none; }
  .nav-hamburger { display: flex; }

  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-left { padding: 60px 28px; border-right: none; border-bottom: 3px solid var(--black); }
  .hero-right { padding: 60px 28px; min-height: 400px; }

  .stats-strip { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2) { border-right: none; }
  .stat-item:nth-child(3) { border-top: 3px solid rgba(255,255,255,0.08); }
  .stat-item:nth-child(4) { border-top: 3px solid rgba(255,255,255,0.08); border-right: none; }

  .sp, .comparison { padding: 64px 28px; }

  .comparison-grid { grid-template-columns: 1fr; }
  .comp-col:first-child { border-right: none; border-bottom: 3px solid var(--black); }

  .proof-grid { grid-template-columns: 1fr; }
  .proof-card { border-right: none; border-bottom: 3px solid var(--black); }
  .proof-card:last-child { border-bottom: none; }

  footer { flex-direction: column; gap: 24px; padding: 40px 28px; text-align: center; }
  .footer-links { flex-wrap: wrap; justify-content: center; }
  .final-cta { padding: 80px 28px; }
}

/* ── Mega-menu ────────────────────────────── */
.nav-has-dropdown { position: relative; }
.nav-mega {
  display: none;
  position: absolute;
  top: calc(100% + 1px);
  left: -100px;
  width: 680px;
  background: var(--white);
  border: 3px solid var(--black);
  padding: 32px;
  grid-template-columns: 1fr 1fr 220px;
  gap: 32px;
  z-index: 200;
  box-shadow: 6px 6px 0 var(--black);
}
.nav-has-dropdown:hover .nav-mega { display: grid; }
.nav-mega-heading { font-weight: 900; font-size: 10px; letter-spacing: 0.12em; text-transform: uppercase; color: #aaa; margin-bottom: 16px; }
.nav-mega-col a { display: block; font-weight: 700; font-size: 14px; color: var(--black); text-decoration: none; margin-bottom: 12px; transition: color 0.1s; }
.nav-mega-col a:hover { color: var(--pink); }
.nav-mega-spotlight { background: var(--black); padding: 24px; display: flex; flex-direction: column; }
.nav-mega-spotlight-tag { font-weight: 900; font-size: 9px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--pink); margin-bottom: 12px; }
.nav-mega-spotlight-title { font-weight: 900; font-size: 14px; color: var(--white); line-height: 1.25; flex: 1; margin-bottom: 20px; }
.nav-mega-spotlight-cta { background: var(--pink); color: var(--white); font-weight: 900; font-size: 11px; letter-spacing: 0.06em; text-transform: uppercase; padding: 10px 16px; text-decoration: none; border: 2px solid var(--white); display: inline-block; }
.nav-chevron { font-size: 10px; margin-left: 3px; }
@media (max-width: 960px) { .nav-mega { display: none !important; } }

/* ── FOOTER CONTENT ALIGNMENT ────────────────── */
.footer-content { text-align: center; flex: 1; }
.footer-legal { font-weight: 400; font-size: 10px; color: rgba(255,255,255,0.25); text-align: center; margin-top: 6px; line-height: 1.5; max-width: 700px; margin-left: auto; margin-right: auto; }
