:root {
  --royal-purple: #4b0082;
  --gold: #d4af37;
  --bg: #fffdf8;
  --bg-soft: #fffaf0;
  --text: #2c2c2c;
  --muted: #5f5f5f;
  --card: #ffffff;
  --border: rgba(212, 175, 55, 0.45);
  --shadow: 0 10px 30px rgba(44, 44, 44, 0.09);
  --shadow-soft: 0 6px 16px rgba(75, 0, 130, 0.06), 0 14px 36px rgba(44, 44, 44, 0.08);
  --shadow-gold: 0 5px 12px rgba(212, 175, 55, 0.28), 0 12px 28px rgba(212, 175, 55, 0.2);
  --shadow-gold-hover: 0 7px 16px rgba(212, 175, 55, 0.34), 0 16px 34px rgba(212, 175, 55, 0.24);
  --shadow-purple: 0 6px 14px rgba(75, 0, 130, 0.3), 0 14px 30px rgba(61, 0, 105, 0.24);
  --shadow-purple-hover: 0 8px 18px rgba(75, 0, 130, 0.36), 0 18px 36px rgba(61, 0, 105, 0.3);
  --img-shadow: 0 4px 10px rgba(44, 44, 44, 0.1), 0 10px 24px rgba(44, 44, 44, 0.07);
  --serif: Georgia, "Times New Roman", Times, serif;
  --cta-height: 3rem;
  --cta-radius: 12px;
  --radius: 14px;
  --maxw: 1120px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: 10px;
  border: 1px solid rgba(212, 175, 55, 0.5);
  box-shadow: var(--img-shadow);
}

a { color: inherit; text-decoration: none; }
.container { width: min(var(--maxw), 92vw); margin-inline: auto; }
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: #000;
  color: #fff;
  padding: 0.65rem 0.9rem;
  z-index: 10000;
}
.skip-link:focus { left: 0.5rem; top: 0.5rem; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 5000;
  border-bottom: 1px solid rgba(212, 175, 55, 0.55);
  backdrop-filter: blur(8px);
  background: rgba(255, 253, 248, 0.95);
}

.topline {
  font-size: 0.82rem;
  color: var(--muted);
  border-bottom: 1px solid rgba(212, 175, 55, 0.32);
}

.topline .container {
  display: block;
  text-align: center;
  min-height: 2rem;
  padding: 0.3rem 0;
}
.topline .container span {
  display: block;
  width: 100%;
  text-align: center;
  font-weight: 600;
}

.nav-wrap {
  min-height: 4.2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.55rem 0;
  position: relative;
  z-index: 7000;
  isolation: isolate;
}

.brand h1 {
  margin: 0;
  font-size: clamp(1.02rem, 2.6vw, 1.38rem);
  line-height: 1.2;
  color: var(--royal-purple);
  letter-spacing: 0.015em;
  font-family: var(--serif);
}
.brand p {
  margin: 0.18rem 0 0;
  color: var(--muted);
  font-size: 0.86rem;
}

.menu-toggle {
  border: 1px solid var(--border);
  color: var(--royal-purple);
  background: transparent;
  border-radius: 10px;
  padding: 0.5rem 0.72rem;
  cursor: pointer;
}
.menu-toggle:focus-visible,
.nav a:focus-visible,
.cta:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

.nav {
  position: absolute;
  inset: calc(100% + 1px) 0 auto 0;
  background: #fffdfb;
  border-bottom: 1px solid var(--border);
  transform-origin: top;
  transform: scaleY(0);
  opacity: 0;
  pointer-events: none;
  transition: 160ms ease;
  z-index: 7100;
  box-shadow: 0 10px 26px rgba(44, 44, 44, 0.12), 0 24px 54px rgba(44, 44, 44, 0.1);
}
.nav.open {
  transform: scaleY(1);
  opacity: 1;
  pointer-events: auto;
}
.nav ul {
  list-style: none;
  margin: 0;
  padding: 0.3rem 0.85rem 0.85rem;
}
.nav li { position: relative; }
.nav > ul > li > a,
.nav button.dropdown-toggle {
  width: 100%;
  text-align: left;
  display: block;
  background: none;
  border: 0;
  color: var(--text);
  font: inherit;
  padding: 0.66rem 0.45rem;
  border-radius: 8px;
  cursor: pointer;
}
.nav a:hover,
.nav button.dropdown-toggle:hover {
  color: var(--royal-purple);
  background: rgba(212, 175, 55, 0.08);
}

