/* KaeCo Capital — components.css | Navbar, footer, modal, FAQ, slider, cursor, toast, preloader */


/* =========================================================
   NAVBAR
   ========================================================= */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--navbar-h);
  background: rgba(10, 15, 30, 0.92);
  backdrop-filter: blur(12px) saturate(180%);
  -webkit-backdrop-filter: blur(12px) saturate(180%);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: background var(--transition), box-shadow var(--transition);
}

.navbar.scrolled {
  background: rgba(10, 15, 30, 0.98);
  box-shadow: 0 4px 24px rgba(0,0,0,0.3);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  gap: 24px;
}

/* Logo */
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  text-decoration: none;
}

/* Image-based logo */
.nav-logo-img {
  height: 52px;
  width: auto;
  display: block;
  object-fit: contain;
}

/* Footer logo — larger and anchored with a gold accent */
.footer-logo .nav-logo-img {
  height: 56px;
}

.footer-logo {
  display: inline-flex;
  padding-bottom: 16px;
  border-bottom: 2px solid var(--color-gold);
  margin-bottom: 4px;
}

/* Legacy text logo — hidden when image logo is present */
.logo-icon {
  color: var(--color-primary);
  font-size: 1.3rem;
  line-height: 1;
}

.logo-text {
  font-size: 1.2rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--color-white);
}

.logo-text-light { color: rgba(255,255,255,0.9); }
.logo-accent { color: var(--color-gold); }

/* Nav links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  flex: 1;
  justify-content: center;
}

.nav-link {
  padding: 8px 14px;
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255,255,255,0.72);
  border-radius: var(--radius-sm);
  transition: color var(--transition), background var(--transition);
  white-space: nowrap;
}

.nav-link:hover {
  color: var(--color-white);
  background: rgba(255,255,255,0.08);
}

/* Nav actions */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}

.nav-portal-link {
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255,255,255,0.72);
  white-space: nowrap;
  transition: color var(--transition);
}
.nav-portal-link:hover { color: var(--color-white); }

/* Hamburger toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
  border-radius: var(--radius-sm);
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--color-white);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }


/* =========================================================
   SCROLL PROGRESS BAR
   ========================================================= */
.scroll-progress-bar {
  position: fixed;
  top: 0; left: 0;
  height: 4px;
  width: 0%;
  background: linear-gradient(90deg, #DFBC67 0%, #F0CA7A 60%, #DFBC67 100%);
  z-index: 2001;
  border-radius: 0 3px 3px 0;
  box-shadow: 0 0 10px rgba(223,188,103,0.6), 0 0 4px rgba(223,188,103,0.4);
  transition: width 0.06s linear;
  will-change: width;
}


/* =========================================================
   CUSTOM CURSOR
   ========================================================= */
@media (hover: hover) and (pointer: fine) {
  body { cursor: none; }
  a, button, [role="button"], .pill, .ptab, .faq-question, .slider-btn, .slider-dot { cursor: none; }
}

.cursor-dot {
  position: fixed;
  width: 8px; height: 8px;
  background: #fff;
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  mix-blend-mode: difference;
  transition: width 0.2s ease, height 0.2s ease;
  will-change: left, top;
}

.cursor-ring {
  position: fixed;
  width: 36px; height: 36px;
  border: 1.5px solid rgba(255,255,255,0.85);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  mix-blend-mode: difference;
  transition: width 0.35s cubic-bezier(0.22,1,0.36,1),
              height 0.35s cubic-bezier(0.22,1,0.36,1),
              border-color 0.2s ease;
  will-change: left, top;
}

.cursor-dot.cursor-hover  { width: 14px; height: 14px; }
.cursor-ring.cursor-hover { width: 54px; height: 54px; border-color: rgba(255,255,255,0.6); }
.cursor-dot.cursor-click  { width: 6px;  height: 6px; }
.cursor-ring.cursor-click { width: 28px; height: 28px; }

/* =========================================================
   CURSOR UPGRADE
   ========================================================= */
.cursor-dot  { width: 8px !important; height: 8px !important; }
.cursor-ring { width: 36px !important; height: 36px !important; }


/* =========================================================
   SCROLL SPY — active nav link (scroll-based, home page)
   ========================================================= */
.nav-link.spy-active {
  color: var(--color-gold) !important;
  background: rgba(223,188,103,0.10) !important;
  border-radius: var(--radius-sm);
}

/* Active page — set via aria-current="page" on the current page's link */
.nav-link[aria-current="page"] {
  color: var(--color-gold);
  background: rgba(223,188,103,0.08);
  border-radius: var(--radius-sm);
}
.nav-link[aria-current="page"]:hover {
  color: var(--color-gold);
  background: rgba(223,188,103,0.14);
}


/* =========================================================
   BACK TO TOP
   ========================================================= */
.back-to-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--color-primary);
  color: var(--color-white);
  box-shadow: 0 4px 20px rgba(19,24,94,0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 900;
  opacity: 0;
  transform: translateY(16px) scale(0.9);
  transition: opacity 0.3s ease, transform 0.3s ease, background 0.2s ease;
  will-change: opacity, transform;
}

