/* Landing-specific overrides — minimal, most styles come from base.css */

body {
  background: var(--grad-bg);
  position: relative;
  overflow-x: hidden;
}

html, body {
  max-width: 100%;
  overflow-x: hidden;
}

/* ── Navbar fixed ── */
#nav-wrap {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  transition: background-color 0.35s ease, box-shadow 0.35s ease, backdrop-filter 0.35s ease, border-color 0.35s ease;
  border-bottom: 1px solid transparent;
}

#nav-wrap.scrolled {
  background: rgba(255,255,255,0.72);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 14px 36px rgba(15, 23, 42, 0.08);
  border-bottom-color: rgba(15, 23, 42, 0.08);
}

#nav-wrap.scrolled #navbar {
  padding-top: 14px !important;
  padding-bottom: 14px !important;
}

#navbar {
  transition: padding 0.3s ease, transform 0.3s ease;
}

#beneficios,
#industrias,
#cta,
#pricing {
  scroll-margin-top: 110px;
}

.nav-brand {
  flex-shrink: 0;
  min-width: 0;
}

.nav-links {
  gap: 40px;
  font-size: 15.5px;
  flex-wrap: wrap;
}

.nav-links a {
  font-weight: 500;
  white-space: nowrap;
}

.nav-actions {
  gap: 14px !important;
  flex-wrap: wrap;
}

.nav-login {
  font-size: 15px;
  font-weight: 600;
  color: #0a0a0a !important;
  padding: 8px 18px;
  border-radius: 8px;
  border: none;
  background: #fff !important;
  transition: background 0.2s, color 0.2s;
  display: inline-flex;
  align-items: center;
}

.nav-login:hover {
  background: rgba(255,255,255,0.85) !important;
  color: #0a0a0a !important;
}

#hero-inner,
.benefit-card,
.industry-card,
.industry-card-name {
  min-width: 0;
}

.industry-card-name {
  overflow-wrap: break-word;
  word-break: normal;
}

.nexo-pricing-section {
  padding-bottom: 56px;
}

.nexo-pricing-card {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(260px, 0.82fr);
  gap: 28px;
  align-items: center;
  padding: 30px 32px;
  background: #ffffff;
  border: 1px solid rgba(226, 232, 240, 0.95);
  border-radius: 22px;
  box-shadow: 0 18px 48px rgba(15, 23, 42, 0.08);
}

.nexo-pricing-left {
  min-width: 0;
}

.nexo-pricing-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  background: #eff6ff;
  color: #0f172a;
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 16px;
}

.nexo-pricing-badge svg {
  width: 15px;
  height: 15px;
  color: #2563eb;
  flex-shrink: 0;
}

/* Selector de planes en pricing */
.nexo-plans-tabs {
  display: flex;
  gap: 8px;
  background: rgba(241, 245, 249, 0.8);
  border: 1px solid rgba(226, 232, 240, 0.8);
  padding: 4px;
  border-radius: 999px;
  margin-bottom: 24px;
  width: fit-content;
}

.nexo-plans-tab {
  padding: 8px 16px;
  font-size: 13px;
  font-weight: 500;
  border-radius: 999px;
  color: #475569;
  transition: all 0.23s cubic-bezier(0.4, 0, 0.2, 1);
  background: transparent;
  border: none;
  cursor: pointer;
}

.nexo-plans-tab:hover {
  color: #0f172a;
  background: rgba(255, 255, 255, 0.5);
}

.nexo-plans-tab.active {
  background: #ffffff;
  color: #2563eb;
  font-weight: 600;
  box-shadow: 0 2px 8px rgba(37, 99, 235, 0.08);
}

/* Contenedor de cabecera de pricing */
.nexo-pricing-header-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  flex-wrap: wrap;
}

/* Badge de recomendado */
.nexo-recommended-badge {
  display: inline-flex;
  align-items: center;
  padding: 4px 10px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #ffffff;
  background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
  border-radius: 999px;
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.16);
  animation: nexo-badge-bounce 1s ease infinite alternate;
}

@keyframes nexo-badge-bounce {
  0% { transform: translateY(0); }
  100% { transform: translateY(-2px); }
}

/* Contenedor de acciones en pricing */
.nexo-pricing-actions {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 18px;
}

.nexo-pricing-cta-secondary {
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 600;
  padding: 0 24px;
  border-radius: 999px;
  cursor: pointer;
  transition: all 0.2s;
  box-shadow: var(--shadow-sm);
  background: #ffffff;
  border: 1px solid rgba(226, 232, 240, 0.9);
  color: #475569;
}

