/* mi-cobertura.css — migrado 1:1 del demo _tmp-demo-tools/mi-cobertura.html */

/* ── Page hero ── */
    .page-hero {
      background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 60%, #0099B8 100%);
      padding: calc(var(--nav-h) + 2.5rem) 0 2.5rem;
      text-align: center;
    }
    .page-hero h1 { color: var(--white); font-size: clamp(1.8rem, 4vw, 2.6rem); margin-bottom: .5rem; }
    .page-hero p { color: rgba(255,255,255,.82); font-size: 1.05rem; max-width: 560px; margin: 0 auto; }
    .breadcrumb { font-size: .8rem; color: rgba(255,255,255,.6); margin-top: .75rem; }
    .breadcrumb a { color: rgba(255,255,255,.7); }
    .breadcrumb a:hover { color: var(--white); }

    /* ── Steps header ── */
    .steps-bar {
      background: var(--white);
      border-bottom: 1px solid var(--border);
      padding: 1.25rem 0;
    }
    .steps-inner {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 0;
    }
    .step {
      display: flex;
      align-items: center;
      gap: .5rem;
      font-size: .85rem;
      font-weight: 500;
      color: var(--text-light);
      padding: .4rem .75rem;
    }
    .step.active { color: var(--primary); }
    .step.done { color: var(--accent); }
    .step__num {
      width: 28px; height: 28px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: .8rem;
      font-weight: 700;
      border: 2px solid var(--border);
      color: var(--text-light);
      flex-shrink: 0;
      transition: all .3s ease;
    }
    .step.active .step__num { border-color: var(--primary); color: var(--primary); background: rgba(10,94,125,.07); }
    .step.done .step__num { background: var(--accent); border-color: var(--accent); color: white; }
    .step-divider { width: 40px; height: 2px; background: var(--border); flex-shrink: 0; }
    .step-divider.done { background: var(--accent); }

    /* ── Main content ── */
    .coverage-main {
      padding: 3rem 0 4rem;
      background: var(--off-white);
      min-height: 60vh;
    }

    /* ── Step 1: ARS selector ── */
    .step-panel { display: none; }
    .step-panel.active { display: block; }

    .step1-header {
      text-align: center;
      margin-bottom: 2rem;
    }
    .step1-header h2 { font-size: 1.5rem; color: var(--heading); margin-bottom: .4rem; }
    .step1-header p { color: var(--text-light); font-size: .95rem; }

    .ars-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 1rem;
    }

    @media (min-width: 480px) { .ars-grid { grid-template-columns: repeat(3, 1fr); } }
    @media (min-width: 768px) { .ars-grid { grid-template-columns: repeat(4, 1fr); } }
    @media (min-width: 1024px) { .ars-grid { grid-template-columns: repeat(5, 1fr); } }

    .ars-card {
      background: var(--white);
      border: 2px solid var(--border);
      border-radius: var(--radius-lg);
      padding: 1.25rem .75rem;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: .6rem;
      cursor: pointer;
      transition: all .2s ease;
      text-align: center;
      position: relative;
      min-height: 100px;
    }
    .ars-card:hover {
      border-color: var(--accent);
      box-shadow: 0 4px 20px rgba(0,180,216,.15);
      transform: translateY(-2px);
    }
    .ars-card.selected {
      border-color: var(--primary);
      background: rgba(10,94,125,.04);
      box-shadow: 0 4px 20px rgba(10,94,125,.15);
    }
    .ars-card__check {
      position: absolute;
      top: .6rem; right: .6rem;
      width: 22px; height: 22px;
      border-radius: 50%;
      background: var(--primary);
      display: none;
      align-items: center;
      justify-content: center;
    }
    .ars-card.selected .ars-card__check { display: flex; }
    .ars-card__check svg { width: 13px; height: 13px; color: white; }

    .ars-logo {
      width: 52px; height: 52px;
      border-radius: 10px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: .85rem;
      font-weight: 700;
      color: white;
      letter-spacing: -.5px;
      flex-shrink: 0;
    }
    .ars-card__name {
      font-size: .78rem;
      font-weight: 600;
      color: var(--heading);
      line-height: 1.3;
    }

    /* No-insurance card special style */
    .ars-card--none {
      border-style: dashed;
      border-color: #B0BEC5;
    }
    .ars-card--none:hover { border-color: var(--gold); box-shadow: 0 4px 20px rgba(201,169,98,.15); }
    .ars-card--none.selected { border-color: var(--gold); border-style: solid; background: rgba(201,169,98,.04); }
    .ars-card--none.selected .ars-card__check { background: var(--gold); }

    /* ── CTA after selection ── */
    .step1-cta {
      margin-top: 2rem;
      text-align: center;
    }
    .step1-cta .btn { min-width: 200px; }
    .step1-cta .hint { font-size: .8rem; color: var(--text-light); margin-top: .75rem; }

    /* ── Step 2: Results ── */
    .results-header {
      display: flex;
      align-items: center;
      gap: 1rem;
      margin-bottom: 2rem;
      flex-wrap: wrap;
    }
    .results-header__back {
      display: inline-flex;
      align-items: center;
      gap: .4rem;
      font-size: .85rem;
      font-weight: 500;
      color: var(--primary);
      cursor: pointer;
      border: none;
      background: none;
      font-family: 'Poppins', sans-serif;
      padding: .5rem .75rem;
      border-radius: var(--radius);
      transition: var(--transition);
    }
    .results-header__back:hover { background: rgba(10,94,125,.07); }
    .results-header__back svg { width: 16px; height: 16px; }

    .results-header__info {
      display: flex;
      align-items: center;
      gap: .75rem;
    }
    .results-header__logo {
      width: 42px; height: 42px;
      border-radius: 8px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: .75rem;
      font-weight: 700;
      color: white;
    }
    .results-header__name { font-size: 1.2rem; font-weight: 600; color: var(--heading); }
    .results-header__sub { font-size: .8rem; color: var(--text-light); }

    /* ── Service cards ── */
    .services-section-title {
      font-size: .72rem;
      font-weight: 700;
      letter-spacing: 1.5px;
      text-transform: uppercase;
      color: var(--text-light);
      margin: 1.75rem 0 .875rem;
    }

    .service-card {
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: var(--radius-lg);
      overflow: hidden;
      margin-bottom: .75rem;
      transition: box-shadow .2s ease;
    }
    .service-card:hover { box-shadow: var(--shadow); }

    .service-card__header {
      display: flex;
      align-items: center;
      gap: 1rem;
      padding: 1rem 1.25rem;
      cursor: pointer;
    }
    .service-card__icon {
      width: 42px; height: 42px;
      border-radius: 10px;
      background: var(--off-white);
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }
    .service-card__icon svg { width: 22px; height: 22px; color: var(--primary); }
    .service-card__info { flex: 1; min-width: 0; }
    .service-card__name {
      font-size: .95rem;
      font-weight: 600;
      color: var(--heading);
      margin-bottom: .15rem;
    }
    .service-card__copay {
      font-size: .8rem;
      color: var(--text-light);
    }
    .service-card__right {
      display: flex;
      align-items: center;
      gap: .75rem;
      flex-shrink: 0;
    }

    /* Coverage badges */
    .badge {
      display: inline-flex;
      align-items: center;
      gap: .3rem;
      padding: .3rem .7rem;
      border-radius: 999px;
      font-size: .73rem;
      font-weight: 600;
      white-space: nowrap;
    }
    .badge--covered { background: rgba(39,174,96,.12); color: #1E8449; }
    .badge--partial { background: rgba(243,156,18,.12); color: #B7770D; }
    .badge--none { background: rgba(231,76,60,.10); color: #C0392B; }
    .badge__dot { width: 6px; height: 6px; border-radius: 50%; background: currentColor; }

    .service-card__chevron {
      width: 20px; height: 20px;
      color: var(--text-light);
      transition: transform .25s ease;
      flex-shrink: 0;
    }
    .service-card.expanded .service-card__chevron { transform: rotate(180deg); }

    /* Expandable detail */
    .service-card__detail {
      display: none;
      padding: 0 1.25rem 1.25rem;
      border-top: 1px solid var(--border);
    }
    .service-card.expanded .service-card__detail { display: block; }
    .service-card__detail-inner {
      padding-top: 1rem;
      display: grid;
      grid-template-columns: 1fr;
      gap: .75rem;
    }
    @media (min-width: 640px) {
      .service-card__detail-inner { grid-template-columns: 1fr 1fr; }
    }
    .detail-item__label {
      font-size: .7rem;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: .8px;
      color: var(--text-light);
      margin-bottom: .25rem;
    }
    .detail-item__value {
      font-size: .875rem;
      color: var(--text);
    }
    .docs-list {
      list-style: none;
      padding: 0;
      margin: 0;
    }
    .docs-list li {
      display: flex;
      align-items: center;
      gap: .4rem;
      font-size: .82rem;
      color: var(--text);
      margin-bottom: .25rem;
    }
    .docs-list li::before {
      content: '';
      width: 6px; height: 6px;
      border-radius: 50%;
      background: var(--accent);
      flex-shrink: 0;
    }

    /* ── No-insurance panel ── */
    .no-insurance-panel {
      background: linear-gradient(135deg, rgba(201,169,98,.08), rgba(201,169,98,.02));
      border: 1.5px solid rgba(201,169,98,.35);
      border-radius: var(--radius-xl);
      padding: 2rem;
      margin-bottom: 2rem;
    }
    .no-ins-title {
      display: flex;
      align-items: center;
      gap: .75rem;
      margin-bottom: 1rem;
    }
    .no-ins-icon {
      width: 44px; height: 44px;
      border-radius: 10px;
      background: rgba(201,169,98,.15);
      display: flex;
      align-items: center;
      justify-content: center;
    }
    .no-ins-icon svg { width: 24px; height: 24px; color: var(--gold); }
    .no-ins-title h3 { font-size: 1.15rem; color: var(--heading); margin: 0; }
    .price-list {
      display: grid;
      grid-template-columns: 1fr;
      gap: .625rem;
      margin: 1.25rem 0;
    }
    @media (min-width: 600px) { .price-list { grid-template-columns: repeat(2, 1fr); } }
    @media (min-width: 900px) { .price-list { grid-template-columns: repeat(3, 1fr); } }
    .price-item {
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: var(--radius);
      padding: .875rem 1rem;
      display: flex;
      justify-content: space-between;
      align-items: center;
    }
    .price-item__name { font-size: .85rem; color: var(--text); font-weight: 500; }
    .price-item__amount { font-size: .9rem; font-weight: 700; color: var(--primary); }

    .payment-options {
      display: flex;
      flex-wrap: wrap;
      gap: .625rem;
      margin-top: 1.25rem;
    }
    .pay-opt {
      display: inline-flex;
      align-items: center;
      gap: .4rem;
      padding: .45rem .9rem;
      border-radius: 999px;
      border: 1px solid var(--border);
      background: var(--white);
      font-size: .8rem;
      font-weight: 500;
      color: var(--text);
    }
    .pay-opt svg { width: 15px; height: 15px; color: var(--primary); }

    /* ── Bottom info ── */
    .coverage-bottom {
      padding: 3rem 0;
      background: var(--white);
    }
    .bottom-grid {
      display: grid;
      gap: 2rem;
      grid-template-columns: 1fr;
    }
    @media (min-width: 768px) {
      .bottom-grid { grid-template-columns: 1fr 1fr; }
    }
    .docs-card {
      background: var(--off-white);
      border-radius: var(--radius-lg);
      padding: 1.75rem;
      border: 1px solid var(--border);
    }
    .docs-card h3 { font-size: 1rem; margin-bottom: 1rem; display: flex; align-items: center; gap: .5rem; }
    .docs-card h3 svg { width: 20px; height: 20px; color: var(--accent); }
    .docs-card ul { list-style: none; padding: 0; }
    .docs-card ul li {
      display: flex;
      align-items: flex-start;
      gap: .6rem;
      padding: .6rem 0;
      border-bottom: 1px solid var(--border);
      font-size: .9rem;
      color: var(--text);
    }
    .docs-card ul li:last-child { border-bottom: none; }
    .docs-card ul li::before {
      content: '';
      width: 8px; height: 8px;
      border-radius: 50%;
      background: var(--primary);
      flex-shrink: 0;
      margin-top: .45rem;
    }

    .help-card {
      background: linear-gradient(135deg, var(--primary), var(--accent));
      border-radius: var(--radius-lg);
      padding: 1.75rem;
      color: var(--white);
    }
    .help-card h3 { font-size: 1rem; color: var(--white); margin-bottom: 1rem; display: flex; align-items: center; gap: .5rem; }
    .help-card h3 svg { width: 20px; height: 20px; }
    .help-card p { color: rgba(255,255,255,.85); font-size: .875rem; margin-bottom: 1.25rem; }
    .help-links { display: flex; flex-direction: column; gap: .625rem; }
    .help-link {
      display: flex;
      align-items: center;
      gap: .75rem;
      padding: .75rem 1rem;
      background: rgba(255,255,255,.15);
      border-radius: var(--radius);
      color: var(--white);
      font-size: .875rem;
      font-weight: 500;
      transition: background .2s;
      text-decoration: none;
    }
    .help-link:hover { background: rgba(255,255,255,.25); color: white; }
    .help-link svg { width: 18px; height: 18px; }

    /* Disclaimer */
    .disclaimer {
      background: rgba(243,156,18,.07);
      border: 1px solid rgba(243,156,18,.3);
      border-radius: var(--radius);
      padding: 1rem 1.25rem;
      display: flex;
      gap: .75rem;
      align-items: flex-start;
      margin-top: 2rem;
    }
    .disclaimer svg { width: 18px; height: 18px; color: #E67E22; flex-shrink: 0; margin-top: .1rem; }
    .disclaimer p { font-size: .8rem; color: var(--text-light); margin: 0; line-height: 1.6; }

    /* ── Fade in ── */
    .fade-in { opacity: 0; transform: translateY(20px); transition: opacity .55s ease, transform .55s ease; }
    .fade-in.visible { opacity: 1; transform: translateY(0); }

    /* ── Summary strip ── */
    .coverage-summary {
      display: flex;
      gap: 1rem;
      flex-wrap: wrap;
      margin-bottom: 1.75rem;
      padding: 1rem 1.25rem;
      background: var(--white);
      border-radius: var(--radius-lg);
      border: 1px solid var(--border);
    }
    .cov-stat {
      display: flex;
      align-items: center;
      gap: .5rem;
      font-size: .82rem;
    }
    .cov-stat__dot {
      width: 10px; height: 10px;
      border-radius: 50%;
    }
    .cov-stat__label { color: var(--text-light); }
    .cov-stat__count { font-weight: 700; color: var(--heading); }