.back-to-top:not([hidden]) {
  opacity: 1;
  transform: translateY(0) scale(1);
}
.back-to-top[hidden] {
  display: flex !important;
  opacity: 0;
  transform: translateY(16px) scale(0.9);
  pointer-events: none;
}

.back-to-top:hover {
  background: var(--color-primary-dk);
  transform: translateY(-2px) scale(1.05) !important;
}

@media (max-width: 768px) {
  .back-to-top { bottom: 20px; right: 20px; width: 42px; height: 42px; }
}


/* =========================================================
   TOAST NOTIFICATIONS
   ========================================================= */
.toast-container {
  position: fixed;
  bottom: 96px;
  right: 24px;
  display: flex;
  flex-direction: column-reverse;
  gap: 10px;
  z-index: 5000;
  pointer-events: none;
  max-width: 340px;
}

.toast {
  background: var(--color-charcoal);
  color: var(--color-white);
  padding: 14px 18px;
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  font-weight: 500;
  line-height: 1.5;
  box-shadow: 0 8px 30px rgba(0,0,0,0.3);
  border-left: 3px solid var(--color-primary);
  pointer-events: all;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  animation: toastIn 0.35s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  max-width: 340px;
}

.toast.toast-out {
  animation: toastOut 0.3s ease forwards;
}

.toast-icon { font-size: 1rem; flex-shrink: 0; margin-top: 1px; }

@keyframes toastIn {
  from { opacity: 0; transform: translateX(24px); }
  to   { opacity: 1; transform: translateX(0); }
}

@keyframes toastOut {
  from { opacity: 1; transform: translateX(0); max-height: 80px; margin-bottom: 0; }
  to   { opacity: 0; transform: translateX(24px); max-height: 0; margin-bottom: -10px; }
}


/* =========================================================
   PRELOADER
   ========================================================= */
.preloader {
  position: fixed;
  inset: 0;
  background: #0D1117;
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
}

.preloader-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 20px;
  width: 100%;
  max-width: 360px;
  padding: 0 32px;
  animation: preloaderIn 0.55s cubic-bezier(0.22,1,0.36,1) forwards;
}

@keyframes preloaderIn {
  from { opacity: 0; transform: scale(0.96); }
  to   { opacity: 1; transform: scale(1); }
}

.preloader-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 4px;
}
.preloader-logo-img {
  height: 72px;
  width: auto;
  object-fit: contain;
}

/* CLI chart legend dots */
.cli-dot-gold  { background: #DFBC67; }
.cli-dot-blue  { background: #4A90D9; }
.cli-dot-slate { background: #94A3B8; }

.preloader-tagline {
  font-size: 0.70rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.30);
  margin-top: -8px;
}

.preloader-bar {
  width: 100%;
  height: 2px;
  background: rgba(255,255,255,0.07);
  border-radius: 2px;
  overflow: hidden;
  margin-top: 4px;
}

.preloader-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(to right, #DFBC67, #F0CA7A);
  border-radius: 2px;
  animation: preloaderLoad 1.8s cubic-bezier(0.4,0,0.2,1) 0.3s forwards;
}

@keyframes preloaderLoad {
  to { width: 100%; }
}

.preloader.pl-done {
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.55s ease 0.1s;
}


/* =========================================================
   FOOTER
   ========================================================= */
.site-footer {
  background: var(--color-footer-bg);
}

.footer-top {
  padding: 72px 0 56px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

.footer-top-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 2fr;
  gap: 48px;
  align-items: start;
}

.footer-tagline {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.6;
  margin-top: 14px;
  margin-bottom: 20px;
}

.footer-socials {
  display: flex;
  gap: 10px;
}

.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.55);
  font-size: 0.85rem;
  font-weight: 700;
  transition: all var(--transition);
}

.social-link:hover {
  border-color: var(--color-primary);
  color: var(--color-primary);
  background: rgba(19,24,94,0.12);
}

.footer-col-heading {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  margin-bottom: 18px;
}

.footer-links-col ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links-col a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.5);
  transition: color var(--transition);
}

.footer-links-col a:hover { color: var(--color-white); }

/* Newsletter */
.footer-newsletter-desc {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.45);
  margin-bottom: 16px;
  line-height: 1.6;
}

.newsletter-input-group {
  display: flex;
  gap: 0;
}

.newsletter-input {
  flex: 1;
  min-width: 0;
  padding: 12px 16px;
  font-size: 0.875rem;
  font-family: var(--font-sans);
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-right: none;
  border-radius: var(--radius-sm) 0 0 var(--radius-sm);
  color: var(--color-white);
  outline: none;
  transition: border-color var(--transition), background var(--transition);
}

.newsletter-input::placeholder { color: rgba(255,255,255,0.3); }
.newsletter-input:focus {
  border-color: rgba(19,24,94,0.7);
  background: rgba(255,255,255,0.1);
}

.newsletter-btn {
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 12px 18px;
  font-size: 0.85rem;
}

.newsletter-success {
  margin-top: 10px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
}

/* Footer bottom */
.footer-bottom {
  padding: 28px 0 36px;
}