.nexo-pricing-cta-secondary:hover {
  background: #f8fafc;
  color: #0f172a;
  border-color: rgba(203, 213, 225, 0.9);
}

/* Ajustes responsivos adicionales */
@media (max-width: 768px) {
  .nexo-plans-tabs {
    width: 100%;
    justify-content: center;
  }
  .nexo-plans-tab {
    flex: 1;
    text-align: center;
    padding: 8px 12px;
  }
  .nexo-pricing-actions {
    flex-direction: column;
    align-items: stretch;
  }
  .nexo-pricing-cta, .nexo-pricing-cta-secondary {
    width: 100%;
    max-width: none;
    justify-content: center;
  }
}

.nexo-pricing-title {
  font-size: clamp(30px, 4vw, 42px);
  line-height: 1.02;
  color: #0f172a;
  margin-bottom: 12px;
}

.nexo-pricing-price {
  display: flex;
  align-items: flex-end;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 12px;
}

.nexo-pricing-price__amount {
  font-size: clamp(34px, 5vw, 48px);
  line-height: 0.98;
  font-weight: 700;
  letter-spacing: -0.04em;
  color: #2563eb;
}

.nexo-pricing-price__meta {
  font-size: 15px;
  color: #475569;
  padding-bottom: 5px;
}

.nexo-pricing-copy {
  max-width: 42ch;
  font-size: 15px;
  line-height: 1.55;
  color: #475569;
  margin-bottom: 20px;
}

.nexo-pricing-benefits {
  list-style: none;
  padding: 0;
  margin: 0 0 22px;
  display: grid;
  gap: 12px;
}

.nexo-pricing-benefit {
  display: grid;
  grid-template-columns: 36px 18px minmax(0, 1fr);
  gap: 10px;
  align-items: center;
  color: #0f172a;
  font-size: 14px;
  line-height: 1.35;
}

.nexo-pricing-benefit__icon,
.nexo-pricing-benefit__check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.nexo-pricing-benefit__icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #eff6ff;
  color: #2563eb;
}

.nexo-pricing-benefit__icon svg {
  width: 17px;
  height: 17px;
}

.nexo-pricing-benefit__check {
  width: 18px;
  height: 18px;
  color: #1e3a8a;
}

.nexo-pricing-benefit__check svg {
  width: 14px;
  height: 14px;
}

.nexo-pricing-cta {
  justify-content: space-between;
  width: 100%;
  max-width: 300px;
  padding: 12px 18px;
  font-size: 14px;
}

.nexo-pricing-cta svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.nexo-pricing-proof {
  margin-top: 10px;
  font-size: 12px;
  color: #94a3b8;
}

.nexo-pricing-right {
  display: grid;
  gap: 18px;
  justify-items: center;
}

.nexo-pricing-visual {
  position: relative;
  width: min(100%, 250px);
  aspect-ratio: 1 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.nexo-pricing-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(37, 99, 235, 0.14);
  animation: nexo-pricing-pulse 4.6s ease-out infinite;
}

.nexo-pricing-ring--outer {
  inset: 12px;
}

.nexo-pricing-ring--inner {
  inset: 38px;
  animation-delay: 1.2s;
}

.nexo-pricing-avatar {
  position: relative;
  z-index: 1;
  width: 232px;
  aspect-ratio: 9 / 16;
  border-radius: 28px;
  background: #ffffff;
  box-shadow: 0 16px 36px rgba(37, 99, 235, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.mascot-container {
  overflow: hidden;
}

.mascot-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  transform: scale(1.02);
  border-radius: 28px;
  display: block;
}

.nexo-pricing-trust {
  width: 100%;
  max-width: 280px;
  display: grid;
  grid-template-columns: 40px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  padding: 14px 16px;
  background: #f8fafc;
  border: 1px solid #dbeafe;
  border-radius: 16px;
}

.nexo-pricing-trust__icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: #eff6ff;
  color: #2563eb;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.nexo-pricing-trust__icon svg {
  width: 18px;
  height: 18px;
}

.nexo-pricing-trust strong {
  display: block;
  margin-bottom: 2px;
  font-size: 14px;
  color: #0f172a;
}

.nexo-pricing-trust p {
  margin: 0;
  font-size: 12.5px;
  line-height: 1.4;
  color: #475569;
}

