/* ===== Página Cotización (solo esta página) ===== */
:root{
  --cot-bg: #0a3cff;
  --cot-border: rgba(255,255,255,.16);
}

/* wrapper */
.cot-wrap{
  max-width:1200px;
  margin:0 auto;
}

/* ===== Nav separado del contenido ===== */
.nav{
  background: rgba(0,0,0,.14);
  border-bottom: 1px solid rgba(255,255,255,.12);
  max-width:none;
  margin:0;
  padding:18px var(--pad);
}

/* ===== Hero ===== */
.cot-hero{
  padding:70px var(--pad) 50px;
  background: linear-gradient(180deg, rgba(0,0,0,.12), rgba(0,0,0,0));
  text-align:center;
}

.narrative-page .cot-hero{
  min-height:min(88svh, 820px);
  display:grid;
  align-content:center;
}

.cot-hero h1{
  font-size:clamp(34px, 3.2vw, 60px);
  font-weight:900;
  letter-spacing:-.5px;
  margin-bottom:10px;
}

.cot-hero p{
  max-width:860px;
  margin:0 auto;
  line-height:1.6;
  font-weight:700;
  opacity:.95;
}

/* ===== Botones ===== */
.cot-actions{
  margin-top:22px;
  display:flex;
  gap:12px;
  justify-content:center;
  flex-wrap:wrap;
}

.cot-actions--left{
  justify-content:flex-start;
}

.cot-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:12px 18px;
  border-radius:999px;
  font-weight:900;
  text-decoration:none;
  cursor:pointer;
}

.cot-btn--primary{
  background:#fff;
  color:var(--cot-bg);
}

.cot-btn--ghost{
  border:1px solid rgba(255,255,255,.35);
  color:#fff;
  background:rgba(0,0,0,.12);
}

/* ===== Secciones ===== */
.cot-section{
  padding:60px var(--pad);
}

.narrative-page .cot-section{
  min-height:min(100svh, 980px);
  display:grid;
  align-content:center;
}

.cot-section--white{
  background:#fff;
  color:#111;
}

.narrative-page .cot-section--white{
  min-height:min(100svh, 1080px);
}

.cot-head{
  text-align:center;
  margin-bottom:35px;
}

.cot-head h2{
  font-size:28px;
  font-weight:900;
  margin-bottom:10px;
}

.cot-head p{
  max-width:860px;
  margin:0 auto;
  line-height:1.6;
  font-weight:700;
  opacity:.95;
}

.cot-muted{
  opacity:.92;
  line-height:1.55;
}

/* ===== Cards de planes ===== */
.cot-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(260px, 1fr));
  gap:22px;
}

.narrative-page .cot-grid{
  grid-template-columns:repeat(3, minmax(0, 1fr));
  align-items:stretch;
}

.cot-card{
  background: rgba(255,255,255,.10);
  border:1px solid var(--cot-border);
  border-radius:18px;
  padding:22px;
  min-height:460px;

  display:flex;
  flex-direction:column;
  gap:12px;

  box-shadow:0 14px 35px rgba(0,0,0,.10);
}

.cot-card--featured{
  background: rgba(0,0,0,.18);
  border:1px solid rgba(255,255,255,.22);
}

.cot-card-top h3{
  font-size:18px;
  font-weight:900;
  margin-top:6px;
}

.cot-badge{
  display:inline-flex;
  padding:6px 12px;
  border-radius:999px;
  font-size:12px;
  font-weight:900;
  background: rgba(0,0,0,.16);
  border:1px solid rgba(255,255,255,.16);
  color:#fff;
  width:fit-content;
}

.cot-list{
  margin:0;
  padding-left:18px;
  line-height:1.6;
  font-weight:700;
}

.cot-card-note{
  margin-top:auto;
  padding-top:10px;
}

.cot-card-note strong{
  display:block;
  font-size:14px;
  font-weight:900;
  margin-bottom:6px;
}

.cot-card-note p{
  font-size:12px;
  line-height:1.55;
  opacity:.92;
}

.cot-link{
  margin-top:16px;
  display:inline-flex;
  justify-content:center;
  text-decoration:none;
  font-weight:900;
  padding:12px 16px;
  border-radius:999px;

  background: rgba(0,0,0,.20);
  border:1px solid rgba(255,255,255,.18);
  color:#fff;
}

