/* EasyTech — acentos tipo ramp.com + layout de menú; portada clara (hereda main.css) */

body.ramp {
  --ramp-header-h: 4.75rem;
  background: #fff;
  background-image:
    radial-gradient(ellipse 120% 80% at 50% -20%, rgba(30, 58, 138, 0.14), transparent 55%),
    radial-gradient(circle at 100% 0%, rgba(59, 130, 246, 0.08), transparent 45%),
    linear-gradient(180deg, #f8fafc 0%, #ffffff 38%);
}

@media (max-width: 900px) {
  body.ramp {
    --ramp-header-h: 10rem;
  }
}

body.ramp #page-main {
  padding-top: var(--ramp-header-h);
}

/* Barra superior: fija al viewport (sticky falla si un ancestro recorta overflow) */
.ramp .site-header.site-header--ramp {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  display: block;
  max-width: none;
  width: 100%;
  margin: 0;
  padding: 0;
  z-index: 300;
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.ramp .site-header--ramp .site-header-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: center;
  gap: 0.75rem 1rem;
  max-width: min(100%, 1240px);
  margin: 0 auto;
  padding: 0.85rem 1.5rem;
  min-width: 0;
}

.ramp .site-header--ramp .logo-text {
  color: var(--text);
  font-weight: 700;
  letter-spacing: -0.03em;
}

.ramp .site-header--ramp .logo-text span {
  color: var(--muted);
  font-weight: 600;
}

.ramp .site-header--ramp .logo-mark .logo-img {
  filter: none;
  opacity: 1;
}

.ramp .site-header--ramp .logo {
  justify-self: start;
}

.ramp .site-header--ramp .nav--ramp {
  justify-self: center;
  justify-content: center;
}

.ramp .site-header--ramp .header-actions {
  justify-self: end;
}

.ramp .site-header--ramp .header-link {
  color: var(--muted);
  padding: 0.35rem 0.25rem;
  border-radius: 0;
  border: none;
  background: transparent;
}

.ramp .site-header--ramp .header-link:hover {
  color: var(--text);
  opacity: 1;
}

.ramp .header-cta {
  border: none;
  background: #e2ff6f;
  color: #0a0a0a;
  font-weight: 700;
  padding: 0.5rem 1.1rem;
  box-shadow: none;
}

.ramp .header-cta:hover {
  background: #d4f34d;
  border-color: transparent;
  box-shadow: 0 6px 20px rgba(226, 255, 111, 0.35);
  transform: translateY(-1px);
  opacity: 1;
}

@media (max-width: 900px) {
  .ramp .site-header.site-header--ramp {
    display: block;
  }

  .ramp .site-header--ramp .site-header-inner {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }

  .ramp .site-header--ramp .nav--ramp {
    order: 3;
    flex-basis: 100%;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0;
    margin-top: 0.25rem;
    padding-top: 0.65rem;
    border-top: 1px solid var(--line);
  }

  .ramp .site-header--ramp .header-actions {
    justify-self: auto;
  }
}

/* Navegación con desplegables (estilo Ramp / Notion) */
.ramp .nav--ramp {
  align-items: center;
}

.ramp .nav-dropdown {
  position: relative;
}

@media (min-width: 901px) {
  .ramp .nav-dropdown::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    height: 12px;
  }
}

.ramp .nav-dropdown-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin: 0;
  padding: 0.45rem 0.65rem;
  font: inherit;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--muted);
  background: transparent;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition:
    color 0.2s var(--ease-out),
    background 0.2s var(--ease-out);
}

.ramp .nav-dropdown-toggle:hover,
.ramp .nav-dropdown-toggle:focus-visible {
  color: var(--text);
  outline: none;
}

@media (min-width: 901px) {
  .ramp .nav-dropdown:hover .nav-dropdown-toggle,
  .ramp .nav-dropdown:focus-within .nav-dropdown-toggle {
    color: #0a0a0a;
    background: #e2ff6f;
  }

  .ramp .nav-dropdown:hover .nav-chevron,
  .ramp .nav-dropdown:focus-within .nav-chevron {
    opacity: 0.85;
  }
}

.ramp .nav-dropdown-toggle:focus-visible {
  box-shadow: 0 0 0 2px rgba(226, 255, 111, 0.45);
}

.ramp .nav-chevron {
  flex-shrink: 0;
  opacity: 0.65;
  transition: transform 0.2s var(--ease-out);
}

@media (max-width: 900px) {
  .ramp .nav-dropdown.is-open .nav-chevron {
    transform: rotate(180deg);
  }
}

.ramp .nav-dropdown-panel {
  padding: 0.65rem;
  min-width: 260px;
  background: #fff;
  border: 1px solid rgba(15, 23, 42, 0.06);
  border-radius: 16px;
  box-shadow:
    0 4px 6px rgba(15, 23, 42, 0.04),
    0 24px 56px rgba(15, 23, 42, 0.14);
  z-index: 60;
}