@keyframes nexo-pricing-pulse {
  0% {
    transform: scale(0.96);
    opacity: 0.7;
  }
  70% {
    transform: scale(1.02);
    opacity: 0.28;
  }
  100% {
    transform: scale(1.05);
    opacity: 0;
  }
}

@media (max-width: 768px) {
  .nexo-pricing-section {
    padding-bottom: 48px;
  }

  .nexo-pricing-card {
    grid-template-columns: 1fr;
    gap: 22px;
    padding: 22px 18px;
  }

  .nexo-pricing-title {
    font-size: 34px;
  }

  .nexo-pricing-price__meta {
    font-size: 14px;
    padding-bottom: 4px;
  }

  .nexo-pricing-benefit {
    grid-template-columns: 34px 18px minmax(0, 1fr);
    gap: 8px;
    align-items: start;
  }

  .nexo-pricing-benefit__icon {
    width: 34px;
    height: 34px;
  }

  .nexo-pricing-cta,
  .nexo-pricing-trust,
  .nexo-pricing-visual {
    max-width: none;
  }

  .nexo-pricing-visual {
    width: min(100%, 248px);
  }

  .nexo-pricing-avatar {
    width: 188px;
  }

  .mascot-video {
    object-position: center 28%;
    transform: scale(1.01);
  }
}

@media (min-width: 1024px) {
  #navbar { padding-top: 24px; padding-bottom: 24px; }
}

/* ── Scroll reveal ── */
.scroll-reveal {
  opacity: 0;
  transform: translate3d(0, 20px, 0);
  transition: opacity 0.62s cubic-bezier(0.22, 1, 0.36, 1), transform 0.62s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--stagger, 0ms);
  will-change: opacity, transform;
}

.scroll-reveal-up {
  transform: translate3d(0, 20px, 0);
}

.scroll-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

/* Stagger para grids de cards */
.benefit-card.scroll-reveal  { transition-delay: var(--stagger, 0ms); }
.industry-card.scroll-reveal { transition-delay: var(--stagger, 0ms); }

.benefit-card {
  padding: 24px;
  min-height: 168px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.industries-tabs {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 20px;
}

.industry-tab {
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid var(--glass-stroke);
  background: rgba(255, 255, 255, 0.72);
  color: var(--text-2);
  font-size: 13px;
  font-weight: 600;
  line-height: 1;
  transition: all 0.2s ease;
}

.industry-tab:hover {
  background: var(--glass-2);
  border-color: rgba(59,130,246,0.2);
}

.industry-tab.active {
  background: linear-gradient(135deg, rgba(59,130,246,0.14), rgba(14,165,233,0.12));
  border-color: rgba(59,130,246,0.35);
  color: var(--text-1);
  box-shadow: 0 10px 24px rgba(59,130,246,0.12);
}

.industries-panel {
  position: relative;
  overflow: hidden;
}

.industries-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  gap: 12px;
}

.industries-grid.is-switching {
  animation: industries-roll-out 0.2s ease forwards;
}

.industries-grid.is-entering {
  animation: industries-roll-in 0.28s cubic-bezier(0.22, 1, 0.36, 1);
}

@keyframes industries-roll-out {
  from {
    opacity: 1;
    transform: translateY(0) rotateX(0deg) scale(1);
  }
  to {
    opacity: 0;
    transform: translateY(10px) rotateX(-8deg) scale(0.985);
  }
}

@keyframes industries-roll-in {
  from {
    opacity: 0;
    transform: translateY(12px) rotateX(8deg) scale(0.985);
  }
  to {
    opacity: 1;
    transform: translateY(0) rotateX(0deg) scale(1);
  }
}

.industry-card {
  padding: 16px 14px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid var(--glass-stroke);
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 72px;
  min-width: 0;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.industry-card:hover {
  background: rgba(255, 255, 255, 0.92);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: rgba(59,130,246,0.22);
}

.industry-card-icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.12), 0 8px 18px rgba(0,0,0,0.08);
}

.industry-card-name {
  font-size: 13px;
  color: var(--text-2);
  line-height: 1.35;
  text-align: left;
  min-width: 0;
  width: 100%;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.benefit-card {
  padding: 24px;
  min-height: 168px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.benefit-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  background: var(--glass-2);
}

@media (max-width: 1024px) {
  .nav-links {
    gap: 28px;
    font-size: 15px;
  }

  #hero-section {
    gap: 28px !important;
  }

  .hero-copy {
    max-width: 620px !important;
  }
}