.submenu {
  margin: 0.2rem 0 0.35rem 0.65rem;
  padding-left: 0.55rem;
  border-left: 1px solid rgba(212, 175, 55, 0.3);
  display: none;
  z-index: 7200;
}
.submenu.open { display: block; }
.submenu a { display: block; padding: 0.48rem 0.4rem; }

.hero { padding: 2.8rem 0 2.3rem; }
.hero-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.1rem;
  align-items: center;
}
.hero-copy {
  text-align: center;
  max-width: 900px;
  margin-inline: auto;
}
.eyebrow {
  margin: 0;
  color: var(--royal-purple);
  letter-spacing: 0.02em;
  text-transform: uppercase;
  font-size: 0.85rem;
}
.hero-title-wrap {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}
.hero h1 {
  margin: 0.62rem 0;
  line-height: 1.16;
  font-size: clamp(1.28rem, 5.6vw, 2.2rem);
  color: var(--royal-purple);
  font-family: var(--serif);
}
.hero h3 {
  margin: 0.2rem 0 1rem;
  font-size: clamp(0.96rem, 3.9vw, 1.35rem);
  line-height: 1.3;
  font-weight: 700;
}
.hero p { max-width: 70ch; margin: 0 0 1.2rem; }
.hero-avatar {
  width: 70px;
  height: 70px;
  object-fit: cover;
  border: 1px solid var(--gold);
  border-radius: 999px;
  box-shadow: var(--img-shadow);
}