@media (min-width: 901px) {
  .ramp .nav-dropdown-panel {
    position: absolute;
    top: calc(100% + 10px);
    left: 50%;
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    transform: translate(-50%, -4px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition:
      opacity 0.2s ease,
      transform 0.2s ease,
      visibility 0.2s;
  }

  .ramp .nav-dropdown-panel--mega {
    position: fixed;
    left: 50%;
    top: var(--ramp-header-h);
    padding: 0;
    min-width: min(100vw - 2rem, 1180px);
    width: min(100vw - 2rem, 1180px);
    max-width: 1180px;
    border-radius: 18px;
    transform: translate(-50%, -6px);
  }

  .ramp .nav-dropdown-panel--mega-narrow {
    position: absolute;
    left: 50%;
    top: calc(100% + 10px);
    min-width: min(100vw - 2rem, 440px);
    width: min(100vw - 2rem, 440px);
    max-width: 440px;
    transform: translate(-50%, -4px);
  }

  .ramp .nav-dropdown:hover .nav-dropdown-panel--mega-narrow,
  .ramp .nav-dropdown:focus-within .nav-dropdown-panel--mega-narrow {
    transform: translate(-50%, 0);
  }

  .ramp .nav-dropdown:hover .nav-dropdown-panel,
  .ramp .nav-dropdown:focus-within .nav-dropdown-panel {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .ramp .nav-dropdown:hover .nav-dropdown-panel--mega,
  .ramp .nav-dropdown:focus-within .nav-dropdown-panel--mega {
    transform: translate(-50%, 0);
  }

  .ramp .nav-dropdown:not(:hover):not(:focus-within) .nav-dropdown-panel--mega-narrow {
    transform: translate(-50%, -4px);
  }
}

@media (max-width: 900px) {
  .ramp .nav-dropdown-panel {
    display: none;
    position: static;
    transform: none;
    opacity: 1;
    visibility: visible;
    box-shadow: none;
    border: none;
    border-radius: 0;
    padding: 0.35rem 0 0.85rem 0.65rem;
    min-width: auto;
    margin: 0;
    background: transparent;
  }

  .ramp .nav-dropdown.is-open .nav-dropdown-panel {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
  }

  .ramp .nav-dropdown {
    border-bottom: 1px solid var(--line);
  }

  .ramp .nav-dropdown:last-of-type {
    border-bottom: none;
  }

  .ramp .nav-dropdown-toggle {
    width: 100%;
    justify-content: space-between;
    padding: 0.65rem 0;
  }
}

.ramp .nav-dropdown-item {
  display: block;
  padding: 0.55rem 0.65rem;
  border-radius: 8px;
  text-decoration: none;
  color: inherit;
  transition: background 0.15s ease;
}

.ramp .nav-dropdown-item:hover,
.ramp .nav-dropdown-item:focus-visible {
  background: #f1f5f9;
  outline: none;
}

.ramp .nav-dropdown-item-title {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: #0f172a;
  line-height: 1.25;
}

.ramp .nav-dropdown-item-desc {
  display: block;
  margin-top: 0.15rem;
  font-size: 0.75rem;
  font-weight: 500;
  line-height: 1.35;
  color: #64748b;
}

/* Mega menú ancho (ramp.com): grid, iconos en caja gris, aside destacado */
.ramp .mega-inner {
  padding: 1.5rem 1.5rem 1.65rem;
}

@media (min-width: 901px) {
  .ramp .mega-inner {
    padding: 2rem 2.25rem 2.1rem;
  }
}

.ramp .mega-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) minmax(200px, 280px);
  gap: 1.75rem 2.25rem;
  align-items: start;
}

@media (max-width: 1100px) and (min-width: 901px) {
  .ramp .mega-grid:not(.mega-grid--two) {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  }

  .ramp .mega-aside {
    grid-column: 1 / -1;
    padding-left: 0;
    border-left: none;
    padding-top: 1.25rem;
    border-top: 1px solid #e5e7eb;
  }
}

.ramp .mega-grid--two {
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 0.35rem 1.25rem;
}

.ramp .mega-col {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  min-width: 0;
}

.ramp .mega-label {
  margin: 0 0 0.65rem;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: #64748b;
}

.ramp .mega-link {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  padding: 0.55rem 0.65rem;
  margin: 0 -0.15rem;
  border-radius: 12px;
  text-decoration: none;
  color: inherit;
  transition: background 0.15s ease;
}

.ramp .mega-link:hover,
.ramp .mega-link:focus-visible {
  background: #f4f4f5;
  outline: none;
}

.ramp .mega-link-icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: #f4f4f5;
  color: #0f172a;
}

.ramp .mega-link-icon svg {
  width: 18px;
  height: 18px;
}

.ramp .mega-link-body {
  display: flex;
  flex-direction: column;
  gap: 0.18rem;
  min-width: 0;
}

.ramp .mega-link-title {
  font-size: 0.9375rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: #0f172a;
  line-height: 1.25;
}

.ramp .mega-link-desc {
  font-size: 0.8125rem;
  font-weight: 500;
  line-height: 1.4;
  color: #64748b;
}

.ramp .mega-aside {
  padding-left: 1.5rem;
  border-left: 1px solid #e5e7eb;
}