.footer-bottom-links {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 16px;
}

.footer-bottom-links a {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.35);
  transition: color var(--transition);
}

.footer-bottom-links a:hover { color: rgba(255,255,255,0.65); }

.footer-legal {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.25);
  line-height: 1.7;
  margin-bottom: 8px;
  max-width: 900px;
}


/* =========================================================
   TESTIMONIALS
   ========================================================= */
.testimonials-section {
  padding: 96px 0;
  background: var(--color-bg-alt);
  overflow: hidden;
}

.slider-wrapper {
  position: relative;
  overflow: hidden;
}

.slider-track {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

.testimonial-card {
  flex: 0 0 100%;
  padding: 0 16px;
}

.testimonial-card > blockquote {
  background: var(--color-bg);
  border-radius: var(--radius-lg);
  padding: 40px 44px;
  box-shadow: var(--shadow-card);
  position: relative;
  max-width: 820px;
  margin: 0 auto;
}

.testimonial-quote-icon {
  position: absolute;
  top: -18px;
  left: 44px;
  font-size: 5rem;
  color: var(--color-primary);
  line-height: 1;
  opacity: 0.15;
  font-family: var(--font-serif);
  user-select: none;
}

.testimonial-text {
  font-size: 1.1rem;
  color: var(--color-charcoal-md);
  line-height: 1.8;
  margin-bottom: 28px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--color-primary);
  color: var(--color-white);
  font-size: 1rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.author-name {
  display: block;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--color-charcoal);
  font-style: normal;
}

.author-title {
  display: block;
  font-size: 0.8rem;
  color: var(--color-slate);
  margin-top: 2px;
}

/* Slider controls */
.slider-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 36px;
}

.slider-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid var(--color-border);
  background: var(--color-bg);
  color: var(--color-charcoal);
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
}

.slider-btn:hover {
  border-color: var(--color-primary);
  color: var(--color-primary);
  background: rgba(19,24,94,0.06);
}

.slider-dots {
  display: flex;
  gap: 8px;
  align-items: center;
}

.slider-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-border);
  transition: all var(--transition);
  flex-shrink: 0;
}

.slider-dot.active {
  background: var(--color-primary);
  width: 24px;
  border-radius: 4px;
}


/* =========================================================
   FAQ ACCORDION
   ========================================================= */
.faq-section {
  padding: 96px 0;
  background: var(--color-bg-alt);
}

.faq-container { max-width: 820px; }

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--color-bg);
  box-shadow: var(--shadow-card);
}

.faq-item {
  border-bottom: 1px solid var(--color-border);
}
.faq-item:last-child { border-bottom: none; }

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 28px;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--color-charcoal);
  background: transparent;
  text-align: left;
  transition: background var(--transition), color var(--transition);
}

.faq-question:hover {
  background: rgba(19,24,94,0.03);
  color: var(--color-primary);
}

.faq-question[aria-expanded="true"] {
  color: var(--color-primary);
  background: rgba(19,24,94,0.04);
}

.faq-chevron {
  flex-shrink: 0;
  color: var(--color-slate-lt);
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1), color 0.2s ease;
}

.faq-question[aria-expanded="true"] .faq-chevron {
  transform: rotate(180deg);
  color: var(--color-primary);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.22, 1, 0.36, 1),
              padding 0.3s ease;
}

.faq-answer.open {
  max-height: 300px;
}

.faq-answer p {
  padding: 0 28px 22px;
  font-size: 0.9rem;
  color: var(--color-slate);
  line-height: 1.75;
}

.faq-answer strong { color: var(--color-charcoal); }

@media (max-width: 768px) {
  .faq-section { padding: 64px 0; }
  .faq-question { padding: 18px 20px; font-size: 0.9rem; }
  .faq-answer p { padding: 0 20px 18px; }
}


/* =========================================================
   MODAL
   ========================================================= */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(10,15,30,0.75);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  z-index: 3000;
  display: flex;
  align-items: center;
  justify-content: center;
  /* Safe-area padding: keeps modal away from notch, home bar, browser chrome */
  padding:
    max(24px, env(safe-area-inset-top))
    max(16px, env(safe-area-inset-right))
    max(24px, env(safe-area-inset-bottom))
    max(16px, env(safe-area-inset-left));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.modal-overlay:not([hidden]) { opacity: 1; }
.modal-overlay[hidden] { display: none !important; }