.cta-row {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-top: 1.05rem;
  justify-content: center;
}
.cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.65rem;
  padding: 0.2rem 1rem;
  border-radius: 10px;
  font-weight: 700;
  border: 1px solid transparent;
  transition: transform 160ms ease, box-shadow 220ms ease, filter 220ms ease;
}
.cta.primary {
  background: linear-gradient(135deg, var(--gold), #f0d574);
  color: #1a0a2c;
  box-shadow: var(--shadow-gold);
}
.cta.secondary {
  border-color: var(--gold);
  color: var(--royal-purple);
  background: rgba(212, 175, 55, 0.08);
  box-shadow: 0 4px 10px rgba(75, 0, 130, 0.08), 0 10px 24px rgba(44, 44, 44, 0.06);
}

.grid {
  display: grid;
  gap: 1rem;
}
.cards {
  grid-template-columns: repeat(auto-fit, minmax(225px, 1fr));
}
.card {
  background: linear-gradient(to bottom, #ffffff, #fffaf0);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1rem;
  box-shadow: var(--shadow-soft);
}
.card h3 {
  margin-top: 0;
  margin-bottom: 0.5rem;
  font-size: 1.05rem;
}
.card h2 { margin: 0.35rem 0; color: var(--royal-purple); font-size: 1.34rem; line-height: 1.15; }
.card h3,
.banner h3 {
  text-align: center;
}

section {
  padding: 1.6rem 0;
  scroll-margin-top: 7.8rem;
}

.section-title {
  color: var(--royal-purple);
  margin: 0 0 0.65rem;
  line-height: 1.2;
  font-size: clamp(1.25rem, 4.5vw, 1.95rem);
  text-align: center;
  font-family: var(--serif);
}

.banner {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.1rem;
  background: #fffaf0;
  box-shadow: var(--shadow-soft);
}
.banner .cta {
  display: flex;
  width: fit-content;
  margin: 0.85rem auto 0;
}

.media-grid {
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  align-items: start;
}

.quote {
  margin: 0;
  border-left: 3px solid var(--gold);
  padding-left: 0.9rem;
  color: #424242;
}
.center-copy {
  text-align: center !important;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
}
main img:not(.hero-avatar) {
  width: clamp(120px, 70vw, 280px);
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
}
.img-abs {
  width: clamp(68px, 28vw, 100px) !important;
}
.img-footer-line {
  width: clamp(130px, 58vw, 250px) !important;
}
.img-engagement-andrea {
  width: clamp(110px, 44vw, 190px) !important;
  border-radius: 12px;
  border: 1px solid rgba(212, 175, 55, 0.55);
}
.img-ethics-andrea {
  width: clamp(160px, 46vw, 240px) !important;
  max-width: 240px !important;
}

.urgent-bar {
  border-top: 1px solid rgba(212, 175, 55, 0.25);
  border-bottom: 1px solid rgba(212, 175, 55, 0.3);
  background: #fff;
  padding: 0.5rem 0;
  position: relative;
  z-index: 5000;
}
.urgent-actions {
  display: grid;
  grid-template-columns: 1fr;
  gap: 5px;
  position: relative;
  z-index: 5001;
}
.urgent-btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  min-height: var(--cta-height);
  padding: 0.3rem 0.45rem;
  border-radius: var(--cta-radius);
  border: 1px solid transparent;
  color: #2c2c2c;
  font-weight: 800;
  font-size: clamp(0.78rem, 2.7vw, 0.96rem);
  box-shadow: 0 4px 10px rgba(44, 44, 44, 0.12), 0 10px 24px rgba(44, 44, 44, 0.08);
  white-space: nowrap;
  transition: transform 160ms ease, box-shadow 220ms ease, filter 220ms ease;
}
.urgent-btn::before {
  content: "☎";
  margin-right: 0.35rem;
}
.urgent-btn.audiotel {
  background: linear-gradient(135deg, #f9e79f, #d4af37);
  color: #111;
  border-color: #c79f25;
  font-weight: 900;
  box-shadow: var(--shadow-gold);
}
.urgent-btn.prive {
  background: linear-gradient(135deg, #5c1898, #4b0082);
  color: #fff;
  border-color: #3d0069;
  box-shadow: var(--shadow-purple);
  animation: pulse-soft-subtle 2.4s infinite ease-in-out;
}

.phone-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: var(--cta-height);
  margin: 0.35rem auto 0.5rem;
  border-radius: var(--cta-radius);
  border: 1px solid var(--gold);
  background: linear-gradient(135deg, #fffef8, #f4df96);
  color: #2c2c2c;
  font-weight: 800;
  letter-spacing: 0.01em;
  box-shadow: var(--shadow-gold);
  transition: transform 160ms ease, box-shadow 220ms ease, filter 220ms ease;
}
.phone-btn::before {
  content: "☎";
  margin-right: 0.5rem;
  font-size: 1rem;
  line-height: 1;
}
.conversion-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 20px;
  box-shadow: var(--shadow-soft);
  padding: 2rem;
}
.conversion-title {
  margin: 0 0 0.75rem;
  font-size: clamp(1.2rem, 4.2vw, 1.8rem);
  line-height: 1.2;
  color: var(--royal-purple);
  text-align: center;
}
.conversion-intro {
  margin: 0 0 0.9rem;
  text-align: center;
}
.conversion-subtitle {
  margin: 0.65rem 0 0.45rem;
  font-size: clamp(1rem, 2.7vw, 1.12rem) !important;
  color: var(--muted) !important;
  font-weight: 700;
  text-align: center;
}
.conversion-list {
  list-style: none;
  margin: 0.35rem 0 0.8rem;
  padding: 0;
}
.conversion-list li {
  margin: 0.45rem 0;
  padding-left: 1.5rem;
  position: relative;
}
.conversion-list li::before {
  content: "✓";
  color: var(--gold);
  font-weight: 900;
  position: absolute;
  left: 0;
  top: 0.02rem;
}
.conversion-phone {
  display: flex;
  width: min(100%, 520px);
  margin: 0.8rem auto 0.45rem;
  border-radius: 50px;
  background: linear-gradient(135deg, #5c1898, #4b0082);
  border-color: #3d0069;
  color: #fff;
  font-weight: 900;
  box-shadow: var(--shadow-purple);
}
.conversion-phone::before {
  content: "📞";
}
.prive-call-btn {
  animation: pulse-soft 2s infinite ease-in-out;
  will-change: transform;
}
.prive-call-btn:hover,
.prive-call-btn:focus-visible {
  animation-play-state: paused;
}
.conversion-reassure {
  margin: 0.35rem 0 0;
  text-align: center;
  color: var(--muted);
  font-size: 0.88rem;
}

.pulse {
  animation: pulse 2.2s infinite;
}
.planning-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-width: 188px;
  min-height: var(--cta-height);
  margin: 0 auto 0.75rem;
  border-radius: var(--cta-radius);
  border: 1px solid rgba(75, 0, 130, 0.35);
  background: #fff;
  color: var(--royal-purple);
  font-weight: 700;
  font-size: 0.92rem;
  box-shadow: 0 4px 10px rgba(75, 0, 130, 0.08), 0 10px 24px rgba(44, 44, 44, 0.06);
  transition: transform 160ms ease, box-shadow 220ms ease, filter 220ms ease;
}
.app-install-btn {
  width: 100%;
  max-width: 320px;
  min-height: var(--cta-height);
  border-radius: var(--cta-radius);
  margin: 0.45rem auto 0;
  font-size: 1rem;
  font-weight: 800;
  display: flex;
}
.universal-voyance-banner {
  background: #0f0f0f !important;
  color: #f4f1ea !important;
  padding: 24px 22px;
  border-radius: 14px;
  border: 1px solid rgba(212, 175, 55, 0.65);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.55);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  position: fixed;
  z-index: 8800 !important;
  display: none;
  width: min(92vw, 520px);
}
@keyframes slideInBannerDesktop {
  from { transform: translateY(24px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
@keyframes slideInBannerMobile {
  from { transform: translate(-50%, 20px); opacity: 0; }
  to { transform: translate(-50%, 0); opacity: 1; }
}
.universal-voyance-banner.show { display: block !important; }
.universal-voyance-banner-close {
  position: absolute;
  top: 12px;
  right: 12px;
  background: rgba(212, 175, 55, 0.12);
  border: 1px solid rgba(212, 175, 55, 0.35);
  color: #d4af37 !important;
  font-size: 20px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease, border-color 0.2s ease;
  line-height: 1;
  padding: 0;
}
.universal-voyance-banner-close:hover {
  background: rgba(212, 175, 55, 0.22);
  border-color: rgba(212, 175, 55, 0.6);
}
.universal-voyance-banner-accroche {
  font-size: 23px;
  font-weight: 700;
  margin: 0 28px 10px 0;
  text-align: left;
  color: #d4af37 !important;
  line-height: 1.3;
}
.universal-voyance-banner-garantie {
  font-size: 14px;
  font-weight: 500;
  margin: 0 0 14px 0;
  text-align: left;
  opacity: 0.95;
  letter-spacing: 0.1px;
  color: #f4f1ea !important;
}
.universal-voyance-banner-content {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
}
.universal-voyance-banner-text { flex: 1; }
.universal-voyance-banner-list {
  margin: 0;
  padding-left: 0;
  list-style: none;
}
.universal-voyance-banner-list li {
  margin: 0 0 8px 0;
  font-size: 14px;
  color: #f4f1ea !important;
  line-height: 1.5;
}
.universal-voyance-banner-list li:last-child {
  margin-bottom: 0;
}
.universal-voyance-banner-qrcode { flex-shrink: 0; }
.universal-voyance-banner-qrcode img {
  border: 2px solid #d4af37;
  border-radius: 12px;
  background: #0f0f0f;
  padding: 6px;
  width: 148px;
  height: 148px;
  display: block;
  box-shadow: 0 0 0 1px rgba(212, 175, 55, 0.22), 0 10px 24px rgba(0, 0, 0, 0.45);
}
.universal-voyance-banner-button {
  background: #d4af37 !important;
  color: #101820 !important;
  padding: 13px 26px;
  border-radius: 999px;
  border: 1px solid rgba(212, 175, 55, 0.85);
  font-size: 15px;
  font-weight: 800;
  font-family: "Playfair Display", "Times New Roman", serif;
  letter-spacing: 0.02em;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  text-align: center;
  margin-top: 16px;
}
.cta:hover,
.urgent-btn:hover,
.phone-btn:hover,
.planning-btn:hover,
.app-install-btn:hover {
  transform: translateY(-1px);
}
.cta:active,
.urgent-btn:active,
.phone-btn:active,
.planning-btn:active,
.app-install-btn:active {
  transform: translateY(1px) scale(0.995);
}
.cta.primary:hover,
.phone-btn:hover,
.urgent-btn.audiotel:hover {
  box-shadow: var(--shadow-gold-hover);
  filter: brightness(1.03);
}
.urgent-btn.prive:hover {
  box-shadow: var(--shadow-purple-hover);
  filter: brightness(1.05);
  animation-play-state: paused;
}
.service-img {
  width: min(100%, 250px) !important;
  max-width: 250px !important;
}
#planning-audiotel,
#planning-prive {
  scroll-margin-top: 10.6rem;
}
#planning-audiotel:target::before,
#planning-prive:target::before {
  content: "";
  display: block;
  height: 10.6rem;
  margin-top: -10.6rem;
  pointer-events: none;
  visibility: hidden;
}
/* Contact form premium */
.contact-form {
  display: grid;
  gap: 0.9rem;
  max-width: 760px;
  margin: 0 auto;
}
.form-row {
  display: grid;
  gap: 0.8rem;
}
.contact-form label {
  font-weight: 600;
  color: #3a2a57;
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(75, 0, 130, 0.25);
  border-radius: 10px;
  padding: 0.72rem 0.85rem;
  font: inherit;
  background: #fff;
}
.contact-form textarea {
  min-height: 140px;
  resize: vertical;
}
.contact-form input:focus,
.contact-form textarea:focus {
  outline: 2px solid rgba(75, 0, 130, 0.2);
  border-color: rgba(75, 0, 130, 0.5);
}
.captcha-box {
  background: #fffaf0;
  border: 1px solid rgba(212, 175, 55, 0.45);
  border-radius: 10px;
  padding: 0.75rem 0.85rem;
}
.contact-actions {
  display: flex;
  justify-content: center;
}
.contact-alert {
  display: none;
  padding: 0.7rem 0.85rem;
  border-radius: 10px;
  font-weight: 600;
}
.contact-alert.error {
  display: block;
  background: #fff0f0;
  border: 1px solid #e6b6b6;
  color: #7d1e1e;
}
.contact-alert.success {
  display: block;
  background: #eefaf0;
  border: 1px solid #b7dfbe;
  color: #1d5f2b;
}
@media (min-width: 760px) {
  .form-row {
    grid-template-columns: 1fr 1fr;
  }
}
body.menu-open::before {
  content: "";
  position: fixed;
  inset: 0;
  background: rgba(20, 12, 34, 0.24);
  backdrop-filter: blur(1px);
  z-index: 5001;
}
body.menu-open .site-header {
  z-index: 6000;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.5), 0 8px 22px rgba(212, 175, 55, 0.24); }
  70% { box-shadow: 0 0 0 14px rgba(212, 175, 55, 0), 0 8px 22px rgba(212, 175, 55, 0.24); }
  100% { box-shadow: 0 0 0 0 rgba(212, 175, 55, 0), 0 8px 22px rgba(212, 175, 55, 0.24); }
}
@keyframes pulse-soft {
  0% { transform: scale(1); box-shadow: var(--shadow-purple); }
  50% { transform: scale(1.02); box-shadow: 0 10px 25px rgba(75, 0, 130, 0.4); }
  100% { transform: scale(1); box-shadow: var(--shadow-purple); }
}
@keyframes pulse-soft-subtle {
  0% { transform: scale(1); box-shadow: var(--shadow-purple); }
  50% { transform: scale(1.008); box-shadow: 0 7px 18px rgba(75, 0, 130, 0.34); }
  100% { transform: scale(1); box-shadow: var(--shadow-purple); }
}
@media (max-width: 1024px) {
  main img:not(.hero-avatar) { width: clamp(120px, 55vw, 250px); }
  .img-engagement-andrea { width: clamp(105px, 42vw, 175px) !important; }
}
@media (max-width: 768px) {
  main img:not(.hero-avatar) { width: clamp(110px, 62vw, 230px); }
  .img-abs { width: clamp(64px, 25vw, 88px) !important; }
  .img-engagement-andrea { width: clamp(100px, 46vw, 160px) !important; }
  .conversion-card {
    padding: 1.2rem;
  }
  .conversion-phone {
    width: 100%;
  }
  .universal-voyance-banner {
    padding: 18px 16px;
    left: 50%;
    right: auto;
    bottom: 14px;
    width: calc(100vw - 24px);
    max-width: 560px;
    border-radius: 14px;
    transform: translateX(-50%);
    animation: slideInBannerMobile 0.45s ease-out;
  }
  .universal-voyance-banner-accroche,
  .universal-voyance-banner-garantie {
    text-align: left;
  }
  .universal-voyance-banner-content { flex-direction: column; gap: 12px; }
  .universal-voyance-banner-qrcode { display: flex; justify-content: center; width: 100%; }
  .universal-voyance-banner-qrcode img { width: 132px; height: 132px; }
  .universal-voyance-banner-button { width: 100%; font-size: 16px; padding: 13px 16px; }
}
@media (max-width: 390px) {
  main img:not(.hero-avatar) { width: clamp(100px, 66vw, 205px); }
  .img-engagement-andrea { width: clamp(95px, 50vw, 145px) !important; }
}
@media (max-width: 360px) {
  main img:not(.hero-avatar) { width: clamp(96px, 68vw, 190px); }
  .img-engagement-andrea { width: clamp(92px, 52vw, 138px) !important; }
  .urgent-btn {
    font-size: 0.76rem;
    padding-inline: 0.35rem;
  }
}