.ramp .mega-feature-card {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  padding: 1rem 1.1rem;
  border-radius: 14px;
  background: linear-gradient(180deg, #fafafa 0%, #f4f4f5 100%);
  border: 1px solid #e5e7eb;
  text-decoration: none;
  color: inherit;
  transition:
    box-shadow 0.2s ease,
    transform 0.2s ease;
}

.ramp .mega-feature-card:hover,
.ramp .mega-feature-card:focus-visible {
  box-shadow: 0 14px 32px rgba(15, 23, 42, 0.1);
  transform: translateY(-1px);
  outline: none;
}

.ramp .mega-feature-badge {
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #1d4ed8;
}

.ramp .mega-feature-title {
  font-size: 0.9375rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #0f172a;
}

.ramp .mega-feature-desc {
  font-size: 0.8125rem;
  line-height: 1.45;
  color: #64748b;
  font-weight: 500;
}

@media (max-width: 900px) {
  .ramp .nav-dropdown {
    border-bottom-color: var(--line);
  }

  .ramp .nav-dropdown-toggle {
    color: var(--muted);
  }

  .ramp .nav-dropdown.is-open .nav-dropdown-toggle {
    color: #0a0a0a;
    background: #e2ff6f;
  }

  .ramp .nav-dropdown-panel--mega,
  .ramp .nav-dropdown-panel--mega-narrow {
    margin: 0.35rem 0 0;
    padding: 0;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 14px;
    box-shadow: 0 16px 40px rgba(15, 23, 42, 0.12);
  }

  .ramp .mega-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .ramp .mega-aside {
    padding-left: 0;
    border-left: none;
    padding-top: 1rem;
    border-top: 1px solid #e5e7eb;
  }
}

/* Hero — tres capturas reales en capas (producto primero, estilo SaaS) */
.ramp .hero-visual--stack {
  perspective: 1400px;
}

.ramp .hero-visual--stack .hero-product-stack {
  width: 100%;
  max-width: min(100%, 580px);
  margin-inline: auto;
}

@media (min-width: 900px) {
  .ramp .hero-visual--stack .hero-product-stack {
    margin-inline: 0 0 auto;
  }
}

.ramp .hero-product-stack-inner {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 11;
  min-height: 200px;
  max-height: min(62vh, 560px);
}

@media (min-width: 900px) {
  .ramp .hero-product-stack-inner {
    min-height: 240px;
    max-height: min(72vh, 680px);
  }
}

.ramp .hero-product-card {
  position: absolute;
  margin: 0;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(15, 23, 42, 0.12);
  background: #0f172a;
  box-shadow:
    0 4px 6px rgba(15, 23, 42, 0.06),
    0 22px 50px rgba(15, 23, 42, 0.15);
  transition:
    transform 0.45s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.35s ease,
    opacity 0.35s ease;
}

.ramp .hero-product-card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.ramp .hero-product-card--back {
  width: 94%;
  height: 86%;
  left: 0;
  top: 11%;
  transform: rotate(-2.5deg);
  z-index: 1;
  opacity: 0.96;
}

.ramp .hero-product-card--mid {
  width: 96%;
  height: 88%;
  left: 5%;
  top: 4%;
  transform: rotate(2deg);
  z-index: 2;
}

.ramp .hero-product-card--front {
  width: 94%;
  height: 85%;
  left: 2%;
  top: 0;
  transform: rotate(-1deg);
  z-index: 3;
}

@media (max-width: 599px) {
  .ramp .hero-product-card--back {
    transform: rotate(-1.5deg);
  }
  .ramp .hero-product-card--mid {
    transform: rotate(1.2deg);
  }
  .ramp .hero-product-card--front {
    transform: rotate(-0.6deg);
  }
}

@media (hover: hover) and (prefers-reduced-motion: no-preference) {
  .ramp .hero-product-stack-inner:hover .hero-product-card--back {
    transform: rotate(-2deg) translate(-1.5%, 1%);
  }

  .ramp .hero-product-stack-inner:hover .hero-product-card--mid {
    transform: rotate(1.5deg) translate(1%, -1%);
    box-shadow:
      0 8px 20px rgba(15, 23, 42, 0.1),
      0 28px 56px rgba(15, 23, 42, 0.16);
  }

  .ramp .hero-product-stack-inner:hover .hero-product-card--front {
    transform: rotate(-0.5deg) translate(0, -2%);
    box-shadow:
      0 12px 28px rgba(30, 58, 138, 0.12),
      0 32px 64px rgba(15, 23, 42, 0.18);
  }
}

.ramp .hero-product-card.is-missing img {
  display: none;
}

.ramp .hero-product-card.is-missing {
  background: linear-gradient(145deg, #e2e8f0, #cbd5e1);
  min-height: 8rem;
}

/* Hero — portátil (captura en pantalla, portada) */
.ramp .hero-visual--laptop {
  perspective: 1600px;
}

@media (min-width: 900px) {
  .ramp .hero-visual--laptop {
    justify-self: end;
    width: 100%;
  }
}

.ramp .hero-laptop {
  width: 100%;
}

.ramp .hero-laptop-shell {
  width: 100%;
  max-width: min(100%, 580px);
  margin-inline: auto;
  transform-style: preserve-3d;
  transform: rotateX(2deg);
}

@media (min-width: 900px) {
  .ramp .hero-laptop-shell {
    margin-left: auto;
    margin-right: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .ramp .hero-laptop-shell {
    transform: none;
  }
}

.ramp .hero-laptop-lid {
  border-radius: 14px 14px 5px 5px;
  padding: 11px 11px 13px;
  background: linear-gradient(165deg, #64748b 0%, #334155 38%, #0f172a 100%);
  box-shadow:
    0 4px 6px rgba(15, 23, 42, 0.08),
    0 28px 56px rgba(15, 23, 42, 0.22);
}

.ramp .hero-laptop-bezel {
  position: relative;
  overflow: hidden;
  border-radius: 6px;
  background: #020617;
  aspect-ratio: 16 / 10;
  min-height: 180px;
  max-height: min(58vh, 520px);
}

@media (min-width: 900px) {
  .ramp .hero-laptop-bezel {
    min-height: 220px;
    max-height: min(68vh, 560px);
  }
}

.ramp .hero-laptop-camera {
  position: absolute;
  top: 7px;
  left: 50%;
  z-index: 2;
  width: 9px;
  height: 9px;
  margin-left: -4.5px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, #475569, #0f172a 70%);
  border: 1px solid rgba(15, 23, 42, 0.85);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.ramp .hero-laptop-screen {
  margin: 0;
  width: 100%;
  height: 100%;
}

.ramp .hero-laptop-screen img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.ramp .hero-laptop-track {
  position: relative;
  height: 10px;
  margin: -1px auto 0;
  width: 90%;
  max-width: 540px;
  border-radius: 0 0 4px 4px;
  background: linear-gradient(180deg, #94a3b8 0%, #64748b 50%, #475569 100%);
  box-shadow:
    0 8px 16px rgba(15, 23, 42, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.14);
}

.ramp .hero-laptop-track::before {
  content: "";
  display: block;
  height: 2px;
  margin: 0 auto;
  width: 30%;
  border-radius: 0 0 2px 2px;
  background: linear-gradient(90deg, transparent, rgba(15, 23, 42, 0.5), transparent);
}

/* Base tipo teclado — deja claro que es un portátil, no un monitor suelto */
.ramp .hero-laptop-deck {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  margin: 0 auto;
  width: 100%;
  max-width: min(100%, 600px);
  height: 30px;
  padding-bottom: 7px;
  box-sizing: border-box;
  border-radius: 0 0 14px 14px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), transparent 40%),
    linear-gradient(165deg, #64748b 0%, #334155 45%, #0f172a 100%);
  box-shadow:
    0 22px 40px rgba(15, 23, 42, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.ramp .hero-laptop-deck::after {
  content: "";
  width: 18%;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(180deg, #1e293b, #0f172a);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.35);
}

@media (hover: hover) and (prefers-reduced-motion: no-preference) {
  .ramp .hero-laptop-shell:hover {
    transform: rotateX(0deg) translateY(-4px);
  }

  .ramp .hero-laptop-shell:hover .hero-laptop-lid {
    box-shadow:
      0 8px 12px rgba(15, 23, 42, 0.1),
      0 36px 64px rgba(15, 23, 42, 0.24);
  }
}

.ramp .hero-laptop-bezel.is-missing img {
  display: none;
}

.ramp .hero-laptop-bezel.is-missing {
  background: linear-gradient(145deg, #e2e8f0, #cbd5e1);
  min-height: 10rem;
}

/* Portada: sin overrides → colores y botones azules de main.css */

/* Stats */
.ramp .stripe-band {
  background: #fff;
  border-top-color: #e5e7eb;
  border-bottom-color: #e5e7eb;
}

.ramp .stripe-stat-label {
  color: #64748b;
}

.ramp .stripe-stat-desc {
  color: #64748b;
}

/* Demo */
.ramp .demo {
  background: #f6f7f9;
}

.ramp .demo-label {
  color: #64748b;
}

.ramp .demo-footnote a {
  color: #00a85c;
  font-weight: 600;
}

.ramp .demo-footnote a:hover {
  color: #047857;
  opacity: 1;
}

.ramp .demo-footnote {
  color: #64748b;
}

.ramp .demo-overlap:not([data-demo-stack]) .demo-layer {
  box-shadow:
    0 20px 48px rgba(15, 23, 42, 0.08),
    0 0 0 1px rgba(255, 255, 255, 0.5) inset;
}

/* Bloque 30 dias */
.ramp .thirty-days {
  background: #f8fafc;
  border-top-color: #e5e7eb;
  border-bottom-color: #e5e7eb;
}

.ramp .thirty-days-eyebrow {
  color: #00a85c;
}

.ramp .thirty-days .section-title {
  color: #0f172a;
}

.ramp .thirty-days-lede {
  color: #64748b;
}

.ramp .thirty-days-item {
  border-color: #e5e7eb;
  background: #fff;
}

.ramp .thirty-days-week {
  color: #00a85c;
}

.ramp .thirty-days-item h3 {
  color: #0f172a;
}

.ramp .thirty-days-item p {
  color: #64748b;
}

/* Inicio (index): menos hueco sobre “Control total” y “30 días” */
.ramp.page-home .demo {
  padding-bottom: clamp(1.5rem, 3.5vw, 2.5rem);
}

.ramp.page-home #todo-en-uno.value-pillars {
  padding-top: clamp(1rem, 2.5vw, 1.5rem);
}

.ramp.page-home #todo-en-uno.value-pillars .section-title {
  margin-top: 0;
}

.ramp.page-home .section.thirty-days {
  padding-top: clamp(1rem, 2.5vw, 1.5rem);
}

.ramp.page-home .thirty-days .section-title {
  margin-top: 0;
}

.ramp.page-home .thirty-days-eyebrow {
  margin-top: 0;
  margin-bottom: 0.45rem;
}

.ramp.page-home .section.company-scale {
  padding-top: clamp(1rem, 2.5vw, 1.5rem);
}

.ramp.page-home .company-scale-eyebrow {
  margin-top: 0;
}

.ramp.page-home .company-scale .section-title {
  margin-top: 0;
}

/* Ocho productos — Odoo + Econverso + EasyNodeOne */
.ramp .value-pillars {
  background: #fff;
  border-top: 1px solid #e5e7eb;
}

.ramp .value-pillars .section-title {
  color: #0f172a;
}

.ramp .pillars-lede {
  max-width: 36rem;
  margin: 0 auto 2.5rem;
  text-align: center;
  font-size: 1.05rem;
  line-height: 1.55;
  color: #64748b;
}

.ramp .value-pillars .pillars-lede {
  margin-bottom: 1rem;
}

.ramp .value-pillars .odoo-relation-note {
  margin-top: 0;
  margin-bottom: 2.25rem;
  color: #64748b;
}

.ramp .value-pillars .odoo-relation-note strong {
  color: #475569;
}

.ramp .erp-options .pillars-lede {
  margin-bottom: 1rem;
}

.ramp .erp-options .odoo-relation-note {
  margin-bottom: 2rem;
  color: #64748b;
}

.ramp .erp-options .odoo-relation-note strong {
  color: #475569;
}

.ramp .value-pillars-grid {
  display: grid;
  gap: 1.35rem;
  max-width: 1180px;
  margin: 0 auto;
  align-items: stretch;
}

@media (min-width: 768px) {
  .ramp .value-pillars-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1100px) {
  .ramp .value-pillars-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 1.35rem 1.5rem;
  }
}

/* Tarjetas tipo ramp.com: copy + CTA arriba, captura abajo */
.ramp .value-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  margin: 0;
  padding: 0;
  border-radius: 16px;
  border: 1px solid #e5e7eb;
  background: #f4f4f5;
  overflow: hidden;
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
  transition:
    box-shadow 0.28s ease,
    transform 0.28s ease;
}

@media (hover: hover) {
  .ramp .value-card:hover {
    box-shadow: 0 16px 48px rgba(15, 23, 42, 0.1);
    transform: translateY(-3px);
  }

  .ramp .value-card:hover .value-card-more {
    color: #00a85c;
  }
}

.ramp .value-card-body {
  padding: 1.35rem 1.35rem 1.1rem;
  flex: 0 0 auto;
}

.ramp .value-card-kicker {
  margin: 0 0 0.5rem;
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #7c3aed;
}

.ramp .value-card--econverso .value-card-kicker {
  color: #059669;
}

.ramp .value-card--easynodeone .value-card-kicker {
  color: #2563eb;
}

/* Captura del portal (PNG); si falla la carga, respaldo con logo SVG centrado */
.ramp .value-card--easynodeone .value-card-visual--nodeone-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.25rem 1rem;
  background: linear-gradient(180deg, #f8fafc 0%, #f1f5f9 100%);
}

.ramp .value-card--easynodeone .value-card-visual--nodeone-logo img {
  width: auto !important;
  max-width: 85%;
  height: auto !important;
  max-height: 7.5rem;
  object-fit: contain;
  object-position: center;
}

.ramp .value-card-title {
  margin: 0 0 0.5rem;
  font-size: 1.0625rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.25;
  color: #0f172a;
}

.ramp .value-card-desc {
  margin: 0;
  font-size: 0.875rem;
  line-height: 1.55;
  color: #64748b;
}

.ramp .value-card-desc strong {
  color: #0f172a;
  font-weight: 600;
}

.ramp .value-card-more {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-top: 1rem;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: #0f172a;
  text-decoration: none;
  transition: color 0.2s ease;
}

.ramp .value-card-more:hover {
  opacity: 1;
}

.ramp .value-card-visual {
  position: relative;
  flex: 1 1 auto;
  margin-top: auto;
  min-height: 0;
  aspect-ratio: 16 / 11;
  background: linear-gradient(180deg, #ececef 0%, #e4e4e7 100%);
  border-top: 1px solid rgba(15, 23, 42, 0.06);
}

.ramp .value-card-visual-inner {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.ramp .value-card-visual-inner img,
.ramp .value-card-visual > img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.ramp .value-card--brand-visual .value-card-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem 1.25rem;
  background: linear-gradient(180deg, #f8fafc 0%, #f1f5f9 100%);
}

.ramp .value-card--brand-visual .value-card-visual img {
  width: auto;
  max-width: 85%;
  height: auto;
  max-height: 7.5rem;
  object-fit: contain;
}

.ramp .value-card.is-missing .value-card-visual > img {
  display: none;
}

.ramp .value-card.is-missing .value-card-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

.ramp .value-card.is-missing .value-card-visual::after {
  content: "Captura no disponible";
  font-size: 0.75rem;
  font-weight: 500;
  color: #94a3b8;
}

@media (prefers-reduced-motion: reduce) {
  .ramp .value-card {
    transition: none;
  }

  .ramp .value-card:hover {
    transform: none;
  }
}

/* Flujo */
.ramp .flow .section-title {
  color: #0f172a;
}

.ramp .flow-step {
  background: #fff;
  border-color: #e5e7eb;
  box-shadow: 0 8px 32px rgba(15, 23, 42, 0.04);
}

.ramp .flow-step-body p {
  color: #64748b;
}

.ramp .flow-step-num {
  background: linear-gradient(145deg, #00d67a, #00a85c);
  box-shadow: 0 4px 16px rgba(0, 191, 111, 0.28);
}

/* Productos */
.ramp .products {
  background: #fff;
  border-top-color: #e5e7eb;
}

.ramp .products .section-title {
  color: #0f172a;
}

.ramp .products-inner .product-block {
  border: 1px solid #e5e7eb;
  border-radius: 14px;
  padding: 1.35rem 1.2rem 1.25rem;
  background: #fff;
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
  height: 100%;
  box-sizing: border-box;
}

.ramp .product-block h3 {
  color: #0f172a;
}

.ramp .product-block p {
  color: #64748b;
}

.ramp .product-block a {
  color: #00a85c;
  font-weight: 600;
}

.ramp .product-block a:hover {
  color: #047857;
  opacity: 1;
}

/* Opciones ERP (soluciones.html) */
.ramp .erp-options {
  background: #fff;
  border-top-color: #e5e7eb;
}

/* Primera sección: menos aire bajo el header */
.ramp.page-soluciones #producto-erp.erp-options {
  padding-top: clamp(0.85rem, 2.2vw, 1.35rem);
  border-top-color: transparent;
}

.ramp .erp-options .section-title {
  color: #0f172a;
}

.ramp .erp-module {
  border-color: #e5e7eb;
  background: #fff;
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
}

.ramp .erp-module-kicker {
  color: #00a85c;
}

.ramp .erp-module-copy h3 {
  color: #0f172a;
}

.ramp .erp-module-copy > p,
.ramp .erp-module-copy ul {
  color: #64748b;
}

.ramp .erp-module-visual {
  border-top-color: #e5e7eb;
}

/* Franja beneficios oscura (páginas con lista corta: demo, contacto) */
.ramp .benefits:not(.erp-benefits) {
  background: linear-gradient(180deg, #111827, #0f172a);
  border-top-color: transparent;
  border-bottom-color: transparent;
}

.ramp .benefits:not(.erp-benefits) .section-title {
  color: #fff;
  margin-bottom: 2rem;
  text-align: center;
}

.ramp .benefits:not(.erp-benefits) .benefits-list li {
  color: #e2e8f0;
  border-bottom-color: rgba(255, 255, 255, 0.08);
}

/* Beneficios ERP detallados (soluciones.html): franja oscura + tarjetas */
.ramp .benefits.erp-benefits {
  background: linear-gradient(180deg, #0c1222 0%, #111827 42%, #0f172a 100%);
  border-top-color: rgba(255, 255, 255, 0.08);
  border-bottom-color: rgba(255, 255, 255, 0.08);
}

.ramp .benefits.erp-benefits .section-title {
  color: #f8fafc;
  margin-bottom: 0.75rem;
}

.ramp .benefits.erp-benefits .pillars-lede {
  color: #94a3b8;
}

.ramp .benefits.erp-benefits .erp-module {
  border-color: rgba(148, 163, 184, 0.18);
  background: rgba(30, 41, 59, 0.5);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
}

.ramp .benefits.erp-benefits .erp-module-kicker {
  color: #4ade80;
}

.ramp .benefits.erp-benefits .erp-module-copy h3 {
  color: #f1f5f9;
}

.ramp .benefits.erp-benefits .erp-module-copy > p,
.ramp .benefits.erp-benefits .erp-module-copy ul {
  color: #cbd5e1;
}

.ramp .benefits.erp-benefits .erp-module-visual {
  border-top-color: rgba(148, 163, 184, 0.15);
  background: #0a0f1a;
}

/* Agenda */
.ramp .schedule {
  background: #fff;
  border-top-color: #e5e7eb;
}

.ramp.page-agenda .schedule--solo {
  border-top-color: transparent;
}

.ramp .schedule-calendly-loading-spinner {
  border-color: #e2e8f0;
  border-top-color: #00a85c;
}

.ramp .schedule-calendly-loading-text {
  color: #64748b;
}

.ramp .schedule .section-title,
.ramp #schedule-heading {
  color: #0f172a;
}

.ramp .schedule-lede {
  color: #64748b;
}

.ramp .schedule-lede strong {
  color: #0f172a;
}

.ramp .schedule-external-link {
  color: #00a85c;
}

.ramp .schedule-steps li {
  color: #64748b;
}

.ramp .schedule .btn-primary,
.ramp .schedule-fallback .btn-primary {
  background: linear-gradient(180deg, #00d67a 0%, #00a85c 100%);
  border-color: transparent;
  color: #052e1f;
  font-weight: 600;
  box-shadow: 0 4px 20px rgba(0, 191, 111, 0.25);
}

.ramp .schedule .btn-primary:hover,
.ramp .schedule-fallback .btn-primary:hover {
  color: #052e1f;
  opacity: 1;
}

.ramp .schedule-fallback-title {
  color: #0f172a;
}

.ramp .schedule-fallback-text {
  color: #64748b;
}

.ramp .schedule-note-inner {
  color: #64748b;
}

.ramp .schedule-note-inner a {
  color: #00a85c;
}

.ramp .schedule-note-inner a:hover {
  color: #047857;
  opacity: 1;
}

/* CTA final */
.ramp .cta {
  background: #f8fafc;
  padding-top: clamp(4rem, 10vw, 6rem);
  border-top: 1px solid #e5e7eb;
}

.ramp .cta h2 {
  color: #0f172a;
}

.ramp .cta > p {
  color: #64748b;
}

.ramp .cta .btn-primary {
  background: linear-gradient(180deg, #00d67a 0%, #00a85c 100%);
  border-color: transparent;
  color: #052e1f;
  font-weight: 600;
  box-shadow: 0 6px 28px rgba(0, 191, 111, 0.25);
}

.ramp .cta .btn-primary:hover {
  color: #052e1f;
  box-shadow: 0 10px 36px rgba(0, 191, 111, 0.35);
  opacity: 1;
}

.ramp .cta .btn-ghost {
  background: rgba(255, 255, 255, 0.9);
  color: #0f172a;
  border-color: #e5e7eb;
}

.ramp .cta .btn-ghost:hover {
  background: #fff;
  color: #0f172a;
  border-color: rgba(59, 130, 246, 0.3);
  opacity: 1;
}

/* Bloque final tipo ramp.com */
.ramp .company-scale {
  background: #f8fafc;
  border-top-color: #e5e7eb;
  border-bottom-color: #e5e7eb;
}

.ramp .company-scale-eyebrow {
  color: #00a85c;
}

.ramp .company-scale .section-title {
  color: #0f172a;
}

.ramp .company-scale-lede {
  color: #64748b;
}

.ramp .company-scale-item {
  border-color: #e5e7eb;
  background: #fff;
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
}

.ramp .company-scale-item h3 {
  color: #0f172a;
}

.ramp .company-scale-item p {
  color: #64748b;
}

.ramp.page-soluciones .company-scale--sol {
  padding-top: clamp(1.35rem, 3.2vw, 2rem);
}

.ramp.page-soluciones .company-scale--sol .section-title {
  margin-top: 0;
}

/* Footer */
.ramp .site-footer {
  max-width: none;
  background: #050810;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  color: #64748b;
}

.ramp .site-footer a {
  color: #94a3b8;
}

.ramp .site-footer a:hover {
  color: #fff;
  opacity: 1;
}

.ramp .site-footer-name {
  color: #e2e8f0;
}

.ramp .site-footer-tag,
.ramp .site-footer-contact {
  color: #94a3b8;
}

.ramp .site-footer-title {
  color: #cbd5e1;
}

.ramp .site-footer-copy {
  border-top-color: rgba(255, 255, 255, 0.08);
  color: #64748b;
}

/* Página EASY Converso (econverso.html) */
.ramp.page-econverso .header-cta--econverso {
  background: linear-gradient(180deg, #2eb87a, #24a170);
  color: #fff;
  border: none;
  box-shadow: 0 2px 12px rgba(36, 161, 112, 0.35);
}

.ramp.page-econverso .header-cta--econverso:hover {
  filter: brightness(1.05);
  opacity: 1;
  color: #fff;
}

.ramp .econverso-hero {
  padding: clamp(2.5rem, 6vw, 4rem) 1.5rem clamp(3rem, 8vw, 5rem);
  background: linear-gradient(160deg, #e8f7ef 0%, #d4f0e3 35%, #eef6ff 100%);
  border-bottom: 1px solid rgba(36, 161, 112, 0.15);
}

.ramp .econverso-hero-inner {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  gap: 2.5rem;
  align-items: center;
}

@media (min-width: 960px) {
  .ramp .econverso-hero-inner {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
    gap: 3rem;
  }
}

.ramp .econverso-hero-eyebrow {
  margin: 0.75rem 0 0.35rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #15803d;
}

.ramp .econverso-hero-title {
  margin: 0 0 0.85rem;
  font-size: clamp(1.5rem, 3.2vw, 2.05rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.2;
  color: #0f172a;
}

.ramp .econverso-hero-lede {
  margin: 0 0 1.35rem;
  font-size: 1.05rem;
  line-height: 1.6;
  color: #475569;
  max-width: 36rem;
}

.ramp .econverso-hero-lede strong {
  color: #166534;
  font-weight: 700;
}

.ramp .econverso-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.ramp .btn-econverso-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 1.25rem;
  border-radius: 10px;
  font-weight: 600;
  font-size: 0.9375rem;
  background: linear-gradient(180deg, #2eb87a, #24a170);
  color: #fff !important;
  border: none;
  text-decoration: none;
  box-shadow: 0 4px 16px rgba(36, 161, 112, 0.35);
}

.ramp .btn-econverso-primary:hover {
  filter: brightness(1.06);
  opacity: 1;
  color: #fff !important;
}

.ramp .btn-econverso-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 1.25rem;
  border-radius: 10px;
  font-weight: 600;
  font-size: 0.9375rem;
  background: #fff;
  color: #1d4ed8 !important;
  border: 1px solid rgba(29, 78, 216, 0.35);
  text-decoration: none;
}

.ramp .btn-econverso-ghost:hover {
  background: #eff6ff;
  opacity: 1;
  color: #1d4ed8 !important;
}

.ramp .econverso-hero-footnote {
  margin: 0;
  font-size: 0.875rem;
  color: #64748b;
}

.ramp .econverso-hero-footnote a {
  color: #15803d;
  font-weight: 500;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.ramp .econverso-hero-visual {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.ramp .econverso-login-card {
  background: #fff;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 14px;
  padding: 1rem 1.15rem;
  box-shadow: 0 8px 28px rgba(15, 23, 42, 0.06);
}

.ramp .econverso-login-card-title {
  margin: 0 0 0.35rem;
  font-size: 0.9375rem;
  font-weight: 700;
  color: #0f172a;
}

.ramp .econverso-login-card-desc {
  margin: 0 0 0.65rem;
  font-size: 0.8125rem;
  line-height: 1.5;
  color: #64748b;
}

.ramp .econverso-login-card-pill {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.25rem 0.6rem;
  border-radius: 999px;
  background: rgba(36, 161, 112, 0.12);
  color: #166534;
}

.ramp .econverso-hero-screenshot {
  margin: 0;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 20px 50px rgba(15, 23, 42, 0.1);
  background: #fff;
}

.ramp .econverso-hero-screenshot img {
  display: block;
  width: 100%;
  height: auto;
  vertical-align: middle;
}

.ramp .econverso-features {
  background: #fff;
  border-top: 1px solid #e5e7eb;
}

.ramp .econverso-feature-grid {
  display: grid;
  gap: 1.25rem;
  max-width: 1100px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .ramp .econverso-feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.ramp .econverso-feature-card {
  border: 1px solid #e5e7eb;
  border-radius: 14px;
  padding: 1.25rem 1.35rem;
  background: #fafafa;
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
}

.ramp .econverso-feature-card-head {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 0.65rem;
}

.ramp .econverso-feature-num {
  flex-shrink: 0;
  width: 1.75rem;
  height: 1.75rem;
  border-radius: 8px;
  background: linear-gradient(180deg, #32c66d, #24a170);
  color: #fff;
  font-size: 0.8125rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

.ramp .econverso-feature-card h3 {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #0f172a;
}

.ramp .econverso-feature-card p {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.55;
  color: #64748b;
}

.ramp .econverso-flows,
.ramp .econverso-pricing {
  background: #f8fafc;
  border-top: 1px solid #e5e7eb;
}

.ramp .econverso-table-wrap {
  max-width: 900px;
  margin: 0 auto;
  overflow-x: auto;
  border-radius: 12px;
  border: 1px solid #e5e7eb;
  background: #fff;
  box-shadow: 0 1px 3px rgba(15, 23, 42, 0.05);
}

.ramp .econverso-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.875rem;
}

.ramp .econverso-table th,
.ramp .econverso-table td {
  padding: 0.75rem 1rem;
  text-align: left;
  border-bottom: 1px solid #e5e7eb;
}

.ramp .econverso-table th {
  background: linear-gradient(180deg, #ede9fe, #e9e4f7);
  color: #3730a3;
  font-weight: 700;
  font-size: 0.8125rem;
}

.ramp .econverso-table tbody tr:last-child td {
  border-bottom: none;
}

.ramp .econverso-table code {
  font-size: 0.8125rem;
  padding: 0.1em 0.35em;
  background: #f1f5f9;
  border-radius: 4px;
  color: #7c3aed;
  font-weight: 600;
}

.ramp .econverso-table--pricing td:nth-child(n + 2) {
  font-variant-numeric: tabular-nums;
}

.ramp .cta--econverso {
  background: linear-gradient(180deg, #ecfdf5, #f0fdf4);
  border-top: 1px solid rgba(36, 161, 112, 0.2);
  border-bottom: 1px solid rgba(36, 161, 112, 0.15);
}

.ramp .cta--econverso .section-title,
.ramp .cta--econverso h2 {
  color: #0f172a;
}

.ramp .cta--econverso p {
  color: #475569;
}

.ramp .cta--econverso .btn-ghost {
  border-color: rgba(15, 23, 42, 0.12);
  color: #0f172a !important;
}

.ramp .cta--econverso .btn-ghost:hover {
  background: #fff;
  border-color: rgba(36, 161, 112, 0.35);
  color: #166534 !important;
}

/* Página Easy NodeOne (easynodeone.html) */
.ramp.page-easynodeone .header-cta--nodeone {
  background: linear-gradient(180deg, #3b82f6, #2563eb);
  color: #fff;
  border: none;
  box-shadow: 0 2px 14px rgba(37, 99, 235, 0.35);
}

.ramp.page-easynodeone .header-cta--nodeone:hover {
  filter: brightness(1.05);
  opacity: 1;
  color: #fff;
}

.ramp .nodeone-hero {
  padding: clamp(0.45rem, 1.35vw, 0.85rem) 1.5rem clamp(2.75rem, 7vw, 4.5rem);
  background: linear-gradient(165deg, #eff6ff 0%, #e0f2fe 40%, #f8fafc 100%);
  border-bottom: 1px solid rgba(37, 99, 235, 0.12);
}

.ramp .nodeone-hero-inner {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  gap: 2.5rem;
  align-items: center;
}

@media (min-width: 960px) {
  .ramp .nodeone-hero-inner {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
    gap: 2.25rem;
    align-items: start;
  }
}

.ramp .nodeone-hero-logo-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 0.35rem;
}

.ramp .nodeone-hero-logo-img {
  width: 88px;
  height: 88px;
  border-radius: 18px;
  object-fit: cover;
  box-shadow: 0 8px 24px rgba(37, 99, 235, 0.2);
}

.ramp .nodeone-hero-wordmark {
  margin: 0;
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #1e3a8a;
}

.ramp .nodeone-hero-eyebrow {
  margin: 0.15rem 0 0;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #2563eb;
}

.ramp .nodeone-hero-title {
  margin: 0.65rem 0 0.75rem;
  font-size: clamp(1.45rem, 3.2vw, 2.05rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.2;
  color: #0f172a;
}

.ramp .nodeone-hero-lede {
  margin: 0 0 1.35rem;
  font-size: 1.05rem;
  line-height: 1.6;
  color: #475569;
  max-width: 36rem;
}

.ramp .nodeone-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.ramp .btn-nodeone-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 1.25rem;
  border-radius: 10px;
  font-weight: 600;
  font-size: 0.9375rem;
  background: linear-gradient(180deg, #3b82f6, #2563eb);
  color: #fff !important;
  border: none;
  text-decoration: none;
  box-shadow: 0 4px 18px rgba(37, 99, 235, 0.35);
}

.ramp .btn-nodeone-primary:hover {
  filter: brightness(1.06);
  opacity: 1;
  color: #fff !important;
}

.ramp .btn-nodeone-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 1.25rem;
  border-radius: 10px;
  font-weight: 600;
  font-size: 0.9375rem;
  background: #fff;
  color: #2563eb !important;
  border: 1px solid rgba(37, 99, 235, 0.4);
  text-decoration: none;
}

.ramp .btn-nodeone-ghost:hover {
  background: #eff6ff;
  opacity: 1;
  color: #1d4ed8 !important;
}

.ramp .nodeone-hero-footnote {
  margin: 0;
  font-size: 0.875rem;
  color: #64748b;
}

.ramp .nodeone-hero-footnote a {
  color: #2563eb;
  font-weight: 500;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.ramp .nodeone-hero-visual {
  display: block;
}

.ramp .nodeone-hero-screenshot {
  margin: 0;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 20px 50px rgba(15, 23, 42, 0.1);
  background: #fff;
}

.ramp .nodeone-hero-screenshot img {
  display: block;
  width: 100%;
  height: auto;
  vertical-align: middle;
}

.ramp .nodeone-features {
  background: #fff;
  border-top: 1px solid #e5e7eb;
}

.ramp .nodeone-feature-grid {
  display: grid;
  gap: 1.25rem;
  max-width: 1100px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .ramp .nodeone-feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1100px) {
  .ramp .nodeone-feature-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.ramp .nodeone-feature-card {
  border: 1px solid #e5e7eb;
  border-radius: 14px;
  padding: 1.25rem 1.35rem;
  background: #fafafa;
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
}

.ramp .nodeone-feature-card-head {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 0.65rem;
}

.ramp .nodeone-feature-num {
  flex-shrink: 0;
  width: 1.75rem;
  height: 1.75rem;
  border-radius: 8px;
  background: linear-gradient(180deg, #60a5fa, #2563eb);
  color: #fff;
  font-size: 0.8125rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

.ramp .nodeone-feature-card h3 {
  margin: 0;
  font-size: 1.02rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #0f172a;
}

.ramp .nodeone-feature-card p {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.55;
  color: #64748b;
}

.ramp .nodeone-checklist {
  background: #f8fafc;
  border-top: 1px solid #e5e7eb;
}

.ramp .nodeone-checklist-list {
  max-width: 36rem;
  margin: 0 auto;
  padding: 0;
  list-style: none;
}

.ramp .nodeone-checklist-list li {
  position: relative;
  padding-left: 1.75rem;
  margin: 0 0 0.85rem;
  font-size: 1rem;
  line-height: 1.5;
  color: #334155;
}

.ramp .nodeone-checklist-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.35rem;
  width: 1.1rem;
  height: 1.1rem;
  border-radius: 50%;
  background: #22c55e;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' fill='none'%3E%3Cpath d='M2.5 6l2.5 2.5L9.5 3' stroke='white' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-size: 0.65rem;
  background-position: center;
  background-repeat: no-repeat;
}

.ramp .nodeone-catalog {
  background: #fff;
  border-top: 1px solid #e5e7eb;
}

.ramp .nodeone-table-wrap {
  max-width: 960px;
  margin: 0 auto;
  overflow-x: auto;
  border-radius: 12px;
  border: 1px solid #e5e7eb;
  background: #fff;
  box-shadow: 0 1px 3px rgba(15, 23, 42, 0.05);
}

.ramp .nodeone-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.8125rem;
}

.ramp .nodeone-table th,
.ramp .nodeone-table td {
  padding: 0.85rem 1rem;
  text-align: left;
  border-bottom: 1px solid #e5e7eb;
  vertical-align: top;
}

.ramp .nodeone-table th {
  background: linear-gradient(180deg, #dbeafe, #e0e7ff);
  color: #1e40af;
  font-weight: 700;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.ramp .nodeone-table tbody tr:last-child td {
  border-bottom: none;
}

.ramp .nodeone-table-muted {
  display: block;
  font-size: 0.75rem;
  color: #64748b;
  font-weight: 400;
  margin-top: 0.2rem;
}

.ramp .nodeone-badge {
  display: inline-block;
  padding: 0.2rem 0.45rem;
  border-radius: 6px;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.03em;
}

.ramp .nodeone-badge--plan {
  background: #334155;
  color: #fff;
}

.ramp .nodeone-badge--pro {
  background: #4f46e5;
}

.ramp .nodeone-badge--basic {
  background: #64748b;
}

.ramp .nodeone-badge--yes {
  background: #dbeafe;
  color: #1d4ed8;
}

.ramp .nodeone-badge--no {
  background: #f1f5f9;
  color: #64748b;
}

.ramp .nodeone-badge--type {
  background: #ffedd5;
  color: #c2410c;
}

.ramp .nodeone-badge--ok {
  background: #dcfce7;
  color: #166534;
}

.ramp .cta--nodeone {
  background: linear-gradient(180deg, #eff6ff, #f0f9ff);
  border-top: 1px solid rgba(37, 99, 235, 0.15);
  border-bottom: 1px solid rgba(37, 99, 235, 0.12);
}

.ramp .cta--nodeone .section-title,
.ramp .cta--nodeone h2 {
  color: #0f172a;
}

.ramp .cta--nodeone p {
  color: #475569;
}

.ramp .cta--nodeone .btn-ghost {
  border-color: rgba(15, 23, 42, 0.12);
  color: #0f172a !important;
}

.ramp .cta--nodeone .btn-ghost:hover {
  background: #fff;
  border-color: rgba(37, 99, 235, 0.35);
  color: #1d4ed8 !important;
}
