    :root {
      --blue: #1f56b3;
      --blue-dark: #123b80;
      --slate: #5f6882;
      --text: #1d2433;
      --muted: #667085;
      --line: #e6ebf2;
      --bg: #f7f9fc;
      --white: #ffffff;
      --green: #1f7a5a;
      --gold: #c89b1e;
    }

    * { box-sizing: border-box; }
    html { scroll-behavior: smooth; }
    body {
      margin: 0;
      font-family: Arial, Helvetica, sans-serif;
      color: var(--text);
      background: var(--white);
      line-height: 1.55;
    }

    a { color: var(--blue); text-decoration: none; }
    a:hover { text-decoration: underline; }

    .container {
      width: min(1120px, calc(100% - 40px));
      margin: 0 auto;
    }

    header {
      position: sticky;
      top: 0;
      background: rgba(255,255,255,0.95);
      backdrop-filter: blur(10px);
      border-bottom: 1px solid var(--line);
      z-index: 10;
    }

    .nav {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 24px;
      padding: 14px 0;
    }

    .brand {
      display: flex;
      align-items: center;
      gap: 12px;
      font-weight: 700;
      color: var(--blue-dark);
      letter-spacing: 0.02em;
    }
	.brand img {
	  height: 55px;
	  width: auto;
	}

    .brand-mark {
      width: 42px;
      height: 42px;
      border-radius: 8px;
      background: linear-gradient(135deg, var(--blue), #4da0df);
      color: #fff;
      display: grid;
      place-items: center;
      font-weight: 700;
      font-size: 15px;
    }

    nav ul {
      display: flex;
      gap: 22px;
      margin: 0;
      padding: 0;
      list-style: none;
      font-size: 0.96rem;
    }

    .hero {
      background: linear-gradient(180deg, #f9fbff 0%, #eef4ff 100%);
      border-bottom: 1px solid var(--line);
    }

    .hero-grid {
      display: grid;
      grid-template-columns: 1.2fr 0.8fr;
      gap: 40px;
      align-items: center;
      padding: 72px 0;
    }

    .eyebrow {
      display: inline-block;
      padding: 8px 12px;
      border: 1px solid #cfe0ff;
      border-radius: 999px;
      background: #fff;
      color: var(--blue-dark);
      font-size: 0.82rem;
      font-weight: 700;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      margin-bottom: 18px;
    }

    h1 {
      margin: 0 0 16px;
      font-size: clamp(2.3rem, 5vw, 4.1rem);
      line-height: 1.04;
      letter-spacing: -0.03em;
      color: var(--blue-dark);
    }

    .lead {
      font-size: 1.1rem;
      color: var(--muted);
      margin: 0 0 28px;
      max-width: 680px;
    }

    .actions {
      display: flex;
      flex-wrap: wrap;
      gap: 14px;
      margin-bottom: 28px;
    }

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 13px 20px;
      border-radius: 10px;
      font-weight: 700;
      border: 1px solid transparent;
      transition: 0.2s ease;
    }

    .btn-primary {
      background: var(--blue);
      color: #fff;
    }

    .btn-primary:hover {
      background: var(--blue-dark);
      text-decoration: none;
    }

    .btn-secondary {
      background: #fff;
      border-color: #cfe0ff;
      color: var(--blue-dark);
    }

    .btn-secondary:hover {
      text-decoration: none;
      border-color: #abc8ff;
      background: #f9fbff;
    }

    .hero-card {
      background: #fff;
      border: 1px solid var(--line);
      border-radius: 18px;
      padding: 26px;
      box-shadow: 0 20px 50px rgba(16, 24, 40, 0.08);
    }

    .hero-card h3 {
      margin-top: 0;
      margin-bottom: 14px;
      color: var(--blue-dark);
      font-size: 1.15rem;
    }

    .hero-card ul {
      margin: 0;
      padding-left: 18px;
      color: var(--muted);
    }

    .hero-card li + li { margin-top: 10px; }

    .small { font-size: 0.92rem; color: var(--muted); }

    .section {
      padding: 72px 0;
    }

    .section.alt {
      background: var(--bg);
      border-top: 1px solid var(--line);
      border-bottom: 1px solid var(--line);
    }

    .section h2 {
      margin: 0 0 14px;
      font-size: clamp(1.8rem, 3vw, 2.6rem);
      color: var(--blue-dark);
      letter-spacing: -0.02em;
    }

    .section-intro {
      max-width: 760px;
      color: var(--muted);
      margin: 0 0 34px;
      font-size: 1.04rem;
    }

    .cards {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 22px;
    }

    .card {
      background: #fff;
      border: 1px solid var(--line);
      border-radius: 16px;
      padding: 24px;
      box-shadow: 0 10px 30px rgba(16, 24, 40, 0.04);
    }

    .card h3 {
      margin-top: 0;
      margin-bottom: 10px;
      color: var(--blue-dark);
      font-size: 1.12rem;
    }

    .card p { margin: 0; color: var(--muted); }

    .two-col {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 28px;
    }

    .panel {
      background: #fff;
      border: 1px solid var(--line);
      border-radius: 16px;
      padding: 28px;
    }

    .panel h3 {
      margin-top: 0;
      color: var(--blue-dark);
    }

    .panel ul {
      margin: 0;
      padding-left: 18px;
      color: var(--muted);
    }

    .panel li + li { margin-top: 10px; }

    .standard-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 22px;
      margin-top: 20px;
    }

    .level {
      border: 1px solid var(--line);
      border-radius: 16px;
      padding: 24px;
      background: #fff;
    }

    .level .tag {
      display: inline-block;
      margin-bottom: 12px;
      padding: 6px 10px;
      border-radius: 999px;
      font-size: 0.76rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.06em;
    }

    .tag-verified { background: #edf9f4; color: var(--green); }
    .tag-guaranteed { background: #edf4ff; color: var(--blue-dark); }
    .tag-trusted { background: #fff8e8; color: var(--gold); }

    .level h3 {
      margin: 0 0 10px;
      color: var(--blue-dark);
    }

    .level p,
    .level ul,
    .registry-box p,
    .registry-table td,
    .registry-table th,
    .footer-note { color: var(--muted); }

    .level ul {
      margin: 12px 0 0;
      padding-left: 18px;
    }
	
	.cert-badge{
	  width: 140px;
	  height: auto;
	  display: block;
	  margin: auto;
	  filter: drop-shadow(0 8px 18px rgba(0,0,0,0.15));
	}
	
	.badge-wrap{
	  display:flex;
	  justify-content:center;
	  margin:20px 0 24px;
	}

    .registry-grid {
      display: grid;
      grid-template-columns: 0.95fr 1.05fr;
      gap: 28px;
      margin-top: 20px;
    }

    .registry-box,
    .registry-table-wrap {
      background: #fff;
      border: 1px solid var(--line);
      border-radius: 16px;
      padding: 24px;
    }

    .search-row {
      display: flex;
      gap: 12px;
      flex-wrap: wrap;
      margin-top: 16px;
    }

    .input {
      flex: 1 1 220px;
      min-height: 46px;
      border: 1px solid var(--line);
      border-radius: 10px;
      padding: 0 14px;
      font: inherit;
      color: var(--text);
      background: #fff;
    }

    .registry-table {
      width: 100%;
      border-collapse: collapse;
      font-size: 0.95rem;
    }

    .registry-table th,
    .registry-table td {
      padding: 14px 12px;
      text-align: left;
      border-bottom: 1px solid var(--line);
    }

    .status {
      display: inline-block;
      padding: 5px 10px;
      border-radius: 999px;
      background: #edf9f4;
      color: var(--green);
      font-size: 0.76rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.06em;
    }

    .cta {
      text-align: center;
      padding: 80px 0;
    }

    .cta-box {
      background: linear-gradient(135deg, var(--blue-dark), var(--blue));
      color: #fff;
      border-radius: 24px;
      padding: 42px 28px;
      box-shadow: 0 24px 60px rgba(18, 59, 128, 0.28);
    }

    .cta-box h2 {
      color: #fff;
      margin-top: 0;
    }

    .cta-box p {
      max-width: 760px;
      margin: 0 auto 22px;
      color: rgba(255,255,255,0.88);
    }

    footer {
	  border-top: 1px solid var(--line);
	  padding: 44px 0 24px;
	  color: var(--muted);
	  font-size: 0.95rem;
	  background: #fff;
	}
	
	.footer-clean {
	  display: flex;
	  flex-direction: column;
	  gap: 24px;
	}
	
	.footer-top {
	  display: grid;
	  grid-template-columns: 1fr 1fr 1fr;
	  gap: 48px;
	  align-items: start;
	}
	
	.footer-col strong {
	  display: inline-block;
	  margin-bottom: 14px;
	  color: var(--blue-dark);
	  font-size: 1rem;
	}
	
	.footer-col p {
	  margin: 0 0 14px;
	  color: var(--muted);
	  line-height: 1.7;
	}
	
	.footer-bottom {
	  border-top: 1px solid var(--line);
	  padding-top: 18px;
	  display: flex;
	  justify-content: center;
	}
	
	.footer-bottom-links {
	  display: flex;
	  flex-wrap: wrap;
	  justify-content: center;
	  gap: 18px;
	}
	
	.footer-bottom-links a {
	  color: var(--blue);
	  font-size: 0.94rem;
	}
	
	.footer-bottom-links a:hover {
	  text-decoration: underline;
	}
	
	@media (max-width: 960px) {
	  .footer-top {
	    grid-template-columns: 1fr;
	    gap: 28px;
	  }
	
	  .footer-bottom {
	    justify-content: flex-start;
	  }
	
	  .footer-bottom-links {
	    justify-content: flex-start;
	    gap: 14px;
	  }
	}

    .footer-grid {
      display: flex;
      justify-content: space-between;
      gap: 20px;
      flex-wrap: wrap;
      align-items: start;
    }
	
	.footer-legal{
	  margin-top:20px;
	  padding-top:14px;
	  border-top:1px solid var(--line);
	  font-size:0.85rem;
	  color:#8a93a6;
	  line-height:1.4;
	}

    .wqi-link {
      display: inline-flex;
      align-items: center;
      gap: 14px;
      margin-top: 16px;
      padding-top: 16px;
      border-top: 1px solid var(--line);
    }

    .wqi-link img {
      height: 40px;
      width: auto;
      display: block;
    }

	.menu-toggle{
	  display:none;
	  font-size:26px;
	  background:none;
	  border:none;
	  cursor:pointer;
	  color:var(--blue-dark);
	}
	
	@media (max-width:960px){
	
	  .menu-toggle{
	    display:block;
	  }
	
	  nav{
	    position:absolute;
	    top:70px;
	    left:0;
	    width:100%;
	    background:#fff;
	    border-bottom:1px solid var(--line);
	  }
	
	  nav ul{
	    display:none;
	    flex-direction:column;
	    gap:0;
	    padding:10px 20px;
	  }
	
	  nav ul li{
	    padding:12px 0;
	    border-bottom:1px solid var(--line);
	  }
	
	  nav ul.show{
	    display:flex;
	  }
	
	}
	
    @media (max-width: 960px) {
      .hero-grid,
      .cards,
      .two-col,
      .standard-grid,
      .registry-grid {
        grid-template-columns: 1fr;
      }

      nav ul {
        display: none;
      }
    }
	
/* =========================
   FAQ PAGE
========================= */

.faq-hero-grid {
  grid-template-columns: 1.15fr 0.85fr;
}

.faq-keyline {
  margin: -6px 0 24px;
  font-size: 1.02rem;
  color: var(--blue-dark);
}

.faq-search-wrap {
  margin: 0 0 22px;
  max-width: 760px;
}

.faq-search-label {
  display: block;
  margin-bottom: 8px;
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--blue-dark);
}

.faq-search-input {
  width: 100%;
  min-height: 54px;
  font-size: 1rem;
  box-shadow: 0 10px 30px rgba(16, 24, 40, 0.05);
}

.faq-summary-card {
  align-self: stretch;
}

.faq-value-cards {
  align-items: stretch;
}

.faq-top-links-section {
  padding-top: 28px;
  padding-bottom: 28px;
}

.faq-top-links {
  position: sticky;
  top: 82px;
  z-index: 6;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  padding: 14px;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(10px);
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(16, 24, 40, 0.05);
}

.faq-top-links a {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid #d7e4fb;
  background: #f8fbff;
  color: var(--blue-dark);
  font-weight: 700;
  font-size: 0.94rem;
  text-decoration: none;
}

.faq-top-links a:hover {
  background: #eef4ff;
  text-decoration: none;
}

.faq-most-asked {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #fbfcff;
}

.faq-list {
  display: grid;
  gap: 14px;
}

.faq-item {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 24px rgba(16, 24, 40, 0.04);
}

.faq-item summary {
  position: relative;
  list-style: none;
  cursor: pointer;
  padding: 22px 58px 22px 22px;
  font-weight: 700;
  color: var(--blue-dark);
  font-size: 1.03rem;
  line-height: 1.4;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 20px;
  top: 18px;
  width: 28px;
  height: 28px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: #eef4ff;
  color: var(--blue-dark);
  font-size: 1.2rem;
  font-weight: 700;
}

.faq-item[open] summary::after {
  content: "–";
}

.faq-answer {
  padding: 0 22px 22px;
  color: var(--muted);
}

.faq-answer p:last-child {
  margin-bottom: 0;
}

.faq-highlight-list .faq-item {
  border-color: #d7e4fb;
}

.faq-proof-panel {
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
}

.faq-proof-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  margin-top: 18px;
}

.faq-proof-col {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 20px;
}

.faq-proof-col strong {
  display: block;
  margin-bottom: 10px;
  color: var(--blue-dark);
}

.faq-proof-col ul {
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
}

.faq-proof-col li + li {
  margin-top: 8px;
}

.faq-proof-line {
  margin: 18px 0 0;
  color: var(--blue-dark);
  text-align: center;
}

.faq-cta-line {
  margin-top: -4px;
  color: var(--blue-dark);
}

@media (max-width: 960px) {
  .faq-hero-grid {
    grid-template-columns: 1fr;
  }

  .faq-top-links {
    top: 74px;
    padding: 12px;
  }

  .faq-top-links a {
    font-size: 0.9rem;
  }

  .faq-item summary {
    padding: 18px 50px 18px 18px;
    font-size: 0.98rem;
  }

  .faq-answer {
    padding: 0 18px 18px;
  }

  .faq-proof-grid {
    grid-template-columns: 1fr;
  }
 }
.conversion-block {
  padding: 80px 20px;
  text-align: center;
  /*border-top: 1px solid #e5e7eb;*/
  background: #f8fafc;
}

.conversion-eyebrow {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #6b7280;
  margin-bottom: 16px;
}

.conversion-title {
  font-size: 2.4rem;
  font-weight: 600;
  margin: 0;
  color: #1a1a1a;
  
}

.conversion-title.strong {
  font-size: 2.6rem;
  color: #0f172a;
}

.conversion-sub {
  margin-top: 20px;
  font-size: 1rem;
  color: #6b7280;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

.registry-single {
  display: flex;
  justify-content: center;
}

.registry-single .registry-box {
  width: 100%;
  max-width: 760px;
}