/* versión blanca */
.cot-section--white .cot-panel{
  background: rgba(10,60,255,.06);
  border:1px solid rgba(10,60,255,.18);
}

.cot-section--white .cot-link{
  background: var(--cot-bg);
  border:none;
  color:#fff;
}

/* ===== Builder (cards) ===== */
.cot-builder{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:22px;
}

.cot-panel{
  border-radius:18px;
  padding:22px;
  background: rgba(255,255,255,.06);
  border:1px solid rgba(0,0,0,.08);
}

.cot-panel h3{
  font-size:18px;
  font-weight:900;
  margin-bottom:12px;
}

/* Form en grilla */
.cot-form{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:14px;
}

.cot-field{
  display:flex;
  flex-direction:column;
  gap:8px;
  font-weight:900;
}

.cot-field select{
  padding:12px 12px;
  border-radius:12px;
  border:1px solid rgba(0,0,0,.12);
  outline:none;
  font-weight:700;
}

.cot-mods{
  display:grid;
  grid-template-columns:1fr;
  gap:10px;
  margin-bottom:16px;
}

.cot-check{
  display:flex;
  gap:10px;
  align-items:center;
  font-weight:800;
}

.cot-tip{
  margin-top:14px;
  padding:12px 14px;
  border-radius:14px;
  background: rgba(10,60,255,.10);
  border:1px solid rgba(10,60,255,.18);
  font-weight:800;
}

/* ===== FAQ como cards ===== */
.cot-faq{
  display:grid;
  grid-template-columns:1fr;
  gap:12px;
  max-width:900px;
  margin:0 auto;
}

.cot-faq-item{
  background: rgba(0,0,0,.12);
  border:1px solid rgba(255,255,255,.16);
  border-radius:14px;
  padding:14px;
}

.cot-faq-q{
  font-weight:900;
  font-size:15px;
}

.cot-faq-a{
  margin-top:10px;
  line-height:1.6;
  font-weight:700;
  opacity:.95;
}

.cot-section--white .cot-faq-item{
  background: rgba(10,60,255,.06);
  border:1px solid rgba(10,60,255,.16);
}

@media (max-width: 900px){
  .narrative-page{
    scroll-snap-type:y proximity;
    scroll-padding-top:20px;
  }

  .narrative-page .cot-hero,
  .narrative-page .cot-section{
    min-height:auto;
    scroll-snap-align:none;
    scroll-snap-stop:normal;
  }

  .narrative-page .cot-grid{
    grid-template-columns:repeat(2, minmax(0, 1fr));
  }

  .cot-builder{ grid-template-columns:1fr; }
  .cot-form{ grid-template-columns:1fr; }
}

@media (max-width: 640px){
  .narrative-page .cot-grid{
    grid-template-columns:1fr;
  }
}
/* ================================
   THEME AZUL (NAV + CARDS)
   Pegalo al FINAL de cot.css
================================== */

/* NAVBAR AZUL */
.nav{
  background: #0a3cff !important;
  border-bottom: 1px solid rgba(255,255,255,.18) !important;
}

/* Pills del nav: más contraste en azul */
.nav-pill{
  background: rgba(255,255,255,.14) !important;
  border: 1px solid rgba(255,255,255,.22) !important;
  color: #fff !important;
}

.nav-pill:hover{
  background: rgba(255,255,255,.22) !important;
}

/* CTA: blanco para destacar */
.nav-cta{
  background: #fff !important;
  color: #0a3cff !important;
  border: 1px solid rgba(255,255,255,.55) !important;
}

/* ================================
   CARDS AZULES (planes + builder + FAQ)
================================== */

/* Plan cards (Landing/Empresa/Full) */
.cot-card{
  background: #1f6bff !important;
  border: 1px solid rgba(255,255,255,.18) !important;
  color: #fff !important;
  transform:perspective(1200px) translateY(0) scale(1) rotateX(0deg);
  transform-origin:center center;
  box-shadow:0 14px 35px rgba(0,0,0,.10);
  transition:transform .32s ease, box-shadow .32s ease, border-color .32s ease, background .32s ease;
  position:relative;
  overflow:hidden;
}

.cot-card--featured{
  background: #0829ac !important;
  border: 1px solid rgba(255,255,255,.22) !important;
}

