/* SECCIÓN: TIPOGRAFÍAS*/
@font-face {
  font-family: "ArialRoundedBold";
  src: url("../fonts/Arial Rounded Bold.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "SourceSansCustom";
  src: url("../fonts/SourceSansVariable-Roman.otf") format("opentype");
  font-weight: 200 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "ParrafosFont";
  src: url("../fonts/b76df86f-59b0-4e7d-987e-bcce9454689c.otf") format("opentype");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

p{
  font-family: "ParrafosFont", system-ui, -apple-system, Segoe UI, Roboto, Inter, Arial, sans-serif;
  font-weight: 400;
}

/*  SECCIÓN: VARIABLES + RESET */
:root{
  --bg:#ffffff;
  --text:#0f172a;
  --border:#e2e8f0;
  --primary:#2563eb;
  --primary-contrast:#fff;
  --radius:14px;

  /* ==== Variables CTA / Footer (de create.css) ==== */
  --a23-cta-bg:#343434;
  --a23-btn-bg:#51a0d5;
  --a23-btn-text:#000000;
  --a23-footer-bg:#51a0d5;
  --a23-text-light:#ffffff;

  --a23-shadow: 0 8px 28px rgba(0,0,0,.25);
}

*,*::before,*::after{ box-sizing:border-box }
html,body{ height:100% }
body{
  margin:0;
  background:var(--bg);
  color:var(--text);
  line-height:1.6;
  font-family: system-ui,-apple-system,Segoe UI,Roboto,Inter,Arial,sans-serif;
  -webkit-font-smoothing:antialiased;
  -moz-osx-font-smoothing:grayscale;
}
img,svg{ display:block; max-width:100%; height:auto }
a{ color:inherit; text-decoration:none }
a:focus-visible,button:focus-visible{ outline:2px solid var(--primary); outline-offset:2px }

/*  SECCIÓN: SECCIONES BASE */
section{
  border-bottom:8px solid #f4f4f4;
  margin:0;
  border-radius:0;
  padding:0 20px;
  margin-bottom:10px;
}

/*  SECCIÓN: CONTENEDOR RESPONSIVE */
.container{ width:min(92vw, 720px); margin-inline:auto }
@media (min-width:1024px){ .container{ width:min(92vw, 960px) } }
@media (min-width:1300px){ .container{ width:min(92vw, 1120px) } }
@media (min-width:1440px){ .container{ width:min(92vw, 1240px) } }
@media (min-width:1600px){ .container{ width:min(92vw, 1360px) } }

/* ===========================
   ENCABEZADO: HERO + NAV
   =========================== */

.hero{ position:relative }
.hero .bg{
  width:100vw;
  margin-left:calc(50% - 50vw);
  min-height: clamp(520px, 70vh, 860px);
  background-image:url("/img/Banner_planes.png");
  background-size: clamp(420px, 100vw, 1200px) auto;
  background-position:center top;
  background-repeat:no-repeat;
  background-color:#1c1d23;
  position:relative;
  display:flex;
  flex-direction:column;
  justify-content:flex-start;
  --hero-hands-bottom: clamp(230px, 34vw, 420px);
}

/* Tablet vertical (portrait) */
@media (min-width:769px) and (max-width:1366px) and (orientation: portrait){
  .hero .bg{
    min-height: clamp(420px, 48vh, 700px);
    background-position: center top;
    --hero-hands-bottom: clamp(260px, 34vw, 420px);
  }
}

/* Tablet horizontal (landscape) */
@media (min-width:769px) and (max-width:1366px) and (orientation: landscape){
  .hero .bg{
    min-height: clamp(420px, 58vh, 740px);
    background-position: center 0%;
    --hero-hands-bottom: clamp(320px, 34vw, 460px);
  }
}

/* Texto del banner */
.hero .content{
  position:relative;
  z-index:1;
  text-align:center;
  color:var(--text);
  padding: var(--hero-hands-bottom) 0 clamp(32px, 8vw, 96px);
  margin-top: 0;
}
.hero h1 {
  font-family: "ArialRoundedBold", sans-serif;
  font-size: clamp(30px, 5.2vw, 40px);
  line-height: 1.08;
  margin: 0 0 12px;
  text-wrap: balance;
  text-align: center;
  font-weight: 300;
  color: #ffffff;
}

/* Nav global en global.css */

/* Banner en móvil */
@media (max-width:768px){
  .hero .bg{
    min-height: clamp(460px, 62vh, 760px);
    background-position: center top;
    --hero-hands-bottom: clamp(170px, 40vw, 300px);
  }
}

@media (max-width:900px){
  .hero-tabs{ display:none; }
}

/* HERO landscape / pantallas bajas */
@media (max-width:1024px) and (orientation:landscape){
  .hero .content{ padding-top: var(--hero-hands-bottom); padding-bottom:20px; text-align:center }
  .hero h1{ font-size: clamp(22px, 4.6vw, 40px); line-height:1.15; margin:0 16px }
  .hero .bg{ min-height:56vh; justify-content:flex-start; --hero-hands-bottom: clamp(150px, 22vw, 260px); }
}
@media (max-height:430px) and (orientation:landscape){
  .hero h1{ font-size: clamp(20px, 4.2vw, 34px) }
}

/* Accesibilidad (reduce motion) */
@media (prefers-reduced-motion: reduce){
  *{ animation-duration:.001ms!important; animation-iteration-count:1!important; transition-duration:.001ms!important }
}

/* Nav global en global.css */

/* ===========================
   MODAL (FINAL DE PÁGINA)
   =========================== */

.a23-modal{
  position: fixed;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 20px;
  z-index: 99999;
  opacity: 0;
  pointer-events: none;
  transition: opacity .18s ease;
}
.a23-modal.is-open{ opacity: 1; pointer-events: auto; }

/* Fondo oscurecido */
.a23-modal-backdrop{
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.55);
  backdrop-filter: blur(2px);
}

/* Caja del diálogo */
.a23-modal-dialog{
  position: relative;
  width: min(720px, 92vw);
  background: #ffffff;
  color: #0f172a;
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(0,0,0,.3);
  padding: clamp(18px, 3.2vw, 28px);
  transform: translateY(10px) scale(.98);
  transition: transform .18s ease, opacity .18s ease;
  opacity: 0;
}
.a23-modal.is-open .a23-modal-dialog{
  transform: translateY(0) scale(1);
  opacity: 1;
}

/* Botón cerrar */
.a23-modal-close{
  position: absolute;
  top: 10px; right: 12px;
  font-size: 24px;
  line-height: 1;
  border: 0;
  background: transparent;
  cursor: pointer;
}
body.a23-modal-lock{ overflow: hidden; }

/* Formulario */
.a23-form { display: grid; gap: 16px; }
.a23-field { display: grid; gap: 8px; }
.a23-field label {
  font-size: 14px;
  color: #000000;
  font-weight: 600;
}
.a23-field input,
.a23-field textarea {
  width: 100%;
  padding: 14px 16px;
  border-radius: 12px;
  border: 1px solid #d1d5db;
  font: inherit;
  background: #fff;
  transition: border .2s ease, box-shadow .2s ease;
}
.a23-field input:focus,
.a23-field textarea:focus {
  border-color: var(--primary, #2563eb);
  box-shadow: 0 0 0 4px rgba(37,99,235,.15);
  outline: none;
}

/* Acciones */
.a23-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-end;
  margin-top: 10px;
}
.a23-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 700;
  border: 1px solid transparent;
  text-decoration: none;
  cursor: pointer;
  font-size: 15px;
  transition: transform .15s ease, filter .15s ease;
}
.a23-btn:active { transform: scale(.96); }
.a23-btn-primary {
  background: linear-gradient(135deg, var(--primary,#51a0d5), #51a0d5);
  color: var(--primary-contrast,#fff);
  box-shadow: 0 6px 20px rgba(37,99,235,.3);
}
.a23-btn-primary:hover { filter: brightness(1.08); }
.a23-btn-ghost {
  background: transparent;
  border: 1px solid #cbd5e1;
  color: #0f172a;
}
.a23-btn-ghost:hover { background: #f8fafc; }

/* ===========================
   PLANES SCALE
   =========================== */

.scale-plans{
  border: 0 !important;
  margin: 0 !important;
  padding: 0 20px;
  margin-bottom: 10px;
  background: #ffffff;
}

.scale-plans .container{
  padding: clamp(28px, 5vw, 56px) 0;
}

/* Título */
.scale-title{
  margin: 0 0 22px;
  font-size: clamp(24px, 3.2vw, 34px);
  font-weight: 900;
  letter-spacing: -0.02em;
  color: #0f172a;
}

/* Grid */
.scale-grid{
  display: grid;
  gap: 18px;
  grid-template-columns: 1fr;
}
@media (min-width: 760px){
  .scale-grid{ grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 22px; }
}

/* Card base */
.scale-card{
  position: relative;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 18px;
  padding: 22px 22px 18px;
  box-shadow: 0 10px 22px rgba(15, 23, 42, .06);
  min-height: 360px;

  display: grid;
  grid-template-rows: auto auto 1fr auto;
  gap: 16px;

  transition: outline-color .18s ease, box-shadow .18s ease, transform .18s ease;
}

/* Quitar borde fijo del "featured" (si existe) */
.scale-featured{
  border: 1px solid #e5e7eb !important;
  box-shadow: 0 10px 22px rgba(15, 23, 42, .06) !important;
}

/* Hover AZUL #51a0d5 (solo ese color) */
.scale-card:hover{
  outline: 2px solid #51a0d5;
  outline-offset: 0;
  box-shadow: 0 14px 28px rgba(81, 160, 213, .22);
  transform: translateY(-2px);
}

/* También con teclado */
.scale-card:focus-within{
  outline: 2px solid #51a0d5;
  outline-offset: 0;
}

/* Título card */
.scale-card-title{
  margin: 0;
  font-size: 1.35rem;
  font-weight: 900;
  color: #0f172a;
}

/* Precio */
.scale-price{
  display: grid;
  gap: 6px;
}
.scale-amount{
  font-size: clamp(34px, 3.2vw, 44px);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.02em;
  color: #000000;
}
.scale-period{
  font-size: 1rem;
  font-weight: 800;
  color: #000000;
}

/* Incluye */
.scale-includes p{
  margin: 0 0 8px;
  font-weight: 800;
  color: #0f172a;
}
.scale-includes ul{
  margin: 0;
  padding-left: 18px;
  display: grid;
  gap: 6px;
}
.scale-includes li{
  color: #0f172a;
  font-weight: 600;
}

/* IVA */
.scale-iva{
  border-top: 1px solid #e5e7eb;
  padding-top: 12px;
  font-size: 13px;
  font-weight: 700;
  color: #64748b;
}

/* Responsive: que el recomendado quede tercero en desktop */
@media (min-width: 760px){
  .scale-grid .scale-featured{ order: 3; }
}
/* ===========================
   PLANES START
   =========================== */

.start-plans{
  border: 0 !important;
  margin: 0 !important;
  padding: 0 20px;
  margin-bottom: 10px;
  background: #ffffff;
}

.start-plans .container{
  padding: clamp(28px, 5vw, 56px) 0;
}

/* Título */
.start-title{
  margin: 0 0 22px;
  font-size: clamp(24px, 3.2vw, 34px);
  font-weight: 900;
  letter-spacing: -0.02em;
  color: #0f172a;
}

/* Grid */
.start-grid{
  display: grid;
  gap: 18px;
  grid-template-columns: 1fr;
}
@media (min-width: 760px){
  .start-grid{ grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 22px; }
}

/* Card base */
.start-card{
  position: relative;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 18px;
  padding: 22px 22px 18px;
  box-shadow: 0 10px 22px rgba(15, 23, 42, .06);
  min-height: 360px;

  display: grid;
  grid-template-rows: auto auto 1fr auto;
  gap: 16px;

  transition: outline-color .18s ease, box-shadow .18s ease, transform .18s ease;
}

/* Hover AZUL #51a0d5 */
.start-card:hover{
  outline: 2px solid #51a0d5;
  outline-offset: 0;
  box-shadow: 0 14px 28px rgba(81, 160, 213, .22);
  transform: translateY(-2px);
}

/* También con teclado */
.start-card:focus-within{
  outline: 2px solid #51a0d5;
  outline-offset: 0;
}

/* Título card */
.start-card-title{
  margin: 0;
  font-size: 1.35rem;
  font-weight: 900;
  color: #0f172a;
}

/* Precio */
.start-price{
  display: grid;
  gap: 6px;
}
.start-amount{
  font-size: clamp(34px, 3.2vw, 44px);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.02em;
  color: #000000;
}
.start-period{
  font-size: 1rem;
  font-weight: 800;
  color: #000000;
}

/* Incluye */
.start-includes p{
  margin: 0 0 8px;
  font-weight: 800;
  color: #0f172a;
}
.start-includes ul{
  margin: 0;
  padding-left: 18px;
  display: grid;
  gap: 6px;
}
.start-includes li{
  color: #0f172a;
  font-weight: 600;
}

/* IVA */
.start-iva{
  border-top: 1px solid #e5e7eb;
  padding-top: 12px;
  font-size: 13px;
  font-weight: 700;
  color: #64748b;
}
/* ===========================
   PLANES MARKETPLACE
   =========================== */

.marketplace-plans{
  border: 0 !important;
  margin: 0 !important;
  padding: 0 20px;
  margin-bottom: 10px;
  background: #ffffff;
}

.marketplace-plans .container{
  padding: clamp(28px, 5vw, 56px) 0;
}

/* Título */
.marketplace-title{
  margin: 0 0 22px;
  font-size: clamp(24px, 3.2vw, 34px);
  font-weight: 900;
  letter-spacing: -0.02em;
  color: #0f172a;
}

/* Grid */
.marketplace-grid{
  display: grid;
  gap: 18px;
  grid-template-columns: 1fr;
}
@media (min-width: 760px){
  .marketplace-grid{ grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 22px; }
}

/* Card base */
.marketplace-card{
  position: relative;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 18px;
  padding: 22px 22px 18px;
  box-shadow: 0 10px 22px rgba(15, 23, 42, .06);
  min-height: 360px;

  display: grid;
  grid-template-rows: auto auto 1fr auto;
  gap: 16px;

  transition: outline-color .18s ease, box-shadow .18s ease, transform .18s ease;
}

/* Hover AZUL #51a0d5 */
.marketplace-card:hover{
  outline: 2px solid #51a0d5;
  outline-offset: 0;
  box-shadow: 0 14px 28px rgba(81, 160, 213, .22);
  transform: translateY(-2px);
}

/* También con teclado */
.marketplace-card:focus-within{
  outline: 2px solid #51a0d5;
  outline-offset: 0;
}

/* Título card */
.marketplace-card-title{
  margin: 0;
  font-size: 1.35rem;
  font-weight: 900;
  color: #0f172a;
}

/* Precio */
.marketplace-price{
  display: grid;
  gap: 6px;
}
.marketplace-amount{
  font-size: clamp(34px, 3.2vw, 44px);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.02em;
  color: #000000;
}
.marketplace-period{
  font-size: 1rem;
  font-weight: 800;
  color: #000000;
}

/* Incluye */
.marketplace-includes p{
  margin: 0 0 8px;
  font-weight: 800;
  color: #0f172a;
}
.marketplace-includes ul{
  margin: 0;
  padding-left: 18px;
  display: grid;
  gap: 6px;
}
.marketplace-includes li{
  color: #0f172a;
  font-weight: 600;
}

/* IVA */
.marketplace-iva{
  border-top: 1px solid #e5e7eb;
  padding-top: 12px;
  font-size: 13px;
  font-weight: 700;
  color: #64748b;
}
/* ===========================
   DESARROLLO DE SOFTWARE
   =========================== */

.dev-plans{
  border: 0 !important;
  margin: 0 !important;
  padding: 0 20px;
  margin-bottom: 10px;
  background: #ffffff;
}

.dev-plans .container{
  padding: clamp(28px, 5vw, 56px) 0;
}

/* Título */
.dev-title{
  margin: 0 0 22px;
  font-size: clamp(24px, 3.2vw, 34px);
  font-weight: 900;
  letter-spacing: -0.02em;
  color: #0f172a;
}

/* Grid */
.dev-grid{
  display: grid;
  gap: 18px;
  grid-template-columns: 1fr;
}
@media (min-width: 760px){
  .dev-grid{ grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 22px; }
}

/* Card base */
.dev-card{
  position: relative;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 18px;
  padding: 22px 22px 18px;
  box-shadow: 0 10px 22px rgba(15, 23, 42, .06);
  min-height: 360px;

  display: grid;
  grid-template-rows: auto auto 1fr auto;
  gap: 16px;

  transition: outline-color .18s ease, box-shadow .18s ease, transform .18s ease;
}

/* Hover AZUL #51a0d5 */
.dev-card:hover{
  outline: 2px solid #51a0d5;
  outline-offset: 0;
  box-shadow: 0 14px 28px rgba(81, 160, 213, .22);
  transform: translateY(-2px);
}

/* También con teclado */
.dev-card:focus-within{
  outline: 2px solid #51a0d5;
  outline-offset: 0;
}

/* Título card */
.dev-card-title{
  margin: 0;
  font-size: 1.35rem;
  font-weight: 900;
  color: #0f172a;
}

/* Precio */
.dev-price{
  display: grid;
  gap: 6px;
}
.dev-amount{
  font-size: clamp(34px, 3.2vw, 44px);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.02em;
  color: #000000;
}
.dev-period{
  font-size: 1rem;
  font-weight: 800;
  color: #000000;
}

/* Incluye */
.dev-includes p{
  margin: 0 0 8px;
  font-weight: 800;
  color: #0f172a;
}
.dev-includes ul{
  margin: 0;
  padding-left: 18px;
  display: grid;
  gap: 6px;
}
.dev-includes li{
  color: #0f172a;
  font-weight: 600;
}

.plan-select-btn,
.dev-select-btn{
  margin-top: 6px;
  width: 100%;
  min-height: 44px;
  border: 0;
  border-radius: 999px;
  background: #51a0d5;
  color: #000000;
  font-size: 16px;
  font-weight: 800;
  cursor: pointer;
  transition: transform .15s ease, filter .15s ease;
}
.plan-select-btn:hover,
.dev-select-btn:hover{
  filter: brightness(1.05);
  transform: translateY(-1px);
}

/* IVA */
.dev-iva{
  border-top: 1px solid #e5e7eb;
  padding-top: 12px;
  font-size: 13px;
  font-weight: 700;
  color: #64748b;
}




/* ===== Botones del banner (pills) ===== */
.hero-tabs{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  align-items:center;
  justify-content:center;
}

.hero-pill{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:12px 16px;
  border-radius:999px;                 /* redondeado */
  border:1px solid rgba(255,255,255,.22);
  background: rgba(255,255,255,.10);   /* oscuro/transparente */
  color:#fff;                          /* texto blanco */
  text-decoration:none;
  font-weight:500;
  font-size:14px;
  line-height:1;
  white-space:nowrap;
  transition: background .15s ease, color .15s ease, transform .08s ease;
}

.hero-pill i{
  font-size:16px;
  color:#fff;                          /* icono blanco */
  transition: color .15s ease;
}

/* Hover (mouse encima) */
.hero-pill:hover{
  background:#fff;                     /* fondo blanco */
  color:#000;                          /* texto negro */
  transform: translateY(-1px);
}
.hero-pill:hover i{
  color:#000;                          /* icono negro */
}

/* Click / presionado */
.hero-pill:active{
  background:#fff;
  color:#000;
  transform: translateY(0);
}
.hero-pill:active i{
  color:#000;
}

/* Opcional: si quieres que al navegar con teclado también se vea blanco */
.hero-pill:focus-visible{
  outline: none;
  box-shadow: 0 0 0 3px rgba(255,255,255,.25);
}
/* ====== SOLO PARA EL CAMBIO DE CONTENIDO (tabs) ====== */
.plans-panels [data-panel]{
  display:none;
}

.plans-panels [data-panel].is-visible{
  display:block;
}

/* (opcional) separador visual */
.plans-panels{
  padding-top: 12px;
}
/* Centrar todos los títulos (h2) de las secciones */
.scale-title,
.start-title,
.marketplace-title,
.dev-title{
  text-align: center;
  width: 100%;
}

/* (Opcional) si algún h2 no usa esas clases, centra todos los h2 dentro de secciones de planes */
.scale-plans h2,
.start-plans h2,
.marketplace-plans h2,
.dev-plans h2{
  text-align: center;
}

.section-desc{
  text-align: center;
  max-width: 720px;
  margin: 10px auto 36px;
  font-size: 18px;      /* ← más grande */
  line-height: 1.6;
  opacity: .9;
}

/* ✅ Dos botones tipo campo, compactos y CENTRADOS (sin “Etapa”) */
.stage-fields{
  display:grid;
  grid-template-columns: repeat(2, minmax(200px, 360px));
  gap:14px;
  justify-content:center;
  margin:0 auto 10px;
}

@media (max-width: 900px){
  .stage-fields{
    grid-template-columns: 1fr;
    max-width: 420px;
    gap:10px;
  }
}

/* Botón */
.stage-field{
  border:1px solid rgba(0,0,0,.12);
  background:#fff;
  border-radius:10px;
  padding:10px 40px 10px 12px;
  min-height:50px;
  cursor:pointer;

  display:flex;
  align-items:center;          /* ✅ centra vertical */
  justify-content:center;      /* ✅ centra horizontal */
  text-align:center;
  position:relative;
}

/* Oculta el label “Etapa” si aún está en el HTML */
.stage-field-label{ display:none !important; }

/* Texto principal centrado */
.stage-field-value{
  font-size:16px;
  font-weight:700;
  line-height:1.1;
  color:#111;
}

/* Flecha derecha */
.stage-field-caret{
  position:absolute;
  right:12px;
  top:50%;
  width:7px;
  height:7px;
  border-right:2px solid rgba(0,0,0,.55);
  border-bottom:2px solid rgba(0,0,0,.55);
  transform: translateY(-55%) rotate(45deg);
  pointer-events:none;
}

/* Activo */
.stage-field.is-active{
  border-color: rgba(0,0,0,.22);
  box-shadow: 0 0 0 3px rgba(0,0,0,.06), 0 10px 22px rgba(0,0,0,.12);
}

/* Quitar la “flecha” */
.stage-field-caret{
  display:none !important;
}

/* Mostrar solo la card que corresponde a la etapa activa (solo Dev) */
#planes-desarrollo:has(.stage-field[data-set-stage="impl"].is-active)
  .dev-card[data-show-stage="plan"]{
  display:none;
}

#planes-desarrollo:has(.stage-field[data-set-stage="plan"].is-active)
  .dev-card[data-show-stage="impl"]{
  display:none;
}
/* Centrar cards de Desarrollo y Automatizaciones según etapa */
#planes-desarrollo .dev-grid,
#planes-automatizaciones .dev-grid{
  display:flex;
  flex-wrap:wrap;
  justify-content:center;
  gap:22px;
}

#planes-desarrollo .dev-card,
#planes-automatizaciones .dev-card{
  width:100%;
  max-width:380px;
}

/* === Comparación de planes (Scale / Start) === */
.plan-compare{
  margin-top:36px;
}

.plan-compare-head{
  text-align:center;
  margin-bottom:18px;
}

.plan-compare-title{
  margin:0 0 6px;
  font-size: clamp(22px, 3vw, 30px);
  font-weight:900;
  color:#0f172a;
}

.plan-compare-desc{
  margin:0;
  color:#64748b;
  font-size:20px;
}

.plan-compare-box{
  border:1px solid #e5e7eb;
  border-radius:16px;
  overflow-x:auto;
  background:#fff;
  -webkit-overflow-scrolling: touch;
}

.plan-compare-table{
  width:100%;
  min-width:700px;
  border-collapse:collapse;
}

.plan-compare-table thead th{
  background:#f8fafc;
  font-weight:800;
  color:#0f172a;
}

.plan-compare-table th,
.plan-compare-table td{
  padding:16px 18px;
  text-align:center;
  border-bottom:1px solid #e5e7eb;
}

.plan-compare-table th:first-child,
.plan-compare-table td:first-child{
  text-align:left;
  font-weight:700;
  width:36%;
}

.plan-compare-table tr:last-child td{
  border-bottom:0;
}
.plan-compare-note{
  text-align:left;
  font-size:14px;
  color:#000000;
  padding-top:14px;
}
.plan-compare-table tfoot td{
  border-top:1px solid #e5e7eb;
  padding-top:14px;
}