@media (max-width: 768px) {
  #nav-wrap.scrolled {
    background: rgba(255,255,255,0.82);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.06);
  }

  .scroll-reveal,
  .scroll-reveal-up {
    transform: translate3d(0, 12px, 0);
    transition-duration: 0.42s;
    transition-delay: var(--stagger-mobile, 0ms);
  }

  #nav-wrap {
    position: sticky;
    top: 0;
    background: rgba(240,242,245,0.92);/* overridden in dark by JS-set data-theme */
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--glass-stroke);
  }

  #page-body {
    padding-top: 0 !important;
  }

  #navbar {
    width: 100%;
    max-width: 100%;
    padding-top: 14px !important;
    padding-bottom: 14px !important;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center !important;
    align-items: center !important;
  }

  .nav-brand {
    width: 100%;
    display: flex;
    justify-content: center;
    text-align: center;
  }

  .nav-links {
    display: flex !important;
    width: 100%;
    max-width: 100%;
    justify-content: center;
    gap: 10px 18px;
    flex-wrap: wrap;
    font-size: 13px;
  }

  .nav-actions {
    display: flex !important;
    width: 100%;
    max-width: 100%;
    justify-content: center;
    gap: 10px !important;
    flex-wrap: wrap;
  }

  .nav-actions .nav-login,
  .nav-actions .btn-coral {
    flex: 1 1 0;
    min-width: 0;
    max-width: 100%;
    justify-content: center;
    text-align: center;
  }

  #hero-section {
    gap: 22px !important;
    padding-top: 26px !important;
    padding-bottom: 44px !important;
  }

  .hero-badge {
    margin-bottom: 20px !important;
    max-width: 100%;
    padding: 7px 12px !important;
    text-align: center;
    justify-content: center;
    flex-wrap: wrap;
  }

  .hero-title {
    font-size: clamp(32px, 10vw, 48px) !important;
    line-height: 1.08 !important;
    margin-bottom: 18px !important;
  }

  .hero-copy {
    max-width: 100% !important;
    font-size: 16px !important;
    line-height: 1.6 !important;
    margin-bottom: 28px !important;
  }

  .hero-actions {
    margin-bottom: 26px !important;
  }

  .hero-actions .btn-coral {
    width: min(100%, 320px);
    justify-content: center;
  }

  .hero-checks {
    gap: 12px !important;
    display: grid !important;
    grid-template-columns: 1fr;
    justify-items: center;
  }

  #beneficios {
    padding-top: 28px !important;
    padding-bottom: 28px !important;
  }

  #benefits-grid {
    grid-template-columns: 1fr !important;
    gap: 12px !important;
  }

  .benefit-card {
    min-height: auto;
    padding: 20px;
    width: 100%;
    box-sizing: border-box;
  }

  #industries-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 8px !important;
  }

  .industries-tabs {
    justify-content: flex-start;
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 4px;
    margin-right: -2px;
    scrollbar-width: none;
  }

  .industries-tabs::-webkit-scrollbar {
    display: none;
  }

  .industry-tab {
    flex: 0 0 auto;
    white-space: nowrap;
  }

  .industry-card {
    padding: 14px 12px;
    gap: 8px;
    width: 100%;
    box-sizing: border-box;
  }

  #industrias .glass-strong,
  .container > .glass-strong {
    padding: 24px !important;
  }

  footer.container {
    justify-content: center !important;
    text-align: center;
  }

  .support-modal__dialog {
    width: min(100% - 20px, 560px);
    margin: 18px auto;
    padding: 24px 16px 18px;
  }

  .support-form__grid {
    grid-template-columns: 1fr;
  }

  .support-form__actions {
    justify-content: stretch;
  }

  .support-submit {
    width: 100%;
  }
}

/* ── Final CTA section ── */
.cta-box {
  position: relative;
  border-radius: 32px;
  background: linear-gradient(165deg, rgba(219,234,254,0.5) 0%, rgba(239,246,255,0.6) 35%, rgba(255,255,255,0.45) 100%);
  border: 1px solid rgba(59,130,246,0.10);
  overflow: visible;
  min-height: 420px;
}

.cta-content {
  display: flex;
  align-items: stretch;
  min-height: inherit;
}