.modal-card {
  background: var(--color-bg);
  border-radius: var(--radius-lg);
  width: 100%;
  max-width: 520px;
  /* dvh adjusts when mobile browser chrome shows/hides — vh does not */
  max-height: min(88dvh, calc(100dvh - env(safe-area-inset-top) - env(safe-area-inset-bottom) - 48px));
  /* Fallback for browsers without dvh support */
  max-height: min(88vh, calc(100vh - 48px));
  max-height: min(88dvh, calc(100dvh - env(safe-area-inset-top) - env(safe-area-inset-bottom) - 48px));
  overflow-y: auto;
  /* Smooth momentum scrolling on iOS */
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
  padding: 36px 40px 40px;
  position: relative;
  box-shadow: 0 32px 80px rgba(0,0,0,0.35);
  animation: modalSlideUp 0.35s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

@keyframes modalSlideUp {
  from { opacity: 0; transform: translateY(24px) scale(0.97); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}

.modal-close {
  position: absolute;
  top: 16px; right: 16px;
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid var(--color-border);
  background: transparent;
  font-size: 1.3rem;
  line-height: 1;
  color: var(--color-slate);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
}
.modal-close:hover {
  background: rgba(19,24,94,0.07);
  border-color: var(--color-primary);
  color: var(--color-primary);
}

/* Step indicator */
.modal-steps {
  display: flex;
  align-items: center;
  gap: 0;
  margin-bottom: 28px;
}

.mstep {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.mstep-num {
  width: 30px; height: 30px;
  border-radius: 50%;
  border: 2px solid var(--color-border);
  background: var(--color-bg-alt);
  color: var(--color-slate-lt);
  font-size: 0.78rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.mstep-label {
  font-size: 0.68rem;
  font-weight: 600;
  color: var(--color-slate-lt);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: color 0.3s ease;
}

.mstep.active .mstep-num  { background: var(--color-primary); border-color: var(--color-primary); color: #fff; }
.mstep.active .mstep-label { color: var(--color-primary); }
.mstep.done  .mstep-num   { background: var(--color-primary); border-color: var(--color-primary); color: #fff; }
.mstep.done  .mstep-label  { color: var(--color-slate); }

.mstep-line {
  flex: 1;
  height: 2px;
  background: var(--color-border);
  margin: 0 8px;
  margin-bottom: 18px;
  transition: background 0.3s ease;
}
.mstep-line.active { background: var(--color-primary); }

.modal-title {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-charcoal);
  margin-bottom: 6px;
}

.modal-sub {
  font-size: 0.875rem;
  color: var(--color-slate);
  line-height: 1.6;
  margin-bottom: 24px;
}

.mform-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 24px;
}

.mfield { display: flex; flex-direction: column; gap: 6px; }
.mfield-full { grid-column: 1 / -1; }

.mfield label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--color-charcoal-md);
}

.mreq { color: var(--color-primary); }
.mopt { font-weight: 400; color: var(--color-slate-lt); }

.mfield input,
.mfield select {
  padding: 11px 14px;
  font-size: 0.875rem;
  font-family: var(--font-sans);
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-sm);
  color: var(--color-charcoal);
  background: var(--color-bg);
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.mfield input:focus,
.mfield select:focus {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(19,24,94,0.1);
}

.mfield input.invalid { border-color: #DC2626; }
.mfield-err { font-size: 0.75rem; color: #DC2626; min-height: 16px; }

.mradio-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 4px 0;
}

.mradio {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all var(--transition);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--color-charcoal-md);
}

.mradio:has(input:checked) {
  border-color: var(--color-primary);
  background: rgba(19,24,94,0.05);
  color: var(--color-charcoal);
}

.mradio input { accent-color: var(--color-primary); }

.mcheck-group {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  padding: 4px 0;
}

.mcheck {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-sm);
  cursor: pointer;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--color-charcoal-md);
  transition: all var(--transition);
}

.mcheck:has(input:checked) {
  border-color: var(--color-primary);
  background: rgba(19,24,94,0.05);
}

.mcheck input { accent-color: var(--color-primary); }

.mfield { margin-bottom: 16px; }

.modal-footer {
  display: flex;
  justify-content: flex-end;
  margin-top: 8px;
}

.modal-footer--2col {
  justify-content: space-between;
}

/* Success panel */
.modal-panel--success { text-align: center; padding-top: 8px; }

.msuccess-icon {
  width: 72px; height: 72px;
  margin: 0 auto 20px;
}

.msuccess-svg { width: 72px; height: 72px; }

.msuccess-circle {
  stroke: var(--color-primary);
  stroke-width: 2;
  stroke-dasharray: 166;
  stroke-dashoffset: 166;
  animation: circleStroke 0.7s ease 0.1s forwards;
}

.msuccess-check {
  stroke: var(--color-primary);
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 48;
  stroke-dashoffset: 48;
  animation: checkStroke 0.4s ease 0.7s forwards;
}

@keyframes circleStroke {
  to { stroke-dashoffset: 0; }
}
@keyframes checkStroke {
  to { stroke-dashoffset: 0; }
}

.msuccess-checklist {
  text-align: left;
  margin: 20px 0 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  background: var(--color-bg-alt);
  border-radius: var(--radius-sm);
  padding: 16px 20px;
}

.msuccess-row {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.875rem;
  color: var(--color-charcoal-md);
}

.msuccess-tick {
  color: var(--color-primary);
  font-weight: 700;
  flex-shrink: 0;
}

.modal-panel[hidden] { display: none !important; }

@media (max-width: 560px) {
  .modal-card { padding: 28px 24px 32px; }
  .mform-grid { grid-template-columns: 1fr; }
  .mcheck-group { grid-template-columns: 1fr; }
}


/* =========================================================
   PRESS STRIP
   ========================================================= */
