    :root {
      --cream: #f6f3ee;
      --white: #ffffff;
      --ink: #00313C;
      --slate: #484844;
      --muted: #96968f;
      --border: #e0dbd2;
      --border-focus: #181816;
      --tenant: #2c5f4a;
      --tenant-light: #e6f2ec;
      --condo: #1e3a5f;
      --condo-light: #e4ecf5;
      --danger: #b84040;
      --danger-light: #fdf0f0;
      --section-gap: 32px;
      --light_color: #00A499;
      min-height: 100vh;  
    }

    * { box-sizing: border-box; margin: 0; padding: 0; }

    body {
      font-family: 'Source Sans 3', sans-serif;
      background: var(--cream);
      min-height: 100vh;
      color: var(--ink);
    }

    /* ─── Selection Screen ─────────────────────────────────────── */
    .selection-screen {
      min-height: 100vh;
      display: flex;
      flex-direction: column;
      align-items: center;
      /* justify-content: center; */
      animation: fadeUp 0.5s ease both;
      background: #F4F7F9;
    }

    @keyframes fadeUp {
      from { opacity: 0; transform: translateY(14px); }
      to   { opacity: 1; transform: translateY(0); }
    }

    .eyebrow {
      font-size: 10px;
      font-weight: 600;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--muted);
      margin-bottom: 18px;
    }

    .sel-heading {
      font-family: 'Source Sans 3', sans-serif;
      font-size: clamp(34px, 5vw, 54px);
      color: var(--ink);
      text-align: center;
      line-height: 1.12;
      margin-bottom: 12px;
    }

    .sel-sub {
      font-size: 15px;
      color: var(--slate);
      text-align: center;
      margin-bottom: 56px;
      font-weight: 300;
    }

    .choice-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 20px;
      width: 100%;
      max-width: 580px;
    }


    @media (max-width: 500px) {
      .choice-grid {
        grid-template-columns: 1fr; /* Change to one column on smaller screens */
      }
    }

    .choice-card {
      position: relative;
      background: var(--white);
      border: 1.5px solid var(--border);
      border-radius: 18px;
      padding: 38px 30px 34px;
      cursor: pointer;
      transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
      overflow: hidden;
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.13);
    }
    .choice-card::after {
      content: '';
      position: absolute;
      top: 0; left: 0; right: 0;
      height: 3px;
      border-radius: 18px 18px 0 0;
      opacity: 0;
      transition: opacity 0.2s;
    }
    .choice-card.tenant::after { background: var(--tenant); }
    .choice-card.condo::after  { background: var(--condo); }
    .choice-card:hover { transform: translateY(-5px); box-shadow: 0 16px 48px rgba(0,0,0,0.09); }
    .choice-card.tenant:hover { border-color: var(--tenant); }
    .choice-card.condo:hover  { border-color: var(--condo); }
    .choice-card:hover::after { opacity: 1; }

    .choice-icon  { font-size: 18px; margin-bottom: 18px; display: block; }
    .choice-label { font-family: 'Source Sans 3', sans-serif; font-size: 26px; color: var(--ink); margin-bottom: 8px; text-align: center; }
    .choice-desc  { font-size: 13px; color: var(--muted); line-height: 1.55; font-weight: 300; }
    .choice-cta   {
      display: inline-flex; align-items: center; gap: 6px;
      margin-top: 22px; font-size: 11px; font-weight: 600;
      letter-spacing: 0.1em; text-transform: uppercase;
      transition: gap 0.2s;
    }
    .choice-card.tenant .choice-cta { color: var(--tenant); }
    .choice-card.condo  .choice-cta { color: var(--condo); }
    .choice-card:hover .choice-cta  { gap: 10px; }

    /* ─── Form Screen ─────────────────────────────────────────── */
    .form-screen {
      animation: fadeUp 0.42s cubic-bezier(0.22,1,0.36,1) both;
      background: #F4F7F9;
    }

    .form-topbar {
      background: #f6f3ee;
      border-bottom: 1px solid #e0dbd2;
      padding: 14px 28px;
      display: flex;
      align-items: center;
      justify-content: center;  /* Center the content */
      position: sticky;
      top: 0;
      z-index: 100;
      width: 100%;  /* Ensure full width */
      height: 150px;
    }
    
    .form-topbar .left {
      position: absolute;
      left: 28px;  /* Adjust the left position as per your needs */
    }
    
    .form-topbar .center {
      position: absolute;
      left: 50%;
      transform: translateX(-50%);
    }



    .back-btn {
      background: var(--white);
      border: 1.5px solid var(--border);
      border-radius: 8px;
      padding: 7px 14px;
      font-size: 12px;
      font-family: 'Source Sans 3', sans-serif;
      font-weight: 500;
      color: var(--slate);
      cursor: pointer;
      display: flex; align-items: center; gap: 6px;
      transition: border-color 0.15s, color 0.15s;
      white-space: nowrap;
    }
    .back-btn:hover { border-color: var(--ink); color: var(--ink); }

    .type-badge {
      font-size: 10px; font-weight: 700;
      letter-spacing: 0.14em; text-transform: uppercase;
      padding: 5px 12px; border-radius: 99px;
    }
    .badge-tenant { background: var(--tenant-light); color: var(--tenant); }
    .badge-condo  { background: var(--condo-light);  color: var(--condo); }

    .topbar-title {
      font-family: 'Source Sans 3', sans-serif;
      font-size: 17px;
      color: var(--ink);
      margin-left: auto;
      margin-right: auto;
      padding-right: 80px;
    }

    /* ─── Form Layout ─────────────────────────────────────────── */
    .form-body {
      max-width: 680px;
      margin: 0 auto;
      padding: 40px 24px 80px;
      display: flex;
      flex-direction: column;
      gap: var(--section-gap);
    }

    .form-intro { margin-bottom: 8px; text-align: center; }
    .form-intro h1 {
      font-family: 'Source Sans 3', sans-serif;
      font-size: 30px;
      color: var(--ink);
      margin-bottom: 6px;
    }
    .form-intro p { font-size: 14px; color: var(--muted); font-weight: 300; }

    /* ─── Sections ──────────────────────────────────────────────── */
    .form-section {
      background: var(--white);
      border: 1.5px solid var(--border);
      border-radius: 14px;
      overflow: hidden;
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.13);
    }

    .section-header {
      padding: 18px 24px;
      border-bottom: 1px solid var(--border);
      display: flex;
      align-items: center;
      gap: 10px;
      background: #fafaf8;
    }
    .section-icon  { font-size: 16px; }
    .section-title { font-size: 18px; font-weight: 600; color: var(--ink); letter-spacing: 0.03em; }
    .section-num   { font-size: 10px; font-weight: 700; color: var(--muted); letter-spacing: 0.14em; text-transform: uppercase; margin-left: auto; }

    .section-body { padding: 24px; display: flex; flex-direction: column; gap: 18px; }

    /* ─── Fields ──────────────────────────────────────────────── */
    .row { display: flex; gap: 14px; }
    .row > * { flex: 1; }

    .field { display: flex; flex-direction: column; gap: 6px; }

    .field-label {
      font-size: 14px;
      font-weight: 600;
      color: var(--muted);
      letter-spacing: 0.08em;
      text-transform: uppercase;
    }
    .field-label .req { color: var(--danger); margin-left: 2px; }

    input[type="text"],
    input[type="email"],
    input[type="date"],
    input[type="number"],
    select,
    .address-input {
      width: 100%;
      padding: 11px 14px;
      font-size: 14px;
      font-family: 'Source Sans 3', sans-serif;
      color: var(--ink);
      background: var(--cream);
      border: 1.5px solid var(--border);
      border-radius: 9px;
      outline: none;
      transition: border-color 0.15s, background 0.15s, box-shadow 0.15s;
      appearance: none;
      -webkit-appearance: none;
    }


    input:focus, select:focus, .address-input:focus {
      border-color: var(--border-focus);
      background: var(--white);
      box-shadow: 0 0 0 3px rgba(24,24,22,0.06);
    }
    input::placeholder { color: var(--muted); }

    select {
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%2396968f' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
      background-repeat: no-repeat;
      background-position: right 14px center;
      padding-right: 36px;
      cursor: pointer;
    }

    /* ─── Toggle (Y/N) ────────────────────────────────────────── */
    .toggle-group { display: flex; gap: 8px; }




    .toggle-btn {
  flex: 1;
  position: relative;  /* add this */
  padding: 10px;
  border: 1px solid #00313c94;
  border-radius: 9px;
  background: #F1F5F9;
  font-size: 13px;
  font-family: 'Source Sans 3', sans-serif;
  font-weight: 500;
  color: var(--slate);
  cursor: pointer;
  text-align: center;
  transition: all 0.15s;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.13);
}