/* ── Badge calendario — absoluto arriba-izq ── */
.cta-icon-badge {
  position: absolute;
  top: 44px;
  left: 52px;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(255,255,255,0.92);
  border: 1px solid rgba(59,130,246,0.10);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(59,130,246,0.07);
  z-index: 3;
}

/* ── Decoratives ── */
.cta-arc {
  position: absolute;
  width: 160px;
  height: 200px;
  top: 60px;
  left: 56px;
  z-index: 1;
  opacity: 0.7;
  pointer-events: none;
}
.cta-dot {
  position: absolute;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--coral);
  z-index: 2;
  opacity: 0.4;
}
.cta-dot-1 { top: 230px; left: 70px; }
.cta-dot-2 { top: 290px; left: 112px; }
.cta-sparkle {
  position: absolute;
  color: rgba(30,64,175,0.3);
  z-index: 2;
  pointer-events: none;
}
.cta-sparkle-1 { top: 30px; left: 48%; font-size: 18px; }
.cta-sparkle-2 { top: 75px; right: 36%; font-size: 12px; opacity: 0.25; }
.cta-sparkle-3 { top: 52%; right: 44%; font-size: 10px; opacity: 0.18; }

/* ── Left column: text ── */
.cta-text {
  flex: 1 1 55%;
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 80px 40px 80px 100px;
  text-align: center;
  position: relative;
  z-index: 2;
}

.cta-title {
  font-size: clamp(38px, 5.2vw, 58px);
  line-height: 1.06;
  letter-spacing: -0.025em;
  color: var(--text-1);
}

.cta-title-accent {
  font-style: italic;
  color: var(--coral);
}

.cta-desc {
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-2);
  margin-top: 22px;
  max-width: 420px;
}

.cta-buttons {
  display: flex;
  gap: 16px;
  margin-top: 38px;
  flex-wrap: wrap;
  justify-content: center;
}

.cta-btn {
  padding: 17px 40px;
  font-size: 16px;
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.support-modal[hidden] { display: none; }
.support-modal { position: fixed; inset: 0; z-index: 220; }
.support-modal__backdrop { position: absolute; inset: 0; background: rgba(15, 23, 42, 0.54); backdrop-filter: blur(10px); }
.support-modal__dialog {
  position: relative;
  width: min(100% - 32px, 560px);
  margin: min(7vh, 56px) auto;
  background: rgba(255,255,255,0.96);
  border: 1px solid rgba(148, 163, 184, 0.28);
  border-radius: 24px;
  box-shadow: 0 28px 70px rgba(15, 23, 42, 0.2);
  padding: 28px 24px 24px;
}
.support-modal__close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 36px;
  height: 36px;
  border: none;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.06);
  color: var(--text-2);
  font-size: 22px;
  cursor: pointer;
}
.support-modal__header { margin-bottom: 18px; }
.support-modal__eyebrow {
  margin: 0 0 6px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--coral);
}
.support-modal__title { margin: 0 0 8px; font-size: clamp(28px, 4vw, 36px); line-height: 1; }
.support-modal__copy { margin: 0; color: var(--text-2); font-size: 14px; line-height: 1.5; }
.support-form { display: grid; gap: 14px; }
.support-form__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.support-field { display: grid; gap: 7px; }
.support-field span { font-size: 13px; font-weight: 600; color: var(--text-1); }
.support-field input,
.support-field textarea {
  width: 100%;
  border: 1px solid rgba(148, 163, 184, 0.28);
  border-radius: 14px;
  background: rgba(248, 250, 252, 0.92);
  padding: 13px 14px;
  font: inherit;
  color: var(--text-1);
  resize: vertical;
}
.support-field input:focus,
.support-field textarea:focus {
  outline: none;
  border-color: rgba(255, 122, 89, 0.45);
  box-shadow: 0 0 0 3px rgba(255, 122, 89, 0.12);
}
.support-form__error {
  border-radius: 12px;
  padding: 10px 12px;
  background: rgba(239, 68, 68, 0.1);
  color: #b91c1c;
  font-size: 13px;
}
.support-form__actions { display: flex; justify-content: flex-end; }
.support-submit[disabled] { opacity: 0.7; cursor: wait; }

/* ── Right column: mascot + agenda ── */
.cta-visual {
  position: relative;
  flex: 0 0 44%;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  overflow: visible;
}