.press-strip {
  background: var(--color-charcoal);
  padding: 18px 0;
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.press-strip-inner {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}

.press-label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--color-slate);
  white-space: nowrap;
  flex-shrink: 0;
}

.press-logos {
  display: flex;
  align-items: center;
  gap: 0;
  flex-wrap: nowrap;
  overflow: hidden;
}

.press-logos li {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.22);
  white-space: nowrap;
  padding: 0 24px;
  border-right: 1px solid rgba(255,255,255,0.1);
  transition: color 0.25s ease;
}

.press-logos li:last-child { border-right: none; }

.press-logos li:hover { color: rgba(255,255,255,0.5); }

@media (max-width: 768px) {
  .press-logos { flex-wrap: wrap; }
  .press-logos li { padding: 4px 16px; border-right: none; }
}


/* =========================================================
   SCROLL SPY — upgrade block
   ========================================================= */
.nav-link { position: relative; }

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 14px;
  right: 14px;
  height: 1.5px;
  background: #DFBC67;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.28s cubic-bezier(0.4,0,0.2,1);
  border-radius: 2px;
}

.nav-link:hover::after,
.nav-link.spy-active::after,
.nav-link[aria-current="page"]::after { transform: scaleX(1); }

/* Desktop active page — gold text + gold underline */
.nav-link[aria-current="page"] {
  color: #DFBC67;
  background: rgba(223,188,103,0.07);
}


/* =========================================================
   SOCIAL LINKS — polish + hover lift
   ========================================================= */
.social-link {
  transition: color var(--transition), background var(--transition),
              transform 0.22s cubic-bezier(0.22,1,0.36,1),
              border-color var(--transition) !important;
}
.social-link:hover {
  transform: translateY(-3px);
  color: #DFBC67 !important;
  border-color: rgba(223,188,103,0.45) !important;
  background: rgba(223,188,103,0.08) !important;
}


/* =========================================================
   TESTIMONIAL SLIDER DOTS — larger tap target
   ========================================================= */
.slider-dot {
  width: 8px !important;
  height: 8px !important;
  cursor: pointer;
  transition: background 0.25s ease, transform 0.22s cubic-bezier(0.22,1,0.36,1),
              width 0.25s ease !important;
}
.slider-dot.active {
  width: 24px !important;
  border-radius: 4px !important;
}
.slider-dot:hover { transform: scale(1.25); }


/* =========================================================
   NAVBAR — glass on scroll
   ========================================================= */
.navbar.scrolled {
  background: rgba(9, 11, 19, 0.88) !important;
  backdrop-filter: blur(24px) saturate(200%);
  -webkit-backdrop-filter: blur(24px) saturate(200%);
  border-bottom: 1px solid rgba(255,255,255,0.07) !important;
  box-shadow: 0 4px 40px rgba(0,0,0,0.35);
}


/* =========================================================
   NAVBAR — brand mark with gold border-bottom on scroll
   ========================================================= */
.navbar.scrolled {
  border-bottom: 1px solid rgba(223,188,103,0.12) !important;
}


/* =========================================================
   TESTIMONIALS — dark section
   ========================================================= */
.testimonials-section {
  background: #0D1117 !important;
  position: relative;
  overflow: hidden;
}

.testimonials-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(19,24,94,0.08) 0%, transparent 55%);
  pointer-events: none;
}