.toggle-btn.active-yes{ background: #00A499; color: white; border: none}
.toggle-btn.active-no  { background: #00A499; color: white; border: none}

    /* ─── Structure Type ─────────────────────────────────────── */
    .struct-group { display: flex; gap: 10px; flex-wrap: wrap; }
    .struct-btn {
      flex: 1;
      position: relative;
      min-width: 100px;
      padding: 12px 10px;
      border: 1px solid #00313c94;
      border-radius: 9px;
      background: #F1F5F9;
      font-family: 'Source Sans 3', sans-serif;
      font-size: 13px;
      font-weight: 500;
      color: var(--slate);
      cursor: pointer;
      text-align: center;
      transition: all 0.15s;
      display: flex; flex-direction: column; align-items: center; gap: 6px;
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.13);
    }
    .struct-btn .sicon { font-size: 20px; width: 50px; height: 50px }
    .struct-btn:hover  { border-color: var(--ink); color: var(--ink); background: var(--white); }

    .struct-btn.active {background: #00A499; color: white; border: none }


    /* ─── Currency / Amount ───────────────────────────────────── */
    .input-prefix-wrap { position: relative; }
    .input-prefix {
      position: absolute; left: 13px; top: 50%; transform: translateY(-50%);
      font-size: 14px; color: var(--muted); font-weight: 500; pointer-events: none;
    }


    /* ─── Deductible options ─────────────────────────────────── */
    .deductible-group { display: flex; gap: 10px; }
    .deduct-btn {
      flex: 1; padding: 11px;
      border: 1px solid #00313c94;
      border-radius: 9px;
      background: #F1F5F9;
      font-family: 'Source Sans 3', sans-serif; font-size: 13px; font-weight: 500;
      color: var(--slate); cursor: pointer; text-align: center; transition: all 0.15s;
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.13);
    }
    .deduct-btn:hover  { border-color: var(--ink); color: var(--ink); }
    .deduct-btn.active { background: #00A499; border: none; color: white; font-weight: 600; }

    /* ─── Conditional sub-fields ──────────────────────────────── */
    .conditional {
      background: #fafaf8; border: 1px solid var(--border); border-radius: 10px;
      padding: 18px; display: flex; flex-direction: column; gap: 14px;
      animation: fadeUp 0.25s ease both;
    }
    .conditional-label {
      font-size: 11px; font-weight: 700; color: var(--muted);
      letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 2px;
    }

    /* ─── Claims ─────────────────────────────────────────────── */
    .claims-list { display: flex; flex-direction: column; gap: 12px; }
    .claim-item {
      background: var(--cream); border: 1px solid var(--border);
      border-radius: 10px; padding: 16px; position: relative;
    }
    .claim-item .remove-btn {
      position: absolute; top: 12px; right: 12px;
      background: none; border: none; font-size: 16px; color: var(--muted);
      cursor: pointer; line-height: 1; padding: 2px 5px; border-radius: 4px;
      transition: background 0.15s, color 0.15s;
    }
    .claim-item .remove-btn:hover { background: var(--danger-light); color: var(--danger); }

    .add-btn {
      display: flex; align-items: center; gap: 8px;
      background: none; border: 1.5px dashed var(--border); border-radius: 9px;
      padding: 11px 16px; font-family: 'Source Sans 3', sans-serif; font-size: 13px;
      font-weight: 500; color: var(--muted); cursor: pointer; width: 100%;
      transition: border-color 0.15s, color 0.15s;
    }
    .add-btn:hover { border-color: var(--ink); color: var(--ink); }

    /* ─── Map ────────────────────────────────────────────────── */
    .map-container {
      height: 200px; border-radius: 9px; overflow: hidden;
      border: 1.5px solid var(--border); background: #e8e8e4;
      display: flex; align-items: center; justify-content: center; position: relative;
    }
    .map-placeholder { text-align: center; color: var(--muted); font-size: 13px; }
    .map-placeholder .map-icon { font-size: 28px; margin-bottom: 8px; }
    #google-map { width: 100%; height: 100%; }

    /* ─── Submit ─────────────────────────────────────────────── */
    .submit-btn {
      width: 100%; padding: 16px; background: var(--ink); color: white;
      border: none; border-radius: 10px; font-family: 'Source Sans 3', sans-serif;
      font-size: 15px; font-weight: 600; cursor: pointer; letter-spacing: 0.04em;
      transition: background 0.15s, transform 0.1s;
    }
    .submit-btn:hover { background: #2e2e2a; transform: translateY(-1px); }

    /* ─── Helper text ──────────────────────────────────────────── */
    .helper { font-size: 14px; color: var(--muted); margin-top: -4px; font-style: italic; }

    /* ─── Autocomplete dropdown ──────────────────────────────── */
    .pac-container {
      font-family: 'Source Sans 3', sans-serif !important;
      border-radius: 10px !important; border: 1.5px solid var(--border) !important;
      box-shadow: 0 8px 32px rgba(0,0,0,0.1) !important; margin-top: 4px !important;
    }
    .pac-item { font-size: 13px !important; padding: 8px 14px !important; }





.loading-spinner{
  width:30px;
  height:30px;
  border:2px solid indigo;
  border-radius:50%;
  border-top-color:#0001;
  display:inline-block;
  animation:loadingspinner .7s linear infinite;
}
@keyframes loadingspinner{
  0%{
    transform:rotate(0deg)
  }
  100%{
    transform:rotate(360deg)
  }
}










/* QuoteScreen.css */

.qs-page {
  min-height: 100vh;
  background: #f7f3ee;
  font-family: 'Source Sans 3';
  color: #2c2a26;
  padding-bottom: 80px;
  background: #F4F7F9;
}


.qs-body {
  max-width: 780px;
  margin: 0 auto;
  padding: 32px 20px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.qs-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.07);
  overflow: hidden;
}

.qs-card-header {
  padding: 18px 24px;
  border-bottom: 1px solid #f0ece6;
  display: flex;
  align-items: center;
  gap: 10px;
}

.qs-card-title {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #7a6e62;
  font-family: sans-serif;
  margin: 0;
}

.qs-hero-header {
  background: linear-gradient(135deg, #2c2a26 0%, #4a3f35 100%);
  padding: 28px 32px;
  color: #fff;
}

.qs-hero-eyebrow {
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.65;
  margin: 0 0 6px;
  font-family: sans-serif;
  font-weight: 400;
}

.qs-hero-address {
  font-size: 17px;
  margin: 0 0 16px;
  font-weight: 400;
  opacity: 0.92;
  line-height: 1.4;
}

.qs-hero-dates {
  display: flex;
  gap: 24px;
  font-size: 12px;
  opacity: 0.6;
  font-family: sans-serif;
}

.qs-premium-area {
  padding: 28px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

.qs-premium-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #96928a;
  font-family: sans-serif;
  margin-bottom: 6px;
}

.qs-premium-amount {
  font-size: 52px;
  font-weight: 400;
  color: #2c2a26;
  line-height: 1;
  letter-spacing: -0.02em;
}

.qs-peryear-text {
  font-size: 32px;
  font-weight: 400;
  color: #2c2a26;
  line-height: 1;
  letter-spacing: -0.02em;
}

.qs-premium-symbol {
  font-size: 22px;
  vertical-align: top;
  line-height: 1.7;
  color: #7a6e62;
}

.qs-premium-cents {
  font-size: 26px;
  color: #7a6e62;
}

.qs-premium-period {
  font-size: 13px;
  color: #96928a;
  margin-top: 6px;
  font-family: sans-serif;
}

.qs-meta-row {
  border-top: 1px solid #f0ece6;
  padding: 14px 32px;
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.qs-meta-item {
  font-size: 12px;
  color: #96928a;
  font-family: sans-serif;
}

.qs-meta-value {
  color: #2c2a26;
  font-weight: 600;
}

.qs-table {
  width: 100%;
  border-collapse: collapse;
}

.qs-table th {
  padding: 10px 24px;
  text-align: left;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #b0a898;
  font-family: sans-serif;
  background: #faf8f5;
  border-bottom: 1px solid #f0ece6;
}

.qs-table th.right {
  text-align: right;
}

.qs-table td {
  padding: 14px 24px;
  font-size: 14px;
  border-bottom: 1px solid #f7f4f0;
  background: #fff;
}

.qs-table tr:nth-child(even) td {
  background: #faf8f5;
}

.qs-table td.mono {
  font-family: monospace;
  text-align: right;
  color: #4a4540;
}

.qs-table td.mono.empty {
  color: #c0b8b0;
}


.disclosure-body {
  max-width: 1625px;
  margin: 0 auto;
  padding: 32px 20px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.disclosure-content ol {
  padding-left: 24px;
  margin: 12px 0;
  list-style: decimal;
}

.disclosure-content li {
  margin-bottom: 10px;
  line-height: 1.6;
}

.disclosure-content p {
  margin-bottom: 10px;
  line-height: 1.6;
}

.disclosure-content h1,
.disclosure-content h2 {
  margin-bottom: 12px;
}

.disclosure-table {
  border-spacing: 1px 20px;
}

.disclosure-table tr {
  background: #fffbea;
}

.disclosure-table tr:hover {
  background: #fff7d6;
}

.disclosure-table td {
  padding: 12px 16px;
  font-size: 14px;
  line-height: 1.6;
  vertical-align: top;
  border: 1px solid #f5e9a0;
  border-left: none;
  border-right: none;
}

.disclosure-table td:first-child {
  border-left: 1px solid #f5e9a0;
  border-radius: 8px 0 0 8px;
}

.disclosure-table td:last-child {
  border-right: 1px solid #f5e9a0;
  border-radius: 0 8px 8px 0;
}


.payment-grid {
  display: flex;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  width: 100%;
  max-width: fit-content;
  margin-top: 10px;
}


.payment-card {
  position: relative;
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 18px;
  padding: 6px 6px 6px;
  cursor: pointer;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
  overflow: hidden;
}
.payment-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  border-radius: 18px 18px 0 0;
  opacity: 0;
  transition: opacity 0.2s;
}

.payment-card:hover { transform: translateY(-5px); box-shadow: 0 16px 48px rgba(0,0,0,0.09); }
.payment-card:hover::after { opacity: 1; }


  /* ─── Selection Screen ─────────────────────────────────────── */
.payment-selection-screen {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 40px 20px;
  animation: fadeUp 0.5s ease both;
  background: #F4F7F9;
}

.payment-heading {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 45px;
  color: var(--ink);
  text-align: center;
  line-height: 1.12;
  margin-bottom: 12px;
}

.company_logo { font-size: 20px; width: 180px; height: 60px }




.success-screen {
  padding-bottom: 50px;
  display: flex;
  flex-direction: column;
  align-items: center;
  /* remove justify-content: center */
  text-align: center;
  min-height: 100vh;  /* or remove entirely */
  background: #F4F7F9;
}

.success-icon-circle {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: #E1F5EE;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  margin-top: 20px;
}

.success-screen h1 {
  font-size: 22px;
  font-weight: 500;
  margin: 0 0 0.5rem;
}

.success-screen p {
  font-size: 16px;
  color: #5F5E5A;
  margin: 0 0 2rem;
  max-width: 760px;
  line-height: 1.6;
}

.success-card {
  background: #f5f3ee;
  border-radius: 12px;
  border: 1px solid #d3d1c7;
  padding: 1rem 1.5rem;
  width: 100%;
  max-width: 360px;
  margin-bottom: 2rem;
}

.success-card-row {
  display: flex;
  justify-content: space-between;
  padding: 6px 0;
  border-bottom: 1px solid #d3d1c7;
}

.success-card-row:last-child {
  border-bottom: none;
}

.success-card-label {
  font-size: 13px;
  color: #888780;
}

.success-card-value {
  font-size: 13px;
  font-weight: 500;
}

.success-footer {
  font-size: 13px;
  color: #888780;
  margin: 0;
}

.success-footer a {
  color: #185FA5;
}


.choice-subtitle {
  font-size: 0.75rem;
  color: #6b7280;
  margin-top: 4px;
}


.tooltip-circle {
  display: inline-block;
  width: 40px;
  height: 40px;
  background-color: yellow;
  color: black;
  font-size: 24px;
  font-weight: bold;
  border-radius: 50%;
  text-align: center;
  line-height: 40px; /* Vertically center the question mark */
  cursor: pointer;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.tooltip-circle:hover {
  transform: scale(1.1); /* Slight zoom effect on hover */
}

/* Optional: Customize tooltip box appearance */
.tippy-box {
  background-color: #f1c40f;  /* Bright yellow for tooltip */
  color: black;
  font-size: 14px;
}

@import "//fonts.googleapis.com/css?family=Open+Sans";

.steps {
  list-style: none;
  margin: 0 auto;
  padding: 0;
  display: table;
  table-layout: fixed;
  width: 100%;
  color: #b3b3b3; /* darken($mute, 33%) equivalent */
  height: 4rem;
}

.steps > .step {
  position: relative;
  display: table-cell;
  text-align: center;
  font-size: 0.875rem;
  color: #6D6875;
  white-space: nowrap;
}

.steps > .step:before {
  content: attr(data-step);
  display: block;
  margin: 0 auto;
  background: #ffffff;
  border: 2px solid #e6e6e6; /* $mute color */
  color: #e6e6e6; /* $mute color */
  width: 2rem;
  height: 2rem;
  text-align: center;
  margin-bottom: -3.2rem;
  line-height: 1.9rem;
  border-radius: 100%;
  position: relative;
  z-index: 1;
  font-weight: 700;
  font-size: 1rem;
}

@media screen and (max-width: 1050px) {
  .steps > .step:nth-child(even)::before {
    margin-bottom: 0.3rem;
  }
}

@media screen and (max-width: 775px) {
  .steps > .step {
    font-size: 10px;
    white-space: wrap;
  }

  .steps > .step:nth-child(even)::before {
    margin-bottom: 0.4rem;
  }

  .steps > .step:nth-child(odd)::before {
    margin-bottom: -3.2rem;
  }
}



.steps > .step:after {
  content: '';
  position: absolute;
  display: block;
  background: #e6e6e6; /* $mute color */
  width: 100%;
  height: 0.125rem;
  top: 1rem;
  left: 50%;
}

.steps > .step:last-child:after {
  display: none;
}

.steps > .step.is-complete {
  color: #6D6875;
}

.steps > .step.is-complete:before {
  content: '\2713';
  color: #f68e20; /* $complete color */
  background: #fef0e2;
  border: 2px solid #f68e20; /* $complete color */
}

.steps > .step.is-complete:after {
  background: #f68e20; /* $complete color */
}


.steps > .step.is-active:before {
  color: #FFF;
  border: 2px solid #f68e20; /* $complete color */
  background: #f68e20; /* $active color */
}

/* Some Generic Styling */
*, *:after, *:before {
  box-sizing: border-box;
}

h1 {
  margin-bottom: 1.5em;
}

/* body {
  font-family: 'Open Sans', sans-serif;
  text-align: center;
  color: #6D6875;
} */



.initial-topbar {
  background: #E7EEF3;
  border-bottom: 1px solid #e0dbd2;
  display: flex;
  align-items: center;
  justify-content: center;  /* Center the content */
  position: sticky;
  top: 0;
  z-index: 100;
  width: 100%;  /* Ensure full width */
  height: 180px;
  min-width: "500px";
  overflow: "scroll";
}

.initial-topbar .left {
  position: absolute;
  left: 28px;  /* Adjust the left position as per your needs */
}

.initial-topbar .center {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
}

hr.solid {
  border-top: 1px solid #bbb;
  width: 50%;
  margin-top: 30px;
}





.values-container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  box-sizing: border-box;
}

.values-inner-grid {
  max-width: 80%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.values-eyebrow {
  font-weight: 500;
  font-size: clamp(16px, 1.25vw, 18px);
  line-height: 166%;
  text-transform: uppercase;
  margin: 1.5rem 0;
  letter-spacing: 0.05em;
}

.values-heading {
  font-weight: 600;
  font-size: clamp(24px, 4vw, 48px);
  line-height: 116%;
  max-width: 8em;
  margin: 0;
}

.values-content-grid {
  max-width: 80%;
  margin: 4rem auto 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  align-items: start;
}

.values-image-wrapper {
  display: flex;
  align-items: stretch;
}

.values-image {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.values-list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.values-item {
  display: flex;
  gap: 2rem;
  align-items: flex-start;
}

.values-icon {
  flex-shrink: 0;
  width: clamp(64px, 8vw, 120px);
  height: clamp(64px, 8vw, 120px);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.values-item-title {
  font-weight: 600;
  font-size: clamp(22px, 2.5vw, 36px);
  line-height: 116%;
  margin: 0.5rem 0 1.5rem;
}

.values-item-description {
  font-weight: 500;
  font-size: 16px;
  line-height: 150%;
  letter-spacing: -0.02em;
  max-width: 22em;
  margin: 0;
}

/* Chrome, Safari, Edge, Opera */
input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
input[type="number"] {
  -moz-appearance: textfield;
}











.arrow-toggle {
  width: 30px;
  height: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
}

.arrow-toggle span {
  display: block;
  height: 4px;
  background-color: black;
  border-left: 8px solid transparent; /* makes arrow tip */
  border-right: 8px solid transparent;
  clip-path: polygon(50% 0%, 0% 100%, 100% 100%); /* makes triangle shape */
  transition: transform 0.3s ease, background-color 0.3s ease;
}

/* Rotate for collapse (optional toggle effect) */
.arrow-toggle.active span:nth-child(1) {
  transform: rotate(180deg) translateY(6px);
}

.arrow-toggle.active span:nth-child(2) {
  opacity: 0;
}

.arrow-toggle.active span:nth-child(3) {
  transform: rotate(180deg) translateY(-6px);
}




















/* ---------------------------------------------------------------- */
/* New simple custom slider */
/* ---------------------------------------------------------------- */
.sliderrange{
  display: block;


  /* width: 150px; */
  padding-left: 20px;
  padding-right: 30px;

  font-size: 12px;
  font-family: "benton-sans", sans-serif;
  color: var(--light_color);
}

.slider {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 7px;
  background: #D3D3D3 !important;
  outline: none;
  opacity: 0.7;
  -webkit-transition: .2s;
  transition: opacity .2s;
}

.slider:hover {
  opacity: 1;
  /* background: #FF5B64; */
}

.slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 15px;
  height: 15px;
  background: var(--light_color);
  cursor: pointer;
}

.slider::-moz-range-thumb {
  width: 15px;
  height: 15px;
  background: var(--light_color);
  cursor: pointer;
  background: #D3D3D3;
}

.sliderticks {
  display: flex;
  justify-content: space-between;
  padding: 0 7px; /* half the thumb width */
  /* padding: 0 10px; */
  margin-top: 2px;
}

.sliderticks p {
  position: relative;
  display: flex;
  justify-content: center;
  text-align: center;
  width: 1px;
  background: none; /* remove from here */
  height: 10px;
  padding-top: 10px;
  font-size: 10px;
  font-family: "benton-sans", sans-serif;
  color: var(--light_color);
}

.sliderticks p::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: 10px;
  background: #D3D3D3;
}



.slider::-webkit-slider-thumb:focus {
  outline: none;
}

.slider {
  outline: none;
  -webkit-appearance: none;
}

.slider:focus,
.slider:active,
.slider:focus-visible,
.slider:focus-within {
  outline: none;
  box-shadow: none;
  border: none;
}



@media screen and (max-width: 600px) {
  .sliderticks {
    margin-top: 0;
  }



  .sliderticks p:nth-child(even) {
    top: -32px;
    padding-top: 0;
    padding-bottom: 10px;
  }

  .sliderticks p:nth-child(even)::before {
    top: auto;
    bottom: -10px; /* push tick down to meet the track */
    height: 10px;
  }
}

.help-btn {
  width: 56px;
  height: 56px;
  padding: 0;
  background: var(--ink);
  color: white;
  border: none;
  border-radius: 50%;
  font-family: 'Source Sans 3', sans-serif;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  letter-spacing: 0.04em;
  transition: background 0.15s, transform 0.1s;
}