.cta-cat {
  display: block;
  width: 360px;
  max-width: none;
  height: auto;
  object-fit: contain;
  object-position: bottom center;
  filter: drop-shadow(0 10px 30px rgba(0,0,0,0.15));
  position: relative;
  z-index: 2;
  margin-top: -60px;
}

/* ── Floating agenda card ── */
.cta-agenda-card {
  position: absolute;
  top: 16px;
  right: 0;
  width: 200px;
  background: rgba(255,255,255,0.94);
  backdrop-filter: blur(8px);
  border-radius: 14px;
  padding: 14px 16px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.08), 0 0 0 1px rgba(59,130,246,0.06);
  z-index: 1;
  font-size: 11px;
  color: var(--text-2);
}

.cta-agenda-header {
  display: flex;
  align-items: center;
  gap: 5px;
  font-weight: 700;
  font-size: 12.5px;
  color: var(--text-1);
  margin-bottom: 10px;
}

.cta-agenda-row {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 7px 0;
  border-top: 1px solid rgba(0,0,0,0.04);
}

.cta-agenda-row strong {
  font-size: 11.5px;
  color: var(--text-1);
  display: block;
  line-height: 1.3;
}

.cta-agenda-row > div > span {
  font-size: 10px;
  color: var(--text-2);
}

.cta-agenda-time {
  font-size: 10.5px;
  font-weight: 600;
  color: var(--coral);
  min-width: 30px;
  flex-shrink: 0;
}

.cta-agenda-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  flex-shrink: 0;
}

.cta-agenda-sync {
  margin-top: 8px;
  padding-top: 7px;
  border-top: 1px solid rgba(0,0,0,0.04);
  font-size: 10.5px;
  color: #22c55e;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 4px;
}

.cta-sync-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #22c55e;
  flex-shrink: 0;
}

/* ── CTA responsive ── */
@media (max-width: 1100px) {
  .cta-text { padding: 60px 32px 60px 80px; }
  .cta-visual { flex: 0 0 40%; }
  .cta-cat { width: 300px; margin-top: -40px; }
  .cta-agenda-card { width: 180px; right: -4px; top: 12px; padding: 12px 14px; }
  .cta-icon-badge { top: 36px; left: 40px; width: 46px; height: 46px; }
}

@media (max-width: 768px) {
  .cta-box { border-radius: 24px; overflow: hidden; min-height: auto; }
  .cta-content { flex-direction: column; min-height: auto; }
  .cta-text { padding: 48px 28px 36px; flex: none; }
  .cta-desc { max-width: 100%; }
  .cta-visual {
    flex: none;
    width: 100%;
    height: 280px;
    justify-content: center;
    overflow: hidden;
  }
  .cta-cat { width: 240px; margin-top: 0; }
  .cta-agenda-card { display: none; }
  .cta-icon-badge { position: static; margin: 0 auto 24px; }
  .cta-arc, .cta-dot, .cta-sparkle { display: none; }
}

@media (max-width: 480px) {
  .cta-text { padding: 36px 20px 28px; }
  .cta-title { font-size: 32px; }
  .cta-btn { width: 100%; padding: 14px 24px; font-size: 15px; }
  .cta-visual { height: 220px; }
  .cta-cat { width: 200px; }
}

@media (prefers-reduced-motion: reduce) {
  #nav-wrap,
  #navbar,
  .scroll-reveal,
  .scroll-reveal-up,
  .benefit-card,
  .industry-card,
  .industries-grid.is-switching,
  .industries-grid.is-entering {
    transition: none !important;
    animation: none !important;
    transform: none !important;
  }

  .scroll-reveal,
  .scroll-reveal-up {
    opacity: 1 !important;
  }
}

@media (max-width: 640px) {
  .container {
    padding-left: 16px !important;
    padding-right: 16px !important;
  }

  .hero-badge {
    font-size: 11.5px !important;
    line-height: 1.25;
  }

  .hero-title br {
    display: none;
  }

  .hero-copy {
    font-size: 15px !important;
  }

  .hero-checks {
    justify-items: stretch;
  }

  .hero-checks > span {
    justify-content: center;
  }

  .benefit-card .serif {
    font-size: 20px !important;
  }

  #industries-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}

@media (max-width: 420px) {
  .nav-links {
    gap: 8px 14px;
    font-size: 12px;
  }

  .nav-actions .nav-login,
  .nav-actions .btn-coral {
    flex: 1 1 100%;
    width: 100%;
  }

  #industries-grid {
    grid-template-columns: 1fr !important;
  }
}