.testimonials-section .section-eyebrow { color: #DFBC67 !important; }
.testimonials-section .section-heading { color: #ffffff !important; }

.testimonial-card > blockquote {
  background: rgba(255,255,255,0.04) !important;
  border: 1px solid rgba(255,255,255,0.08) !important;
  backdrop-filter: blur(10px);
}

.testimonial-text {
  color: rgba(255,255,255,0.75) !important;
  font-style: normal !important;
  font-size: 1.04rem !important;
  line-height: 1.82 !important;
}

.testimonial-quote-icon {
  color: #DFBC67 !important;
  opacity: 0.30 !important;
}

.author-name  { color: #ffffff !important; }
.author-title { color: rgba(255,255,255,0.38) !important; }

.slider-btn {
  background: rgba(255,255,255,0.04) !important;
  border-color: rgba(255,255,255,0.10) !important;
  color: rgba(255,255,255,0.65) !important;
  transition: background 0.25s ease, border-color 0.25s ease, color 0.25s ease, transform 0.22s cubic-bezier(0.22,1,0.36,1) !important;
}

.slider-btn:hover {
  background: rgba(223,188,103,0.12) !important;
  border-color: #DFBC67 !important;
  color: #DFBC67 !important;
  transform: scale(1.08) !important;
}

.slider-dot { background: rgba(255,255,255,0.16) !important; }
.slider-dot.active { background: #DFBC67 !important; }


/* =========================================================
   FAQ SECTION — upgrade block
   ========================================================= */
.faq-item {
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-bottom: 10px;
  background: var(--color-bg);
  transition: box-shadow 0.28s ease, border-color 0.28s ease;
}

.faq-item:has(.faq-question[aria-expanded="true"]) {
  box-shadow: 0 6px 28px rgba(15,23,42,0.08);
  border-color: rgba(19,24,94,0.25);
}

.faq-question {
  padding: 20px 24px !important;
  font-size: 0.95rem;
  font-weight: 600;
}

.faq-answer { padding: 0 24px; }
.faq-answer p { padding-bottom: 20px; line-height: 1.78; }
.faq-answer.open { max-height: 400px !important; }


/* =========================================================
   FAQ — more polished open state
   ========================================================= */
.faq-item.open .faq-question {
  color: var(--color-primary) !important;
}
.faq-answer {
  border-left: 2px solid rgba(19,24,94,0.12);
  padding-left: 16px;
  margin-left: 4px;
}


/* =========================================================
   FOOTER — upgrade blocks
   ========================================================= */
.site-footer {
  background: linear-gradient(160deg, #0A0F1E 0%, #0D1220 100%) !important;
  position: relative;
}

.site-footer::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(19,24,94,0.5), transparent);
}

.footer-tagline {
  font-size: 0.84rem;
  color: rgba(255,255,255,0.32);
  line-height: 1.65;
  margin-top: 16px;
  max-width: 260px;
}

/* =========================================================
   FOOTER — top accent in gold
   ========================================================= */
.site-footer::before {
  background: linear-gradient(to right, transparent, rgba(223,188,103,0.25), transparent) !important;
}

.footer-col-heading { color: rgba(255,255,255,0.60); }

.footer-links-col a {
  transition: color var(--transition), padding-left var(--transition);
}
.footer-links-col a:hover {
  color: #DFBC67;
  padding-left: 4px;
}


/* =========================================================
   MODAL — glassmorphism
   ========================================================= */
.modal-overlay {
  background: rgba(9,11,19,0.78) !important;
  backdrop-filter: blur(12px) saturate(160%);
  -webkit-backdrop-filter: blur(12px) saturate(160%);
}

.modal-card {
  box-shadow:
    0 32px 80px rgba(0,0,0,0.40),
    0 0 0 1px rgba(255,255,255,0.06) !important;
  border-radius: 20px !important;
}


/* =========================================================
   PRESS STRIP — marquee animation upgrade
   ========================================================= */
.press-strip {
  background: linear-gradient(180deg, #060a14 0%, #080c18 100%) !important;
  border-top: 1px solid rgba(255,255,255,0.06) !important;
  border-bottom: 1px solid rgba(255,255,255,0.06) !important;
  overflow: hidden;
  padding: 0 !important;
  position: relative;
}

/* Fade edges on the logos track */
.press-strip::before,
.press-strip::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 120px;
  z-index: 2;
  pointer-events: none;
}
.press-strip::before {
  left: 0;
  background: linear-gradient(to right, #060a14 0%, transparent 100%);
}
.press-strip::after {
  right: 0;
  background: linear-gradient(to left, #060a14 0%, transparent 100%);
}

.press-strip-inner {
  display: flex !important;
  align-items: center !important;
  gap: 0 !important;
  overflow: hidden;
  height: 56px;
  contain: layout style;
}

/* Fixed label column */
.press-label {
  flex-shrink: 0 !important;
  font-size: 0.60rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.18em !important;
  text-transform: uppercase !important;
  color: #DFBC67 !important;
  white-space: nowrap !important;
  padding-right: 28px !important;
  border-right: 1px solid rgba(255,255,255,0.08) !important;
  margin-right: 0 !important;
  opacity: 0.7;
  position: relative;
  z-index: 3;
}

.press-logos {
  display: flex !important;
  flex-wrap: nowrap !important;
  gap: 0 !important;
  width: max-content;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  align-items: center !important;
  height: 100%;
}

.press-logos.marquee-ready {
  animation: marqueeScroll 32s linear infinite;
  will-change: transform;
  transform: translateZ(0);
}

.press-logos.marquee-ready:hover { animation-play-state: paused; }

@keyframes marqueeScroll {
  0%   { transform: translate3d(0, 0, 0); }
  100% { transform: translate3d(-50%, 0, 0); }
}

.press-logos li {
  font-size: 0.75rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.08em !important;
  text-transform: uppercase !important;
  color: rgba(255,255,255,0.28) !important;
  transition: color 0.3s ease;
  white-space: nowrap;
  padding: 0 36px !important;
  position: relative;
}

/* Dot separator between items */
.press-logos li::after {
  content: '·';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(255,255,255,0.12);
  font-size: 1rem;
}

.press-logos li:hover { color: rgba(255,255,255,0.60) !important; }


/* =========================================================
   SCROLL PROGRESS BAR — gold line upgrade
   ========================================================= */
.scroll-progress-bar {
  position: fixed;
  top: 0; left: 0;
  width: 0%;
  height: 3px;
  background: linear-gradient(90deg, #DFBC67 0%, #F0CA7A 60%, #DFBC67 100%);
  z-index: 10001;
  transform-origin: left;
  will-change: width;
  box-shadow: 0 0 10px rgba(223,188,103,0.6);
  transition: width 0.05s linear;
}


/* =========================================================
   TESTIMONIALS — subtle background texture
   ========================================================= */
.testimonials-section {
  background-color: #0D1117 !important;
  position: relative;
}

/* Add subtle background image with heavy dark overlay */
.testimonials-section::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('https://images.unsplash.com/photo-1600585154526-990dced4db0d?w=1400&q=30');
  background-size: cover;
  background-position: center;
  opacity: 0.04;
  pointer-events: none;
  z-index: 0;
}

.testimonials-section .container,
.testimonials-section .slider-wrapper,
.testimonials-section .section-header { position: relative; z-index: 1; }


/* =========================================================
   TESTIMONIALS — deeper glassmorphism quote
   ========================================================= */
.testimonial-card > blockquote {
  border: 1px solid rgba(255,255,255,0.06) !important;
  background: rgba(255,255,255,0.03) !important;
  backdrop-filter: blur(8px) !important;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.testimonial-card > blockquote:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.25) !important;
}


/* =========================================================
   FOOTER — newsletter input + btn alignment
   ========================================================= */
.newsletter-input-group {
  gap: 8px;
}

/* ── GDPR Consent checkboxes ─────────────────────────────── */
.mfield-consent,
.nl-consent,
.ct-consent {
  margin-top: 1rem;
}

.mConsent-label,
.nl-consent-label,
.ct-consent-label {
  display:     flex;
  gap:         10px;
  align-items: flex-start;
  cursor:      pointer;
  font-size:   .8rem;
  line-height: 1.5;
  color:       var(--color-slate, #64748B);
}

.nl-consent-label {
  color: rgba(255,255,255,.55);
}

.mConsent-label input[type="checkbox"],
.nl-consent-label input[type="checkbox"],
.ct-consent-label input[type="checkbox"] {
  flex-shrink:   0;
  width:         16px;
  height:        16px;
  margin-top:    2px;
  accent-color:  var(--color-navy, #13185E);
  cursor:        pointer;
}

.mConsent-label a,
.nl-consent-label a,
.ct-consent-label a {
  color:           var(--color-gold, #DFBC67);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.nl-consent-err,
.ct-consent-err,
#errConsent {
  display:    block;
  font-size:  .75rem;
  color:      #EF4444;
  margin-top: .3rem;
  min-height: 1em;
}

.newsletter-captcha {
  margin-top: .75rem;
  display: flex;
  justify-content: flex-start;
  /* Invert to dark theme so the white captcha card blends with the dark footer */
  filter: invert(1) hue-rotate(180deg) brightness(.85);
  opacity: .9;
}

.newsletter-success {
  color: #10B981 !important;
  font-weight: 600 !important;
  font-size: 0.875rem;
}


/* =========================================================
   RESPONSIVE — LARGE TABLET (900–1024px)
   Tighten navbar so links don't overflow
   ========================================================= */
@media (max-width: 1024px) {
  .nav-link { padding: 8px 10px; font-size: 0.82rem; }
  .nav-portal-link { font-size: 0.82rem; }

  .footer-top-grid {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 36px;
  }
  .footer-brand    { grid-column: 1 / -1; }
  .footer-newsletter { grid-column: 1 / -1; }
}

/* At ~900px the nav gets really tight — hide portal link early */
@media (max-width: 900px) {
  .nav-portal-link { display: none; }
  .nav-link { padding: 8px 8px; font-size: 0.8rem; }
}

/* Mobile CTA list item — hidden on desktop, shown in drawer on mobile */
.nav-li-cta { display: none; }

/* =========================================================
   BODY OVERLAY — when mobile nav is open
   ========================================================= */
body.nav-open::before {
  content: '';
  position: fixed;
  inset: 0;
  top: var(--navbar-h);
  background: rgba(0, 0, 0, 0.55);
  z-index: 998;
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
  animation: overlayFadeIn 0.2s ease forwards;
}

@keyframes overlayFadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* =========================================================
   RESPONSIVE — MOBILE (<768px) shared
   ========================================================= */
@media (max-width: 768px) {
  :root { --navbar-h: 64px; }

  /* ── Navbar container — logo + toggle only ────────────── */
  .nav-toggle { display: flex; }

  /* Hide "Get Started" button from main navbar bar on mobile
     (moved inside the drawer as .nav-mobile-cta) */
  .nav-actions .btn-sm { display: none; }
  .nav-portal-link     { display: none; }
  .nav-actions         { display: none; }

  /* ── Preloader — safe on small screens ───────────────── */
  .preloader-content { max-width: 100%; padding: 0 40px; }
  .preloader-logo img { height: 56px !important; }
  .preloader-tagline  { font-size: 0.60rem; letter-spacing: 0.16em; }

  /* ── Mobile nav drawer ────────────────────────────────── */
  .nav-links {
    display: none;
    position: fixed;
    top: var(--navbar-h);
    left: 0; right: 0;
    background: rgba(7, 10, 22, 0.98);
    backdrop-filter: blur(24px) saturate(200%);
    -webkit-backdrop-filter: blur(24px) saturate(200%);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px 0 24px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    z-index: 999;
    box-shadow: 0 20px 50px rgba(0,0,0,0.6);
  }

  .nav-links.open {
    display: flex;
    animation: navSlideDown 0.25s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  }

  @keyframes navSlideDown {
    from { opacity: 0; transform: translateY(-8px); }
    to   { opacity: 1; transform: translateY(0); }
  }

  /* Suppress desktop underline inside the drawer */
  .nav-link::after { display: none; }

  /* Individual nav links */
  .nav-link {
    width: 100%;
    padding: 14px 24px;
    border-radius: 0;
    font-size: 0.97rem;
    font-weight: 500;
    color: rgba(255,255,255,0.65);
    position: relative;
    transition: color var(--transition), background var(--transition);
  }

  .nav-link:hover {
    color: rgba(255,255,255,0.95);
    background: rgba(255,255,255,0.04);
  }

  /* ── Active page — gold pill indicator ────────────────── */
  .nav-link[aria-current="page"],
  .nav-link.spy-active {
    color: #DFBC67 !important;
    font-weight: 700 !important;
    background: transparent !important;
  }

  /* Gold dot indicator on the right */
  .nav-link[aria-current="page"]::before,
  .nav-link.spy-active::before {
    content: '';
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #DFBC67;
    box-shadow: 0 0 8px rgba(223,188,103,0.6);
  }

  /* ── Mobile CTA button (inside drawer) ───────────────── */
  .nav-li-cta {
    display: block;
    padding: 16px 20px 4px;
    margin-top: 4px;
    border-top: 1px solid rgba(255,255,255,0.06);
  }

  .nav-mobile-cta {
    display: block;
    width: 100%;
    padding: 13px 20px;
    background: linear-gradient(135deg, #DFBC67 0%, #C4A044 100%);
    color: #0D1248;
    font-family: var(--font-sans);
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    text-align: center;
    border-radius: 8px;
    text-decoration: none;
    transition: opacity 0.2s ease, transform 0.2s ease;
    box-shadow: 0 4px 16px rgba(223,188,103,0.35);
  }

  .nav-mobile-cta:hover {
    opacity: 0.92;
    transform: translateY(-1px);
  }

  /* Modal — bottom sheet on mobile */
  .modal-overlay {
    padding: 0;
    align-items: flex-end;
  }
  .modal-card {
    max-width: 100%;
    width: 100%;
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
    max-height: 90dvh;
    max-height: 90vh;
    max-height: 90dvh;
    overflow: hidden;
    padding: 24px 20px 0;
    display: flex;
    flex-direction: column;
  }

  /* Steps header never scrolls */
  .modal-card .modal-steps { flex-shrink: 0; }

  /* Each panel fills remaining card height as a flex column */
  .modal-card .modal-panel:not([hidden]) {
    flex: 1;
    display: flex;
    flex-direction: column;
    min-height: 0;
    overflow: hidden;
  }

  /* Scrollable form content */
  .modal-body {
    flex: 1;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
  }

  /* Footer always pinned at the bottom — no sticky needed */
  .modal-card .modal-footer {
    flex-shrink: 0;
    background: var(--color-bg);
    padding: 12px 20px max(28px, env(safe-area-inset-bottom));
    margin: 0 -20px;
    border-top: 1px solid var(--color-border);
  }

  /* Testimonials */
  .testimonials-section { padding: 64px 0; }
  .testimonial-card > blockquote { padding: 28px 20px; }
  .testimonial-text { font-size: 0.95rem; }

  /* Footer */
  .footer-top { padding: 48px 0 36px; }
  .footer-top-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-brand      { grid-column: auto; }
  .footer-newsletter { grid-column: auto; }

  .newsletter-input-group { flex-direction: column; }
  .newsletter-input {
    border-right: 1px solid rgba(255,255,255,0.12);
    border-bottom: none;
    border-radius: var(--radius-sm) var(--radius-sm) 0 0;
  }
  .newsletter-btn {
    border-radius: 0 0 var(--radius-sm) var(--radius-sm);
    width: 100%;
    padding: 14px;
  }
}


/* =========================================================
   RESPONSIVE — SMALL MOBILE (<480px)
   ========================================================= */
@media (max-width: 480px) {
  /* Logo text can be slightly smaller */
  .logo-text { font-size: 1.05rem; }
  .nav-logo-img { height: 42px; }

  /* Buttons stretch full-width in hero CTAs and CTA sections */
  .hero-ctas,
  .ab-hero-ctas,
  .pf-hero-ctas {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }

  .hero-ctas .btn,
  .ab-hero-ctas .btn,
  .pf-hero-ctas .btn {
    width: 100%;
    justify-content: center;
  }

  /* Preloader extra small */
  .preloader-content  { padding: 0 32px; }
  .preloader-logo img { height: 48px !important; }
  .preloader-tagline  { font-size: 0.58rem; letter-spacing: 0.13em; }

  /* Testimonial quote */
  .testimonial-card > blockquote { padding: 24px 16px; }
  .testimonial-text { font-size: 0.9rem; }

  /* Modal padding */
  .modal-card { padding: 24px 20px 36px; }
  .mform-grid { gap: 12px; }
}
