/* ── ADDRESS CARD ── */
  .address-card {
    background: var(--white);
    border: 1.5px solid var(--border);
    border-radius: 10px;
    padding: 24px;
    max-width: 460px;
    margin-bottom: 32px;
  }

  .address-hint {
    font-size: 13.5px;
    color: var(--text-mid);
    line-height: 1.55;
    margin-bottom: 16px;
  }

  .address-instruction {
    font-size: 13px;
    color: var(--text-mid);
    line-height: 1.55;
    margin-bottom: 14px;
  }

  /* Search input */
  .search-field {
    display: flex;
    align-items: center;
    border: 1.5px solid var(--border);
    border-radius: 6px;
    overflow: hidden;
    transition: border-color 0.2s, box-shadow 0.2s;
    margin-bottom: 14px;
  }
  .search-field:focus-within {
    border-color: var(--navy);
    box-shadow: 0 0 0 3px rgba(0,40,85,0.09);
  }
  .search-input {
    flex: 1;
    border: none;
    outline: none;
    font-family: 'Source Sans 3', sans-serif;
    font-size: 14.5px;
    color: var(--text-dark);
    padding: 12px 14px;
    background: transparent;
  }
  .search-input::placeholder { color: #aaa; }
  .search-btn {
    background: transparent;
    border: none;
    padding: 0 14px;
    cursor: pointer;
    color: var(--text-light);
    display: flex;
    align-items: center;
    transition: color 0.2s;
  }
  .search-btn:hover { color: var(--navy); }

  .manual-link {
    font-size: 13px;
    color: var(--text-mid);
  }
  .manual-link a {
    color: var(--navy);
    text-decoration: underline;
    font-weight: 600;
    cursor: pointer;
  }
  .manual-link a:hover { color: var(--coral); }



  /* ── OPTIONS CARD ── */
  .options-card {
    background: var(--white);
    border: 1.5px solid var(--border);
    border-radius: 10px;
    padding: 22px 22px 10px;
    max-width: 460px;
    margin-bottom: 32px;
  }
  .options-label {
    font-size: 13.5px;
    color: var(--text-mid);
    margin-bottom: 16px;
    line-height: 1.5;
  }

  /* Radio options */
  .radio-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 12px;
  }
  .radio-option {
    display: flex;
    align-items: center;
    gap: 14px;
    border: 1.5px solid var(--border);
    border-radius: 8px;
    padding: 13px 16px;
    cursor: pointer;
    transition: border-color 0.18s, background 0.18s, box-shadow 0.18s;
    user-select: none;
  }
  .radio-option:hover {
    border-color: var(--navy);
    background: #f0f4fa;
  }
  .radio-option.selected {
    border-color: var(--navy);
    background: #edf2fb;
    box-shadow: 0 0 0 2px rgba(0,40,85,0.08);
  }

  /* Custom radio circle */
  .radio-circle {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 2px solid #bbb;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: border-color 0.18s;
  }
  .radio-option:hover .radio-circle,
  .radio-option.selected .radio-circle {
    border-color: var(--navy);
  }
  .radio-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--navy);
    display: none;
  }
  .radio-option.selected .radio-dot { display: block; }

  /* Hide native input */
  .radio-option input[type="radio"] {
    position: absolute;
    opacity: 0;
    pointer-events: none;
  }

  .radio-label {
    font-size: 14.5px;
    font-weight: 500;
    color: var(--text-dark);
  }

  /* ── BACK BUTTON ── */
  .btn-back {
    background: transparent;
    color: var(--navy);
    border: 2px solid var(--navy);
    padding: 11px 28px;
    border-radius: 28px;
    font-size: 15px;
    font-weight: 700;
    font-family: inherit;
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
  }
  .btn-back:hover { background: var(--navy); color: var(--white); }

  /* ── CHAT BANNER ── */
  .chat-banner {
    background: #EEF4FB;
    border-top: 1px solid #d8e6f3;
    padding: 18px 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
  }
  .chat-banner-left h4 {
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 4px;
  }
  .chat-banner-left p {
    font-size: 13px;
    color: var(--text-mid);
  }
  .chat-banner-left p a {
    color: var(--navy);
    font-weight: 700;
    text-decoration: underline;
  }
  .btn-chat {
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--white);
    border: 2px solid var(--navy);
    color: var(--navy);
    padding: 10px 20px;
    border-radius: 28px;
    font-size: 13px;
    font-weight: 700;
    font-family: inherit;
    cursor: pointer;
    white-space: nowrap;
    transition: background 0.2s, color 0.2s;
  }
  .btn-chat:hover { background: var(--navy); color: var(--white); }



    /* ── YES / NO OPTIONS ── */
  .yn-row {
    display: flex;
    gap: 12px;
    margin-bottom: 36px;
  }

  .yn-option {
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--white);
    border: 1.5px solid var(--border);
    border-radius: 8px;
    padding: 13px 28px 13px 16px;
    cursor: pointer;
    transition: border-color 0.18s, background 0.18s, box-shadow 0.18s;
    user-select: none;
    min-width: 120px;
  }
  .yn-option:hover {
    border-color: var(--navy);
    background: #f0f4fa;
  }
  .yn-option.selected {
    border-color: var(--navy);
    background: #edf2fb;
    box-shadow: 0 0 0 2px rgba(0,40,85,0.08);
  }

  .yn-option input[type="radio"] {
    position: absolute;
    opacity: 0;
    pointer-events: none;
  }

  .radio-circle {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 2px solid #bbb;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: border-color 0.18s;
  }
  .yn-option:hover .radio-circle,
  .yn-option.selected .radio-circle {
    border-color: var(--navy);
  }
  .radio-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--navy);
    display: none;
  }
  .yn-option.selected .radio-dot { display: block; }

  .yn-label {
    font-size: 15px;
    font-weight: 500;
    color: var(--text-dark);
  }


    /* ── FINANCE CARD ── */
  .finance-card {
    background: var(--white);
    border: 1.5px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 28px;
    box-shadow: 0 2px 14px rgba(13,34,64,0.06);
    animation: fadeUp 0.4s ease 0.07s both;
  }

  .finance-card-body {
    padding: 18px 22px 20px;
    border-bottom: 1.5px solid var(--border);
  }

  .finance-desc {
    font-size: 14px;
    color: var(--navy);
    line-height: 1.55;
  }

  /* ── YES / NO ROW ── */
  .yn-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .yn-option { position: relative; }
  .yn-option input[type="radio"] { position: absolute; opacity: 0; width: 0; height: 0; }

  .yn-option label {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px 22px;
    font-size: 15px;
    font-weight: 500;
    color: var(--navy);
    cursor: pointer;
    transition: background 0.18s;
    user-select: none;
  }

  .yn-option:first-child label { border-right: 1.5px solid var(--border); }

  .yn-option label:hover { background: #f5f6f8; }

  .yn-option label::before {
    content: '';
    width: 18px; height: 18px;
    border-radius: 50%;
    border: 1.5px solid var(--radio-border);
    flex-shrink: 0;
    background: var(--white);
    transition: all 0.18s;
  }

  .yn-option input[type="radio"]:checked + label { background: #eef3fc; }
  .yn-option input[type="radio"]:checked + label::before {
    border-color: var(--blue-accent);
    box-shadow: inset 0 0 0 4px var(--blue-accent);
    background: var(--white);
  }

  /* ── FOLLOW-UP NOTE ── */
  .finance-note {
    padding: 12px 22px;
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.55;
    border-top: 1.5px solid var(--border);
    background: #faf8f5;
  }


  /* ── Card ── */
    .card {
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: 16px;
      padding: 28px;
      animation: fadeUp 0.5s 0.1s ease-out both;
    }

    .card-note {
      font-size: 13px;
      color: var(--text-muted);
      margin-bottom: 18px;
    }

    .radio-group {
      display: flex;
      gap: 12px;
    }

    .radio-option {
      flex: 1;
      position: relative;
    }

    .radio-option input[type="radio"] {
      position: absolute;
      opacity: 0;
      width: 0;
      height: 0;
    }

    .radio-option label {
      display: flex;
      align-items: center;
      gap: 12px;
      /*padding: 16px 20px;
      border: 2px solid var(--border);*/
      border-radius: 12px;
      cursor: pointer;
      font-size: 15px;
      font-weight: 500;
      color: var(--navy);
      transition: border-color 0.2s, background 0.2s, box-shadow 0.2s;
      user-select: none;
    }

    .radio-option label:hover {
      border-color: var(--light-navy);
      box-shadow: 0 2px 12px rgba(13,31,76,0.08);
    }

    .radio-option input:checked + label {
      border-color: var(--navy);
      background: rgba(13,31,76,0.04);
    }

    .radio-ring {
      width: 20px;
      height: 20px;
      border: 2px solid var(--border);
      border-radius: 50%;
      flex-shrink: 0;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: border-color 0.2s;
    }

    .radio-option input:checked + label .radio-ring {
      border-color: var(--navy);
    }

    .radio-ring::after {
      content: '';
      width: 10px;
      height: 10px;
      border-radius: 50%;
      background: var(--navy);
      opacity: 0;
      transform: scale(0);
      transition: opacity 0.2s, transform 0.2s;
    }

    .radio-option input:checked + label .radio-ring::after {
      opacity: 1;
      transform: scale(1);
    }


    /*//// screen 8*/

        /* ── Radio Options ── */
    .radio-list {
      display: flex;
      flex-direction: column;
      gap: 8px;
    }

    .radio-item {
      position: relative;
    }

    .radio-item input[type="radio"] {
      position: absolute;
      opacity: 0;
      width: 0;
      height: 0;
    }

    .radio-item label {
      display: flex;
      align-items: center;
      gap: 14px;
      padding: 14px 18px;
      border: 2px solid var(--border);
      border-radius: 12px;
      cursor: pointer;
      transition: border-color 0.2s, background 0.2s, box-shadow 0.2s;
      user-select: none;
    }

    .radio-item label:hover {
      border-color: var(--light-navy);
      box-shadow: 0 2px 10px rgba(13,31,76,0.07);
    }

    .radio-item input:checked + label {
      border-color: var(--selected-border);
      background: var(--selected-bg);
    }

    .radio-ring {
      width: 20px;
      height: 20px;
      border: 2px solid var(--border);
      border-radius: 50%;
      flex-shrink: 0;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: border-color 0.2s;
      background: var(--white);
    }

    .radio-item input:checked + label .radio-ring {
      border-color: var(--navy);
    }

    .radio-ring::after {
      content: '';
      width: 10px;
      height: 10px;
      border-radius: 50%;
      background: var(--navy);
      opacity: 0;
      transform: scale(0);
      transition: opacity 0.2s, transform 0.2s;
    }

    .radio-item input:checked + label .radio-ring::after {
      opacity: 1;
      transform: scale(1);
    }

    .radio-text .label-title {
      font-size: 14.5px;
      font-weight: 600;
      color: var(--navy);
      display: block;
      line-height: 1.3;
    }

    .radio-text .label-sub {
      font-size: 12.5px;
      color: var(--text-muted);
      display: block;
      margin-top: 2px;
    }

    /* ── How to link ── */
    .how-link {
      display: inline-block;
      margin-top: 18px;
      font-size: 13px;
      font-weight: 600;
      color: var(--navy);
      background: transparent;
      border: 1.5px solid var(--navy);
      border-radius: 6px;
      padding: 7px 14px;
      cursor: pointer;
      text-decoration: none;
      transition: background 0.2s, color 0.2s;
    }

    .how-link:hover {
      background: var(--navy);
      color: var(--white);
    }


    /*////screeen 9 */

    /* ── Card Header Row ── */
    .card-header {
      display: flex;
      align-items: flex-start;
      gap: 12px;
      margin-bottom: 20px;
    }

    .person-icon {
      width: 36px;
      height: 36px;
      background: #e8e4dc;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      margin-top: 2px;
    }

    .person-icon svg {
      width: 18px;
      height: 18px;
      fill: var(--navy);
    }

    .card-header-text h2 {
      font-size: 17px;
      font-weight: 700;
      color: var(--navy);
      margin-bottom: 2px;
    }

    .card-header-text .badge {
      display: inline-block;
      font-size: 11.5px;
      font-weight: 500;
      color: var(--text-muted);
      background: #ede9e2;
      border-radius: 4px;
      padding: 2px 8px;
    }

    /* ── Question ── */
    .question-label {
      font-size: 14.5px;
      font-weight: 600;
      color: var(--navy);
      margin-bottom: 5px;
    }

    .question-hint {
      font-size: 12.5px;
      color: var(--text-muted);
      margin-bottom: 16px;
      line-height: 1.5;
    }



/*///screee 10 */

    .person-icon {
      width: 34px;
      height: 34px;
      background: #e8e4dc;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      margin-top: 2px;
    }

    .person-icon svg { width: 17px; height: 17px; fill: var(--navy); }

    .card-header-text h2 { font-size: 16px; font-weight: 700; color: var(--navy); margin-bottom: 3px; }

    .badge {
      display: inline-block;
      font-size: 11px;
      font-weight: 500;
      color: var(--text-muted);
      background: #ede9e2;
      border-radius: 4px;
      padding: 2px 8px;
    }

    /* ── Form Sections ── */
    .form-section { margin-bottom: 22px; }
    .form-section:last-child { margin-bottom: 0; }

    .field-label {
      font-size: 14px;
      font-weight: 600;
      color: var(--navy);
      margin-bottom: 5px;
      display: block;
    }

    .field-hint {
      font-size: 12.5px;
      color: var(--text-muted);
      margin-bottom: 10px;
      line-height: 1.5;
    }

    /* ── Radio Row (2-col) ── */
    .radio-row { display: flex; gap: 10px; }

    .radio-item { position: relative; flex: 1; }

    .radio-item input[type="radio"] { position: absolute; opacity: 0; width: 0; height: 0; }

    .radio-item label {
      display: flex;
      align-items: center;
      gap: 10px;
      padding: 12px 16px;
      border: 2px solid var(--border);
      border-radius: 10px;
      cursor: pointer;
      font-size: 14px;
      font-weight: 500;
      color: var(--navy);
      transition: border-color 0.2s, background 0.2s, box-shadow 0.2s;
      user-select: none;
      background: var(--white);
    }

    .radio-item label:hover {
      border-color: var(--light-navy);
      box-shadow: 0 2px 10px rgba(13,31,76,0.07);
    }

    .radio-item input:checked + label {
      border-color: var(--navy);
      background: var(--selected-bg);
    }

    /* Person selected — navy fill */
    .radio-item.selected-navy input:checked + label {
      background: var(--navy);
      color: var(--white);
    }

    .radio-item.selected-navy input:checked + label .radio-ring {
      border-color: var(--white);
      background: transparent;
    }

    .radio-item.selected-navy input:checked + label .radio-ring::after {
      background: var(--white);
    }

    .radio-ring {
      width: 18px;
      height: 18px;
      border: 2px solid var(--border);
      border-radius: 50%;
      flex-shrink: 0;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: border-color 0.2s;
      background: var(--white);
    }

    .radio-item input:checked + label .radio-ring { border-color: var(--navy); }

    .radio-ring::after {
      content: '';
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: var(--navy);
      opacity: 0;
      transform: scale(0);
      transition: opacity 0.18s, transform 0.18s;
    }

    .radio-item input:checked + label .radio-ring::after { opacity: 1; transform: scale(1); }

    /* ── Radio Stack (vertical) ── */
    .radio-stack { display: flex; flex-direction: column; gap: 8px; }

    /* ── Date Input ── */
    .date-input {
      width: 100%;
      padding: 13px 16px;
      border: 2px solid var(--border);
      border-radius: 10px;
      font-family: 'DM Sans', sans-serif;
      font-size: 14px;
      color: var(--text-muted);
      background: var(--white);
      outline: none;
      transition: border-color 0.2s;
      appearance: none;
    }

    .date-input:focus { border-color: var(--navy); color: var(--navy); }

    /* ── AHB info box ── */
    .info-box {
      background: #f7f4ef;
      border-radius: 8px;
      padding: 10px 14px;
      font-size: 12.5px;
      color: var(--text-muted);
      line-height: 1.55;
      margin-bottom: 12px;
    }

    /* ── Divider ── */
    .divider { border: none; border-top: 1px solid var(--border); margin: 22px 0; }

    /* ── Save Button ── */
    .save-btn {
      background: var(--navy);
      color: var(--white);
      border: none;
      font-family: 'DM Sans', sans-serif;
      font-size: 14px;
      font-weight: 600;
      padding: 12px 32px;
      border-radius: 50px;
      cursor: pointer;
      transition: background 0.2s;
      margin-top: 6px;
    }

    .save-btn:hover { background: var(--mid-navy); }


    /*///screen11*/


        /* ── Text / date inputs ── */
    .text-input, .date-input {
      width: 100%;
      padding: 11px 14px;
      border: 1.5px solid var(--border);
      border-radius: 9px;
      font-family: 'DM Sans', sans-serif;
      font-size: 13px;
      color: var(--navy);
      background: var(--white);
      outline: none;
      transition: border-color 0.2s;
    }
    .text-input:focus, .date-input:focus { border-color: var(--navy); }
    .text-input::placeholder, .date-input::placeholder { color: var(--text-muted); }

    .input-wrap { position: relative; }
    .input-icon {
      position: absolute;
      right: 13px; top: 50%;
      transform: translateY(-50%);
      color: var(--text-muted);
      font-size: 14px;
      pointer-events: none;
    }

    /* ── At-least-1 box ── */
    .atleast-box {
      background: #f7f4ef;
      border-radius: 8px;
      padding: 10px 14px;
      margin-bottom: 12px;
    }
    .atleast-box .atleast-title { font-size: 13px; font-weight: 600; color: var(--navy); margin-bottom: 3px; }
    .atleast-box .atleast-hint { font-size: 11.5px; color: var(--text-muted); line-height: 1.5; }

    .or-label { font-size: 12px; color: var(--text-muted); margin: 10px 0 6px; display: block; }

    /* Search address row */
    .search-row { display: flex; gap: 8px; align-items: stretch; }
    .search-row .text-input { flex: 1; }

    .search-btn {
      background: var(--navy);
      color: var(--white);
      border: none;
      font-family: 'DM Sans', sans-serif;
      font-size: 13px;
      font-weight: 600;
      padding: 0 20px;
      border-radius: 9px;
      cursor: pointer;
      transition: background 0.2s;
      white-space: nowrap;
    }
    .search-btn:hover { background: var(--mid-navy); }

    .address-hint { font-size: 11px; color: var(--text-muted); margin-bottom: 8px; line-height: 1.5; }

    /*///screen12*/

        /* ── Static value display ── */
    .field-value {
      font-size: 13.5px;
      color: var(--navy);
      font-weight: 400;
    }

    .field-value-caps {
      font-size: 13px;
      color: var(--navy);
      font-weight: 600;
      letter-spacing: 0.3px;
    }

    /* ── Update info note ── */
    .update-note {
      font-size: 12.5px;
      color: var(--text-muted);
      line-height: 1.55;
      margin-top: 4px;
    }

    .update-note a { color: var(--mid-navy); text-decoration: underline; }

    /* ── Success alert ── */
    .success-alert {
      background: var(--green-bg);
      border: 1.5px solid var(--green-border);
      border-radius: 10px;
      padding: 14px 16px;
      margin-top: 16px;
      display: flex;
      align-items: flex-start;
      gap: 10px;
      animation: fadeUp 0.4s 0.1s ease-out both;
    }

    .success-alert svg { width: 18px; height: 18px; fill: var(--green); flex-shrink: 0; margin-top: 1px; }

    .success-alert-text .success-title {
      font-size: 13.5px; font-weight: 700;
      color: var(--green);
      margin-bottom: 3px;
    }

    .success-alert-text p {
      font-size: 12.5px;
      color: #2a6644;
      line-height: 1.5;
    }

      .badge {
      display: inline-block;
      font-size: 10.5px; font-weight: 500;
      color: var(--text-muted);
      background: #ede9e2;
      border-radius: 4px;
      padding: 2px 7px;
      margin-bottom: 6px;
    }

    /* ── Customer badge ── */
    .customer-badge {
      display: inline-flex;
      align-items: center;
      gap: 5px;
      font-size: 12px;
      font-weight: 500;
      color: var(--green);
      margin-top: 4px;
    }

    .customer-badge svg { width: 15px; height: 15px; fill: var(--green); flex-shrink: 0; }

    /* ── Divider ── */
    .divider { border: none; border-top: 1px solid var(--border); margin: 16px 0; }

    /* ── Field display rows ── */
    .field-section { margin-bottom: 16px; }
    .field-section:last-of-type { margin-bottom: 0; }

    .field-q {
      font-size: 13px; font-weight: 600;
      color: var(--navy);
      margin-bottom: 5px;
      display: block;
    }
    /*///screen 13*/

      /* ── PERSON CARD ── */
  .person-card {
    background: var(--card-bg);
    border: 1.5px solid var(--border);
    border-radius: 12px;
    padding: 22px 24px;
    margin-bottom: 20px;
    display: flex;
    align-items: flex-start;
    gap: 16px;
    position: relative;
    box-shadow: 0 2px 12px rgba(13,34,64,0.06);
    animation: fadeUp 0.4s ease both;
  }

  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(12px); }
    to   { opacity: 1; transform: translateY(0); }
  }

    .person-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--navy);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }

  .person-icon svg { width: 20px; height: 20px; fill: var(--white); }

  .person-info { flex: 1; }

  .person-name {
    font-size: 17px;
    font-weight: 600;
    color: var(--navy);
    letter-spacing: 0.5px;
    margin-bottom: 4px;
  }

  .person-meta {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 2px;
  }

  .person-role {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 8px;
  }

    .badge-member {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: var(--green-light);
    color: var(--green);
    font-size: 12px;
    font-weight: 500;
    padding: 4px 10px;
    border-radius: 99px;
  }

  .badge-member svg { width: 13px; height: 13px; }

  .btn-edit {
    background: transparent;
    border: none;
    color: var(--blue-accent);
    font-family: 'DM Sans', sans-serif;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    text-decoration: underline;
    text-underline-offset: 2px;
    flex-shrink: 0;
    padding: 0;
    transition: opacity 0.15s;
  }
  .btn-edit:hover { opacity: 0.7; }

  /* ── ADD BUTTONS ── */
  .add-buttons {
    display: flex;
    gap: 12px;
    margin-bottom: 40px;
    flex-wrap: wrap;
  }

  .btn-add {
    border: 1.5px solid var(--navy);
    border-radius: 24px;
    padding: 10px 22px;
    font-family: 'DM Sans', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: var(--navy);
    background: transparent;
    cursor: pointer;
    transition: background 0.18s, color 0.18s, transform 0.12s;
  }
  .btn-add:hover {
    background: var(--navy);
    color: var(--white);
    transform: translateY(-1px);
  }

  /*///screen 14*/

    /* ── QUESTION CARD ── */
  .q-card {
    background: var(--card-bg);
    border: 1.5px solid var(--border);
    border-radius: 12px;
    padding: 24px;
    margin-bottom: 16px;
    box-shadow: 0 2px 12px rgba(13,34,64,0.05);
    animation: fadeUp 0.35s ease both;
  }

  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(10px); }
    to   { opacity: 1; transform: translateY(0); }
  }

  .q-card:nth-child(2) { animation-delay: 0.05s; }
  .q-card:nth-child(3) { animation-delay: 0.10s; }

  .q-label {
    font-size: 14.5px;
    font-weight: 600;
    color: var(--navy);
    line-height: 1.45;
    margin-bottom: 6px;
  }

  .q-hint {
    font-size: 12.5px;
    color: var(--text-muted);
    margin-bottom: 16px;
    line-height: 1.5;
  }


  /* ── TEXT INPUT ── */
  .text-input {
    width: 88px;
    border: 1.5px solid var(--radio-border);
    border-radius: 6px;
    padding: 10px 12px;
    font-family: 'DM Sans', sans-serif;
    font-size: 15px;
    color: var(--navy);
    background: var(--cream);
    outline: none;
    transition: border-color 0.18s, box-shadow 0.18s;
  }
  .text-input:focus {
    border-color: var(--blue-accent);
    box-shadow: 0 0 0 3px rgba(43,95,173,0.12);
  }

  /* ── RADIO GRID ── */
  .radio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-bottom: 16px;
  }

  .radio-option {
    position: relative;
  }

  .radio-option input[type="radio"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
  }

  .radio-option label {
    display: flex;
    align-items: center;
    gap: 8px;
    border: 1.5px solid var(--radio-border);
    border-radius: 8px;
    /*padding: 11px 14px;*/
    font-size: 14px;
    font-weight: 400;
    color: var(--navy);
    cursor: pointer;
    transition: border-color 0.18s, background 0.18s, box-shadow 0.18s;
    user-select: none;
    background: var(--cream);
  }

  .radio-option label::before {
    content: '';
    width: 16px;
    height: 16px;
    border-radius: 50%;
    border: 1.5px solid var(--radio-border);
    flex-shrink: 0;
    transition: border-color 0.18s, background 0.18s;
    background: var(--white);
  }

  .radio-option input[type="radio"]:checked + label {
    border-color: var(--blue-accent);
    background: #eef3fc;
    box-shadow: 0 0 0 3px rgba(43,95,173,0.1);
  }

  .radio-option input[type="radio"]:checked + label::before {
    border-color: var(--blue-accent);
    background: radial-gradient(circle, var(--blue-accent) 45%, transparent 46%);
    border-width: 1.5px;
    background-color: var(--white);
    box-shadow: inset 0 0 0 4px var(--blue-accent);
  }

  .radio-option label:hover {
    border-color: var(--blue-accent);
    background: #f0f4fb;
  }

  /* ── INFO LINK BUTTON ── */
  .btn-info {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    border: 1.5px solid var(--navy);
    border-radius: 24px;
    padding: 8px 16px;
    font-family: 'DM Sans', sans-serif;
    font-size: 13px;
    font-weight: 500;
    color: var(--navy);
    background: transparent;
    cursor: pointer;
    transition: background 0.18s, color 0.18s;
  }
  .btn-info:hover { background: var(--navy); color: var(--white); }


  /*////sreen15*/

  /* ── RADIO GRID ── */
  .radio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-bottom: 16px;
  }

  .radio-option { position: relative; }

  .radio-option input[type="radio"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
  }

  .radio-option label {
    display: flex;
    align-items: center;
    gap: 8px;
    border: 1.5px solid var(--radio-border);
    border-radius: 8px;
    padding: 11px 14px;
    font-size: 14px;
    font-weight: 400;
    color: var(--navy);
    cursor: pointer;
    transition: border-color 0.18s, background 0.18s, box-shadow 0.18s;
    user-select: none;
    background: var(--cream);
  }

  /* Custom radio circle */
  .radio-option label::before {
    content: '';
    width: 16px;
    height: 16px;
    border-radius: 50%;
    border: 1.5px solid var(--radio-border);
    flex-shrink: 0;
    transition: all 0.18s;
    background: var(--white);
  }

  /* Unselected hover */
  .radio-option label:hover {
    border-color: var(--olive);
    background: #f5f6dc;
  }

  /* ── SELECTED STATE: olive/yellow-green ── */
  .radio-option input[type="radio"]:checked + label {
    border-color: var(--olive);
    background: var(--olive-bg);
    color: var(--navy);
    font-weight: 600;
  }

  .radio-option input[type="radio"]:checked + label::before {
    border-color: var(--navy);
    background: var(--navy);
    box-shadow: inset 0 0 0 3px var(--olive-bg);
  }

  /*///screen 16*/

    /* ── OFFER CARD ── */
  .offer-card {
    background: var(--white);
    border: 1.5px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 28px;
    box-shadow: 0 2px 14px rgba(13,34,64,0.06);
    animation: fadeUp 0.4s ease 0.08s both;
  }

  .offer-card-body {
    padding: 20px 22px 22px;
    border-bottom: 1.5px solid var(--border);
  }

  .offer-text {
    font-size: 14px;
    color: var(--navy);
    line-height: 1.55;
  }

  /* ── YES / NO RADIO ROW ── */
  .yn-row16 {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .yn-option16 { position: relative; }

  .yn-option16 input[type="radio"] {
    position: absolute;
    opacity: 0;
    width: 0; height: 0;
  }

  .yn-option16 label {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 16px 22px;
    font-size: 15px;
    font-weight: 500;
    color: var(--navy);
    cursor: pointer;
    transition: background 0.18s;
    user-select: none;
  }

  .yn-option16:first-child label {
    border-right: 1.5px solid var(--border);
  }

  .yn-option16 label:hover { background: #f5f6f8; }

  /* Custom circle */
  .yn-option16 label::before {
    content: '';
    width: 18px;
    height: 18px;
    border-radius: 50%;
    border: 1.5px solid var(--radio-border);
    flex-shrink: 0;
    transition: all 0.18s;
    background: var(--white);
  }

  .yn-option16 input[type="radio"]:checked + label {
    background: #eef3fc;
  }

  .yn-option16 input[type="radio"]:checked + label::before {
    border-color: var(--blue-accent);
    box-shadow: inset 0 0 0 4px var(--blue-accent);
    background: var(--white);
  }


  /*////screen17*/

  /* ── YES/NO CARD ── */
  .yn-card17 {
    background: var(--white);
    border: 1.5px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 24px;
    box-shadow: 0 2px 12px rgba(13,34,64,0.05);
    animation: fadeUp 0.4s ease 0.05s both;
  }
  .yn-card-body17 {
    padding: 16px 20px;
    border-bottom: 1.5px solid var(--border);
    font-size: 13.5px;
    color: var(--navy);
    line-height: 1.5;
  }
  .yn-row17 { display: grid; grid-template-columns: 1fr 1fr; }
  .yn-option17 { position: relative; }
  .yn-option17 input[type="radio"] { position: absolute; opacity: 0; width: 0; height: 0; }
  .yn-option17 label {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 13px 20px;
    font-size: 14px;
    font-weight: 500;
    color: var(--navy);
    cursor: pointer;
    transition: background 0.18s;
    user-select: none;
  }
  .yn-option17:first-child label { border-right: 1.5px solid var(--border); }
  .yn-option17 label::before {
    content: '';
    width: 16px; height: 16px;
    border-radius: 50%;
    border: 1.5px solid var(--radio-border);
    flex-shrink: 0;
    background: var(--white);
    transition: all 0.18s;
  }
  .yn-option17 input[type="radio"]:checked + label {
    background: var(--olive-bg);
    font-weight: 600;
  }
  .yn-option17 input[type="radio"]:checked + label::before {
    border-color: var(--navy);
    box-shadow: inset 0 0 0 4px var(--olive-bg);
    background: var(--navy);
  }
  .yn-option17 label:hover { background: #f5f6dc; }

    /* ── SECTION HEADING ── */
  .section-heading {
    font-size: 15px;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 14px;
    animation: fadeUp 0.4s ease 0.08s both;
  }

  /* ── COVER OPTION CARDS ── */
  .cover-options {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 20px;
    animation: fadeUp 0.4s ease 0.1s both;
  }

  .cover-card {
    background: var(--white);
    border: 1.5px solid var(--border);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 1px 8px rgba(13,34,64,0.05);
    transition: border-color 0.18s, box-shadow 0.18s;
  }

  .cover-card.selected {
    border-color: var(--olive);
    box-shadow: 0 2px 12px rgba(139,143,42,0.15);
  }

  .cover-card-inner {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 16px 18px;
    cursor: pointer;
  }

  /* radio */
  .cover-radio {
    position: relative;
    flex-shrink: 0;
    margin-top: 2px;
  }
  .cover-radio input[type="radio"] {
    position: absolute;
    opacity: 0; width: 0; height: 0;
  }
  .cover-radio .dot {
    width: 18px; height: 18px;
    border-radius: 50%;
    border: 1.5px solid var(--radio-border);
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.18s;
  }
  .cover-radio input[type="radio"]:checked ~ .dot {
    border-color: var(--navy);
    box-shadow: inset 0 0 0 4px var(--navy);
  }

  .cover-content { flex: 1; }

  .cover-title {
    font-size: 14px;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 3px;
  }

  .cover-price {
    font-size: 12.5px;
    color: var(--text-muted);
    margin-bottom: 5px;
  }

  .cover-desc {
    font-size: 12.5px;
    color: var(--text-muted);
    line-height: 1.55;
  }

  /* Selected card highlight */
  .cover-card.selected .cover-card-inner {
    background: var(--olive-bg);
  }
  .cover-card.selected .cover-title,
  .cover-card.selected .cover-price,
  .cover-card.selected .cover-desc {
    color: var(--navy);
  }
  .cover-card.selected .cover-radio input[type="radio"]:checked ~ .dot {
    border-color: var(--navy);
    box-shadow: inset 0 0 0 4px var(--navy);
    background: var(--olive-bg);
  }

  /* ── COMPARE LINK ── */
  .btn-compare {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    border: 1.5px solid var(--navy);
    border-radius: 24px;
    padding: 8px 16px;
    font-family: 'DM Sans', sans-serif;
    font-size: 13px;
    font-weight: 500;
    color: var(--navy);
    background: transparent;
    cursor: pointer;
    margin-bottom: 28px;
    transition: background 0.18s, color 0.18s;
    animation: fadeUp 0.4s ease 0.12s both;
  }
  .btn-compare:hover { background: var(--navy); color: var(--white); }

  /* ── INFO BOX ── */
  .info-box {
    background: var(--white);
    border: 1.5px solid var(--border);
    border-radius: 10px;
    padding: 20px 22px;
    margin-bottom: 28px;
    box-shadow: 0 1px 8px rgba(13,34,64,0.04);
    animation: fadeUp 0.4s ease 0.14s both;
  }

  .info-box h3 {
    font-size: 15px;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 10px;
  }

  .info-box p {
    font-size: 12.5px;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 8px;
  }
  .info-box p:last-child { margin-bottom: 0; }

  .info-box a {
    color: var(--blue-accent);
    text-decoration: underline;
  }

  /*///screen 18*/

    /* ── EMAIL CARD ── */
  .email-card {
    background: var(--white);
    border: 1.5px solid var(--border);
    border-radius: 12px;
    padding: 24px;
    margin-bottom: 28px;
    box-shadow: 0 2px 14px rgba(13,34,64,0.06);
    animation: fadeUp 0.4s ease 0.08s both;
  }

  .field-label {
    font-size: 14px;
    font-weight: 500;
    color: var(--navy);
    margin-bottom: 10px;
    display: block;
  }

  .email-input {
    width: 100%;
    border: 1.5px solid var(--navy);
    border-radius: 8px;
    padding: 13px 16px;
    font-family: 'DM Sans', sans-serif;
    font-size: 15px;
    color: var(--navy);
    background: var(--white);
    outline: none;
    transition: border-color 0.18s, box-shadow 0.18s;
    margin-bottom: 16px;
  }
  .email-input:focus {
    border-color: var(--blue-accent);
    box-shadow: 0 0 0 3px rgba(43,95,173,0.12);
  }
  .email-input::placeholder { color: #b0aaa2; }

  .consent-text {
    font-size: 12.5px;
    color: var(--text-muted);
    line-height: 1.6;
  }


  /*/////screen19*/


    /* ── SPECIAL OFFER BANNER ── */
  .offer-banner {
    max-width: 960px;
    margin: 16px auto 0;
    padding: 0 32px;
    width: 100%;
  }
  .offer-banner-inner {
    background: var(--green-bg);
    border: 1.5px solid #b0ddc9;
    border-radius: 8px;
    padding: 11px 16px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    color: var(--green);
    font-weight: 500;
  }
  .offer-banner-inner svg { width: 18px; height: 18px; flex-shrink: 0; }

  /* ── TWO-COLUMN LAYOUT ── */
  .page-layout {
    max-width: 960px;
    margin: 0 auto;
    width: 100%;
    padding: 24px 32px 48px;
    display: grid;
    grid-template-columns: 1fr 280px;
    gap: 24px;
    align-items: start;
  }

  /* ── LEFT COLUMN ── */
  .left-col {}

  h1 {
    font-family: 'Playfair Display', serif;
    font-size: 30px;
    font-weight: 500;
    color: var(--navy);
    line-height: 1.2;
    margin-bottom: 8px;
    animation: fadeUp 0.4s ease both;
  }
  .page-intro {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 24px;
    max-width: 520px;
    animation: fadeUp 0.4s ease 0.04s both;
  }

  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(8px); }
    to   { opacity: 1; transform: translateY(0); }
  }

  /* ── QUESTION SECTION ── */
  .q-section {
    margin-bottom: 20px;
    animation: fadeUp 0.4s ease both;
  }
  .q-section:nth-child(3) { animation-delay: 0.06s; }
  .q-section:nth-child(4) { animation-delay: 0.09s; }
  .q-section:nth-child(5) { animation-delay: 0.12s; }
  .q-section:nth-child(6) { animation-delay: 0.15s; }

  .q-card {
    background: var(--card-bg);
    border: 1.5px solid var(--border);
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 1px 8px rgba(13,34,64,0.05);
  }

  .q-title {
    font-size: 14px;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 5px;
    line-height: 1.4;
  }

  .q-hint {
    font-size: 12px;
    color: var(--text-muted);
    line-height: 1.5;
    margin-bottom: 14px;
  }

  /* ── RADIO OPTION ── */
  .radio-option { position: relative; margin-bottom: 8px; }
  .radio-option:last-of-type { margin-bottom: 0; }
  .radio-option input[type="radio"] { position: absolute; opacity: 0; width: 0; height: 0; }

  .radio-option label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    border: 1.5px solid var(--border);
    border-radius: 8px;
    padding: 12px 14px;
    font-size: 13.5px;
    color: var(--navy);
    cursor: pointer;
    transition: border-color 0.18s, background 0.18s;
    background: var(--cream);
    line-height: 1.4;
  }

  .radio-option label::before {
    content: '';
    width: 16px; height: 16px;
    border-radius: 50%;
    border: 1.5px solid var(--radio-border);
    flex-shrink: 0;
    margin-top: 1px;
    background: var(--white);
    transition: all 0.18s;
  }

  .radio-option label:hover { border-color: var(--olive); background: #f5f6dc; }

  .radio-option input[type="radio"]:checked + label {
    border-color: var(--olive);
    background: var(--olive-bg);
    font-weight: 500;
  }
  .radio-option input[type="radio"]:checked + label::before {
    border-color: var(--navy);
    box-shadow: inset 0 0 0 4px var(--olive-bg);
    background: var(--navy);
  }

  .option-desc {
    font-size: 11.5px;
    color: var(--text-muted);
    margin-top: 2px;
    display: block;
    font-weight: 400;
    line-height: 1.45;
  }
  .radio-option input[type="radio"]:checked + label .option-desc { color: var(--olive-dark); }

  /* ── EXCESS RADIO GRID ── */
  .excess-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    margin-bottom: 8px;
  }
  .excess-option { position: relative; }
  .excess-option input[type="radio"] { position: absolute; opacity: 0; width: 0; height: 0; }
  .excess-option label {
    display: flex;
    align-items: center;
    gap: 7px;
    border: 1.5px solid var(--border);
    border-radius: 8px;
    padding: 10px 12px;
    font-size: 13px;
    color: var(--navy);
    cursor: pointer;
    background: var(--cream);
    transition: border-color 0.18s, background 0.18s;
    user-select: none;
    white-space: nowrap;
  }
  .excess-option label::before {
    content: '';
    width: 14px; height: 14px;
    border-radius: 50%;
    border: 1.5px solid var(--radio-border);
    flex-shrink: 0;
    background: var(--white);
    transition: all 0.18s;
  }
  .excess-option label:hover { border-color: var(--olive); background: #f5f6dc; }
  .excess-option input[type="radio"]:checked + label {
    border-color: var(--olive);
    background: var(--olive-bg);
    font-weight: 600;
  }
  .excess-option input[type="radio"]:checked + label::before {
    border-color: var(--navy);
    box-shadow: inset 0 0 0 3px var(--olive-bg);
    background: var(--navy);
  }

  /* ── PILL BUTTON ── */
  .btn-pill {
    display: inline-flex;
    align-items: center;
    border: 1.5px solid var(--navy);
    border-radius: 24px;
    padding: 7px 14px;
    font-family: 'DM Sans', sans-serif;
    font-size: 12px;
    font-weight: 500;
    color: var(--navy);
    background: transparent;
    cursor: pointer;
    margin-top: 12px;
    transition: background 0.18s, color 0.18s;
    text-decoration: none;
  }
  .btn-pill:hover { background: var(--navy); color: var(--white); }

  .link-small {
    font-size: 12px;
    color: var(--blue-accent);
    text-decoration: underline;
    cursor: pointer;
    margin-top: 8px;
    display: inline-block;
  }

  /* ── SMALL NOTE ── */
  .note-small {
    font-size: 11.5px;
    color: var(--text-muted);
    margin-top: 8px;
    line-height: 1.5;
  }

  /* ── SAVE QUOTE SECTION ── */
  .save-section {
    background: var(--card-bg);
    border: 1.5px solid var(--border);
    border-radius: 10px;
    padding: 18px 20px;
    margin-bottom: 20px;
    box-shadow: 0 1px 8px rgba(13,34,64,0.05);
  }
  .save-section h3 { font-size: 14px; font-weight: 600; color: var(--navy); margin-bottom: 4px; }
  .save-section p { font-size: 12px; color: var(--text-muted); line-height: 1.5; margin-bottom: 14px; }
  .save-row { display: flex; gap: 8px; align-items: stretch; }
  .save-input {
    flex: 1;
    border: 1.5px solid var(--border);
    border-radius: 7px;
    padding: 10px 12px;
    font-family: 'DM Sans', sans-serif;
    font-size: 13.5px;
    color: var(--navy);
    background: var(--cream);
    outline: none;
    transition: border-color 0.18s, box-shadow 0.18s;
  }
  .save-input:focus { border-color: var(--blue-accent); box-shadow: 0 0 0 3px rgba(43,95,173,0.1); }
  .btn-email-quote {
    border: none;
    border-radius: 7px;
    padding: 10px 16px;
    font-family: 'DM Sans', sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: var(--white);
    background: var(--navy);
    cursor: pointer;
    white-space: nowrap;
    transition: background 0.18s;
  }
  .btn-email-quote:hover { background: var(--navy-mid); }

  /* ── NAV BUTTONS ── */
  .nav-buttons { display: flex; gap: 10px; align-items: center; margin-top: 8px; }
  .btn-back {
    border: 1.5px solid var(--navy);
    border-radius: 24px;
    padding: 11px 24px;
    font-family: 'DM Sans', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: var(--navy);
    background: transparent;
    cursor: pointer;
    transition: background 0.18s;
  }
  .btn-back:hover { background: rgba(13,34,64,0.08); }
  .btn-next {
    border: none;
    border-radius: 24px;
    padding: 11px 28px;
    font-family: 'DM Sans', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: var(--white);
    background: var(--navy);
    cursor: pointer;
    box-shadow: 0 4px 14px rgba(13,34,64,0.2);
    transition: background 0.18s, transform 0.12s;
  }
  .btn-next:hover { background: var(--navy-mid); transform: translateY(-1px); }

  /* ── RIGHT SIDEBAR ── */
  .right-col {
    position: sticky;
    top: 64px;
  }

  .sidebar-card {
    background: var(--sidebar-bg);
    border-radius: 12px;
    overflow: hidden;
    color: var(--white);
    box-shadow: 0 4px 24px rgba(13,34,64,0.2);
  }

  .sidebar-header {
    padding: 16px 18px 14px;
    border-bottom: 1px solid rgba(255,255,255,0.12);
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 10px;
  }

  .sidebar-product {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    opacity: 0.7;
    margin-bottom: 4px;
  }

  .sidebar-title {
    font-family: 'Playfair Display', serif;
    font-size: 17px;
    font-weight: 500;
    line-height: 1.25;
  }

  .sidebar-car-icon {
    width: 44px;
    height: 44px;
    background: rgba(255,255,255,0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }
  .sidebar-car-icon svg { width: 26px; height: 26px; fill: rgba(255,255,255,0.8); }

  .sidebar-price-block { padding: 14px 18px; border-bottom: 1px solid rgba(255,255,255,0.12); }

  .sidebar-price {
    display: flex;
    align-items: baseline;
    gap: 3px;
    margin-bottom: 2px;
  }
  .price-dollar { font-size: 13px; font-weight: 600; opacity: 0.8; margin-top: 6px; }
  .price-amount { font-family: 'Playfair Display', serif; font-size: 36px; font-weight: 500; line-height: 1; }
  .price-period { font-size: 12px; opacity: 0.65; margin-left: 2px; }
  .price-annual { font-size: 12px; opacity: 0.6; margin-bottom: 6px; }

  .quote-ref { font-size: 11px; opacity: 0.55; margin-bottom: 4px; }
  .sidebar-link { font-size: 11.5px; color: rgba(255,255,255,0.7); text-decoration: underline; cursor: pointer; }
  .sidebar-link:hover { color: var(--white); }

  /* ── SIDEBAR SECTIONS ── */
  .sidebar-section { padding: 14px 18px; border-bottom: 1px solid rgba(255,255,255,0.1); }
  .sidebar-section:last-child { border-bottom: none; }

  .sidebar-section-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
  }
  .sidebar-section-icon {
    width: 24px; height: 24px;
    border-radius: 6px;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
  }
  .icon-discount { background: rgba(43,95,173,0.3); }
  .icon-special  { background: rgba(214,217,110,0.25); }
  .icon-added    { background: rgba(46,158,107,0.25); }

  .sidebar-section-icon svg { width: 14px; height: 14px; }

  .sidebar-section-title {
    font-size: 12.5px;
    font-weight: 600;
    letter-spacing: 0.2px;
  }

  .discount-item {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 12px;
    opacity: 0.85;
    margin-bottom: 5px;
    line-height: 1.4;
  }
  .discount-dot {
    width: 6px; height: 6px;
    border-radius: 50%;
    background: var(--olive-bg);
    flex-shrink: 0;
  }

  .special-offer-box {
    background: rgba(214,217,110,0.15);
    border: 1px solid rgba(214,217,110,0.3);
    border-radius: 7px;
    padding: 10px 12px;
    font-size: 11.5px;
    line-height: 1.5;
    opacity: 0.9;
  }
  .special-offer-box strong { color: var(--olive-bg); }

  .also-added-box {
    background: rgba(46,158,107,0.15);
    border: 1px solid rgba(46,158,107,0.3);
    border-radius: 7px;
    padding: 10px 12px;
  }
  .also-added-name { font-size: 12px; font-weight: 600; margin-bottom: 3px; }
  .also-added-price { font-size: 13px; font-weight: 700; color: var(--olive-bg); }
  .also-added-period { font-size: 11px; opacity: 0.65; }

  /* ── CHAT STRIP ── */
  .chat-strip {
    background: var(--white);
    border-top: 1px solid var(--border);
    padding: 14px 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
  }
  .chat-strip-left h3 { font-size: 14px; font-weight: 600; color: var(--navy); margin-bottom: 2px; }
  .chat-strip-left p { font-size: 12.5px; color: var(--text-muted); }
  .chat-strip-left a { color: var(--blue-accent); text-decoration: underline; font-weight: 500; }
  .btn-chat {
    display: flex; align-items: center; gap: 8px;
    border: 1.5px solid var(--navy); border-radius: 24px; padding: 9px 18px;
    font-family: 'DM Sans', sans-serif; font-size: 13px; font-weight: 500;
    color: var(--navy); background: transparent; cursor: pointer; white-space: nowrap;
    transition: background 0.18s, color 0.18s;
  }
  .btn-chat:hover { background: var(--navy); color: var(--white); }
  .btn-chat svg { width: 15px; height: 15px; }

  /* ── FOOTER ── */
  footer {
    background: var(--navy);
    color: rgba(255,255,255,0.65);
    font-size: 11px;
    line-height: 1.6;
    padding: 24px 32px;
  }
  footer p + p { margin-top: 10px; }
  footer a { color: rgba(255,255,255,0.8); text-decoration: underline; }
  footer a:hover { color: var(--white); }
  .footer-links { margin-top: 16px; padding-top: 12px; border-top: 1px solid rgba(255,255,255,0.15); display: flex; gap: 4px; font-size: 11px; align-items: center; }
  .footer-links a { color: rgba(255,255,255,0.7); }
  .footer-divider { color: rgba(255,255,255,0.3); margin: 0 5px; }
  .footer-copy { margin-top: 5px; font-size: 10.5px; color: rgba(255,255,255,0.4); }

  @media (max-width: 720px) {
    .page-layout { grid-template-columns: 1fr; }
    .right-col { position: static; }
    .excess-grid { grid-template-columns: repeat(2, 1fr); }
  }