.cot-card:hover{
  transform:perspective(1200px) translateY(-12px) scale(1.045) rotateX(4deg);
  box-shadow:0 32px 75px rgba(9, 35, 134, .28);
  border-color:rgba(255,255,255,.34) !important;
}

.cot-card::before{
  content:"";
  position:absolute;
  inset:-30% auto auto -20%;
  width:180px;
  height:180px;
  border-radius:50%;
  background:radial-gradient(circle, rgba(255,255,255,.24) 0%, rgba(255,255,255,0) 70%);
  opacity:.55;
  pointer-events:none;
  transition:transform .36s ease, opacity .36s ease;
}

.cot-card:hover::before{
  transform:translate(28px, 22px) scale(1.1);
  opacity:.9;
}

/* textos dentro de card */
.cot-card .cot-muted{ color: rgba(255,255,255,.92) !important; }
.cot-card .cot-list{ color:#fff !important; }

.cot-card-top{
  position:relative;
  z-index:1;
}

.cot-card-body{
  margin-top:6px;
  display:grid;
  gap:14px;
  opacity:.68;
  transform:translateY(18px);
  transition:opacity .28s ease, transform .28s ease;
}

.cot-card:hover .cot-card-body{
  opacity:1;
  transform:translateY(0);
}

/* badge */
.cot-badge{
  background: rgba(255,255,255,.16) !important;
  border: 1px solid rgba(255,255,255,.22) !important;
  color:#fff !important;
}

/* botón dentro de card */
.cot-link{
  background: rgba(255,255,255,.16) !important;
  border: 1px solid rgba(255,255,255,.22) !important;
  color:#fff !important;
  position:relative;
  z-index:1;
  transition:transform .26s ease, background .26s ease, border-color .26s ease;
}

.cot-card:hover .cot-link{
  transform:translateY(-2px);
  background:rgba(255,255,255,.22) !important;
  border-color:rgba(255,255,255,.36) !important;
}

/* Builder panels (las 2 cards de "Armá tu plan") */
.cot-section--white{
  background: #ffffff !important; /* mantenemos el fondo blanco */
}

.cot-panel{
  background: #1f6bff !important;
  border: 1px solid rgba(255,255,255,.18) !important;
  color:#fff !important;
}

.cot-panel h3{ color:#fff !important; }

/* selects dentro del panel azul */
.cot-field span{ color:#fff !important; }
.cot-field select{
  background:#fff !important;
  color:#111 !important;
  border: 1px solid rgba(0,0,0,.12) !important;
}

/* checkboxes */
.cot-check{ color:#fff !important; }

/* tip dentro del panel */
.cot-tip{
  background: rgba(255,255,255,.14) !important;
  border: 1px solid rgba(255,255,255,.22) !important;
  color:#fff !important;
}

/* FAQ cards */
.cot-faq-item{
  background: #0829ac !important;
  border: 1px solid rgba(255,255,255,.18) !important;
  color:#fff !important;
}

.cot-faq-q{ color:#fff !important; }
.cot-faq-a{ color: rgba(255,255,255,.92) !important; }

/* ================================
   Wizard premium
================================== */

.cot-wizard{
  display:grid;
  grid-template-columns:minmax(280px, 360px) minmax(0, 1fr);
  gap:24px;
  align-items:start;
}

.cot-wizard__summary,
.cot-wizard__main{
  min-width:0;
}

.cot-summary-card,
.cot-progress,
.cot-stage,
.cot-wizard__nav{
  background:linear-gradient(180deg, #0d36d8 0%, #1f6bff 100%) !important;
  border:1px solid rgba(255,255,255,.18) !important;
  border-radius:28px;
  box-shadow:0 22px 55px rgba(9, 35, 134, .18);
  color:#fff;
}

.cot-summary-card{
  padding:24px;
  position:sticky;
  top:24px;
}

.cot-summary-card__header{
  display:flex;
  flex-direction:column;
  gap:8px;
  margin-bottom:22px;
}

.cot-summary-card__eyebrow,
.cot-progress__caption,
.cot-step__eyebrow,
.cot-review__eyebrow{
  font-size:12px;
  letter-spacing:.16em;
  text-transform:uppercase;
  opacity:.72;
  font-weight:800;
}

.cot-summary-card h3,
.cot-step__intro h3,
.cot-review__hero h4{
  font-size:clamp(24px, 2vw, 34px);
  line-height:1.1;
  font-weight:900;
}

.cot-summary-plan{
  padding:18px;
  border-radius:22px;
  background:rgba(255,255,255,.12);
  border:1px solid rgba(255,255,255,.18);
}

.cot-summary-plan__label{
  display:block;
  font-size:12px;
  text-transform:uppercase;
  letter-spacing:.14em;
  font-weight:800;
  opacity:.72;
  margin-bottom:8px;
}

.cot-summary-plan strong{
  font-size:24px;
  display:block;
  margin-bottom:8px;
}

.cot-summary-plan p{
  line-height:1.6;
  color:rgba(255,255,255,.88);
}

.cot-summary-list{
  list-style:none;
  margin:18px 0;
  display:grid;
  gap:12px;
}

.cot-summary-list li{
  display:flex;
  justify-content:space-between;
  gap:16px;
  align-items:flex-start;
  padding:14px 0;
  border-bottom:1px solid rgba(255,255,255,.12);
}

.cot-summary-list span{
  color:rgba(255,255,255,.72);
  font-weight:700;
}

.cot-summary-list strong{
  text-align:right;
  font-weight:900;
}

.cot-tip--soft{
  margin-top:10px;
  background:rgba(255,255,255,.10) !important;
  border:1px solid rgba(255,255,255,.16) !important;
  color:#fff !important;
}

.cot-progress{
  padding:22px;
}

.cot-progress__top{
  display:flex;
  justify-content:space-between;
  gap:12px;
  align-items:center;
  margin-bottom:14px;
}

.cot-progress__count{
  font-weight:900;
}

.cot-progress__bar{
  height:10px;
  width:100%;
  border-radius:999px;
  background:rgba(255,255,255,.14);
  overflow:hidden;
}

.cot-progress__bar span{
  display:block;
  height:100%;
  width:16.66%;
  border-radius:inherit;
  background:linear-gradient(90deg, #ffffff 0%, #bfd1ff 100%);
  transition:width .35s ease;
}

.cot-progress__steps{
  margin-top:16px;
  display:grid;
  grid-template-columns:repeat(6, minmax(0, 1fr));
  gap:10px;
}

.cot-progress__step{
  border:none;
  border-radius:999px;
  padding:10px 8px;
  background:rgba(255,255,255,.09);
  color:rgba(255,255,255,.78);
  font-weight:800;
  cursor:pointer;
  transition:background .2s ease, color .2s ease, transform .2s ease;
}

.cot-progress__step.is-active,
.cot-progress__step:hover{
  background:#fff;
  color:var(--blue2);
  transform:translateY(-1px);
}

.cot-stage{
  margin-top:18px;
  padding:28px;
  min-height:620px;
  position:relative;
  overflow:hidden;
}

.cot-step{
  display:none;
  animation:cotWizardIn .35s ease;
}

.cot-step.is-active{
  display:block;
}

@keyframes cotWizardIn{
  from{
    opacity:0;
    transform:translateY(14px);
  }
  to{
    opacity:1;
    transform:translateY(0);
  }
}

.cot-step__intro{
  max-width:620px;
  margin-bottom:24px;
}

.cot-step__intro p{
  margin-top:10px;
  color:rgba(255,255,255,.86);
  line-height:1.7;
  font-weight:700;
}

.cot-option-grid{
  display:grid;
  grid-template-columns:repeat(2, minmax(0, 1fr));
  gap:16px;
}

.cot-option-grid--compact{
  grid-template-columns:repeat(auto-fit, minmax(180px, 1fr));
}

.cot-option-card{
  border:none;
  text-align:left;
  cursor:pointer;
  padding:22px;
  border-radius:24px;
  min-height:168px;
  background:rgba(255,255,255,.09);
  border:1px solid rgba(255,255,255,.14);
  color:#fff;
  transition:transform .22s ease, box-shadow .22s ease, border-color .22s ease, background .22s ease;
}

.cot-option-card:hover{
  transform:translateY(-4px);
  box-shadow:0 18px 40px rgba(5, 18, 78, .22);
  border-color:rgba(255,255,255,.32);
}

.cot-option-card.is-selected{
  background:#fff;
  color:var(--blue2);
  border-color:#fff;
  box-shadow:0 22px 42px rgba(255,255,255,.18);
}

.cot-option-card strong{
  display:block;
  font-size:20px;
  line-height:1.2;
  font-weight:900;
  margin-bottom:10px;
}

.cot-option-card p{
  line-height:1.6;
  color:inherit;
  opacity:.82;
  font-weight:700;
}

.cot-option-card__tag{
  display:inline-flex;
  margin-bottom:14px;
  padding:7px 12px;
  border-radius:999px;
  background:rgba(255,255,255,.14);
  border:1px solid rgba(255,255,255,.16);
  color:inherit;
  font-size:12px;
  font-weight:900;
  letter-spacing:.08em;
  text-transform:uppercase;
}

.cot-option-card.is-selected .cot-option-card__tag{
  background:rgba(10,60,255,.08);
  border-color:rgba(10,60,255,.12);
}

.cot-option-card--toggle{
  min-height:148px;
}

.cot-wizard__nav{
  margin-top:18px;
  padding:16px;
  display:flex;
  justify-content:space-between;
  gap:12px;
}

.cot-btn--dark{
  background:rgba(255,255,255,.14);
  border:1px solid rgba(255,255,255,.18);
  color:#fff;
}

.cot-btn--dark[disabled]{
  opacity:.45;
  cursor:not-allowed;
}

.cot-review{
  display:grid;
  gap:18px;
}

.cot-review__hero{
  padding:22px;
  border-radius:24px;
  background:rgba(255,255,255,.10);
  border:1px solid rgba(255,255,255,.16);
}

.cot-review__hero p{
  margin-top:10px;
  line-height:1.7;
  color:rgba(255,255,255,.86);
  font-weight:700;
}

.cot-review__grid{
  display:grid;
  grid-template-columns:repeat(2, minmax(0, 1fr));
  gap:14px;
}

.cot-review__item,
.cot-review__extras{
  padding:18px;
  border-radius:22px;
  background:rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.14);
}

.cot-review__item span,
.cot-review__extras span{
  display:block;
  margin-bottom:8px;
  color:rgba(255,255,255,.72);
  font-size:13px;
  text-transform:uppercase;
  letter-spacing:.08em;
  font-weight:800;
}

.cot-review__item strong{
  font-size:18px;
  font-weight:900;
}

.cot-review__chips{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
}

.cot-review__notes{
  display:grid;
  grid-template-columns:repeat(2, minmax(0, 1fr));
  gap:14px;
}

.cot-review__note{
  padding:18px;
  border-radius:22px;
  background:rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.14);
}

.cot-review__note span{
  display:block;
  margin-bottom:8px;
  color:rgba(255,255,255,.72);
  font-size:13px;
  text-transform:uppercase;
  letter-spacing:.08em;
  font-weight:800;
}

.cot-review__note p{
  line-height:1.65;
  color:rgba(255,255,255,.88);
  font-weight:700;
}

.cot-review__upgrade{
  padding:20px;
  border-radius:24px;
  background:rgba(255,255,255,.10);
  border:1px solid rgba(255,255,255,.16);
  display:grid;
  gap:14px;
}

.cot-review__upgrade-copy span{
  display:block;
  margin-bottom:8px;
  color:rgba(255,255,255,.72);
  font-size:13px;
  text-transform:uppercase;
  letter-spacing:.08em;
  font-weight:800;
}

.cot-review__upgrade-copy p{
  line-height:1.7;
  color:rgba(255,255,255,.9);
  font-weight:700;
}

.cot-contact-card{
  padding:22px;
  border-radius:24px;
  background:rgba(255,255,255,.10);
  border:1px solid rgba(255,255,255,.16);
  display:grid;
  gap:18px;
}

.cot-contact-card__copy span{
  display:block;
  margin-bottom:8px;
  color:rgba(255,255,255,.72);
  font-size:13px;
  text-transform:uppercase;
  letter-spacing:.08em;
  font-weight:800;
}

.cot-contact-card__copy p{
  line-height:1.7;
  color:rgba(255,255,255,.9);
  font-weight:700;
}

.cot-contact-grid{
  display:grid;
  grid-template-columns:repeat(2, minmax(0, 1fr));
  gap:14px;
}

.cot-contact-field{
  display:grid;
  gap:8px;
}

.cot-contact-field--full{
  grid-column:1 / -1;
}

.cot-contact-field span{
  color:rgba(255,255,255,.78);
  font-size:13px;
  font-weight:800;
}

.cot-contact-field input,
.cot-contact-field textarea{
  width:100%;
  border:none;
  border-radius:18px;
  padding:14px 16px;
  background:rgba(255,255,255,.96);
  color:#10214f;
  font:inherit;
  box-shadow:0 10px 24px rgba(7, 22, 76, .12);
}

.cot-contact-field textarea{
  min-height:118px;
  resize:vertical;
}

.cot-contact-field input::placeholder,
.cot-contact-field textarea::placeholder{
  color:rgba(16,33,79,.54);
}

.cot-submit-card{
  padding:22px;
  border-radius:24px;
  background:rgba(255,255,255,.11);
  border:1px solid rgba(255,255,255,.16);
  display:grid;
  gap:18px;
}

.cot-submit-card__copy span,
.cot-submit-status strong{
  display:block;
  margin-bottom:8px;
  color:rgba(255,255,255,.72);
  font-size:13px;
  text-transform:uppercase;
  letter-spacing:.08em;
  font-weight:800;
}

.cot-submit-card__copy p{
  line-height:1.7;
  color:rgba(255,255,255,.9);
  font-weight:700;
}

.cot-submit-card__copy strong{
  color:#fff;
}

.cot-submit-status{
  padding:18px;
  border-radius:22px;
  border:1px solid rgba(255,255,255,.18);
  background:rgba(7, 16, 68, .26);
}

.cot-submit-status strong{
  color:#fff;
  margin-bottom:10px;
}

.cot-submit-status p{
  line-height:1.65;
  color:rgba(255,255,255,.88);
  font-weight:700;
}

.cot-submit-status.is-success{
  background:rgba(18, 123, 72, .22);
  border-color:rgba(113, 243, 184, .22);
}

.cot-submit-status.is-error{
  background:rgba(167, 39, 71, .20);
  border-color:rgba(255, 159, 184, .22);
}

.cot-btn.is-loading{
  position:relative;
  pointer-events:none;
  opacity:.88;
}

.cot-btn.is-loading::after{
  content:"";
  width:16px;
  height:16px;
  border-radius:50%;
  border:2px solid rgba(255,255,255,.42);
  border-top-color:#fff;
  animation:cotSpin .8s linear infinite;
  margin-left:10px;
}

.is-hidden{
  display:none !important;
}

@keyframes cotSpin{
  from{ transform:rotate(0deg); }
  to{ transform:rotate(360deg); }
}

.cot-chip{
  display:inline-flex;
  align-items:center;
  padding:10px 14px;
  border-radius:999px;
  background:#fff;
  color:var(--blue2);
  font-size:14px;
  font-weight:900;
  margin-bottom:0 !important;
  text-transform:none !important;
  letter-spacing:normal !important;
  color:var(--blue) !important;
  border:1px solid rgba(10,60,255,.14);
  box-shadow:0 10px 24px rgba(10,60,255,.10);
}

@media (max-width: 1080px){
  .cot-wizard{
    grid-template-columns:1fr;
  }

  .cot-summary-card{
    position:relative;
    top:auto;
  }
}

@media (max-width: 900px){
  .cot-progress__steps{
    grid-template-columns:repeat(3, minmax(0, 1fr));
  }

  .cot-stage{
    min-height:auto;
    padding:22px;
  }

  .cot-option-grid,
  .cot-contact-grid,
  .cot-review__grid,
  .cot-review__notes{
    grid-template-columns:1fr;
  }
}

@media (max-width: 640px){
  .cot-progress__top,
  .cot-wizard__nav{
    flex-direction:column;
    align-items:stretch;
  }

  .cot-progress__steps{
    grid-template-columns:repeat(2, minmax(0, 1fr));
  }

  .cot-summary-list li{
    flex-direction:column;
    gap:8px;
  }

  .cot-summary-list strong{
    text-align:left;
  }

  .cot-option-card{
    min-height:auto;
  }

  .cot-card{
    transform:none !important;
  }

  .cot-card-body{
    opacity:1;
    transform:none;
  }
}