.footer {
  margin-top: 1.5rem;
  border-top: 1px solid var(--border);
  color: #555;
  padding: 1.25rem 0 2rem;
  font-size: 0.93rem;
  text-align: center;
}

@media (min-width: 980px) {
  .universal-voyance-banner {
    bottom: 20px;
    right: 20px;
    width: min(520px, calc(100vw - 40px));
    animation: slideInBannerDesktop 0.45s ease-out;
  }
  .universal-voyance-banner-content { position: relative; min-height: 150px; }
  .universal-voyance-banner-qrcode { position: absolute; bottom: 0; right: 0; }
  .universal-voyance-banner-text { padding-right: 176px; }
  .menu-toggle { display: none; }
  .nav {
    position: static;
    inset: auto;
    border: 0;
    transform: none;
    opacity: 1;
    pointer-events: auto;
    background: transparent;
    z-index: 7100;
  }
  .nav > ul {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0;
  }
  .nav > ul > li > a,
  .nav button.dropdown-toggle {
    padding: 0.46rem 0.68rem;
    border-radius: 8px;
  }
  .submenu {
    position: absolute;
    left: 0;
    top: calc(100% + 0.35rem);
    min-width: 220px;
    margin: 0;
    padding: 0.35rem;
    border-left: 0;
    border: 1px solid var(--border);
    border-radius: 12px;
    background: #ffffff;
    box-shadow: var(--shadow);
    z-index: 7200;
  }
  .nav-wrap {
    z-index: 7000;
    isolation: isolate;
  }
  .urgent-bar {
    z-index: 5000;
  }
  .hero-layout {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
  .hero-copy { text-align: center; margin-inline: auto; max-width: 900px; }
  .hero-title-wrap { justify-content: center; }
  .section-title { text-align: center; }
  .urgent-actions { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .menu-has-children:hover .submenu,
  .menu-has-children:focus-within .submenu {
    display: block;
  }
  .submenu a { border-radius: 8px; }
}
@media (min-width: 680px) {
  .urgent-actions { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
