:root {
  --navy: #06172e;
  --navy-2: #092446;
  --ink: #07142d;
  --muted: #536176;
  --line: #e5ebf3;
  --panel: #ffffff;
  --soft: #f4f8ff;
  --soft-blue: #eaf3ff;
  --blue: #0969da;
  --blue-2: #1b82f1;
  --cyan: #12a3d7;
  --green: #18a96d;
  --gold: #f5bd20;
  --purple: #8b43d6;
  --shadow: 0 16px 44px rgba(17, 42, 82, 0.12);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: #ffffff;
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img,
svg {
  display: block;
}

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

.site-header {
  background: var(--navy);
  color: #ffffff;
  box-shadow: 0 8px 22px rgba(3, 12, 30, 0.18);
}

.nav-bar {
  min-height: 72px;
  display: flex;
  align-items: center;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  flex: 0 0 auto;
  color: #ffffff;
  font-weight: 800;
}

.brand-mark {
  width: 58px;
  color: #1579f4;
}

.brand-text {
  font-size: 26px;
  line-height: 1;
  white-space: nowrap;
}

.brand-text span {
  font-size: 16px;
  font-weight: 500;
  opacity: 0.9;
}

.main-nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 30px;
  font-size: 14px;
  font-weight: 700;
}

.main-nav a,
.nav-more {
  color: rgba(255, 255, 255, 0.92);
  white-space: nowrap;
}

.main-nav a:hover,
.nav-more:hover {
  color: #ffffff;
}

.nav-dropdown {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.nav-more {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  border: 0;
  padding: 0;
  background: transparent;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.nav-more-caret {
  width: 7px;
  height: 7px;
  margin-top: -3px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
}

.nav-menu {
  position: absolute;
  top: calc(100% + 14px);
  right: 0;
  z-index: 50;
  min-width: 190px;
  display: grid;
  gap: 2px;
  padding: 8px;
  border: 1px solid rgba(213, 224, 240, 0.9);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 18px 42px rgba(3, 12, 30, 0.24);
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: opacity 0.16s ease, transform 0.16s ease, visibility 0.16s ease;
}

.nav-menu::before {
  content: "";
  position: absolute;
  right: 0;
  bottom: 100%;
  width: 100%;
  height: 14px;
}

.nav-dropdown:hover .nav-menu,
.nav-dropdown:focus-within .nav-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.main-nav .nav-menu a {
  display: block;
  padding: 9px 10px;
  border-radius: 6px;
  color: #061637;
  font-size: 13px;
  font-weight: 800;
}

.main-nav .nav-menu a:hover,
.main-nav .nav-menu a:focus {
  background: #edf5ff;
  color: #0869ec;
}

.nav-action,
.button-primary {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  border-radius: 5px;
  background: #0869ec;
  color: #ffffff;
  font-size: 14px;
  font-weight: 800;
  padding: 0 18px;
  box-shadow: 0 10px 24px rgba(8, 105, 236, 0.25);
  white-space: nowrap;
}

.nav-action:hover,
.button-primary:hover {
  background: #075bd0;
}

.nav-toggle,
.nav-toggle-label {
  display: none;
}

.hero-section {
  padding: 30px 0 34px;
  background:
    radial-gradient(circle at 74% 16%, rgba(37, 123, 230, 0.09), transparent 28%),
    linear-gradient(180deg, #ffffff 0%, #fbfdff 100%);
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 22px;
  color: #738095;
  font-size: 14px;
  font-weight: 600;
}

.breadcrumb a {
  color: var(--blue);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(320px, 0.9fr) minmax(420px, 1.1fr);
  gap: 34px;
  align-items: center;
}

.hero-copy h1 {
  margin: 0 0 14px;
  color: #061637;
  font-size: clamp(44px, 5vw, 62px);
  line-height: 1;
  font-weight: 900;
}

.hero-copy p {
  max-width: 610px;
  margin: 0 0 20px;
  color: #12233d;
  font-size: 18px;
}

.hero-copy .lead {
  font-size: 20px;
}

.hero-visual {
  position: relative;
  min-height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-visual img {
  width: min(100%, 640px);
  height: auto;
}

.report-card {
  position: absolute;
  right: 0;
  bottom: 38px;
  width: 190px;
  padding: 20px;
  border: 1px solid rgba(221, 230, 240, 0.8);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow);
}

.plate {
  width: 136px;
  margin: 0 auto 14px;
  border-radius: 5px;
  background: #ffd429;
  color: #19170a;
  font-size: 22px;
  font-weight: 900;
  line-height: 42px;
  text-align: center;
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.07);
}

.report-card ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  color: #12233d;
  font-size: 13px;
  font-weight: 700;
  list-style: none;
}

.report-card li {
  position: relative;
  padding-left: 24px;
}

.report-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 2px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--green);
}

.report-card li::after {
  content: "";
  position: absolute;
  left: 5px;
  top: 6px;
  width: 6px;
  height: 3px;
  border-left: 2px solid #ffffff;
  border-bottom: 2px solid #ffffff;
  transform: rotate(-45deg);
}

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

.trust-points article,
.footer-benefits article {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  align-items: start;
}

.trust-points h3,
.footer-benefits h3 {
  margin: 0 0 5px;
  font-size: 13px;
  line-height: 1.3;
  font-weight: 900;
}

.trust-points p,
.footer-benefits p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.55;
}

.icon {
  width: 36px;
  height: 36px;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  background: var(--soft-blue);
  color: var(--blue);
}

.icon svg,
.round-icon svg,
.process-icon svg,
.value-icon svg,
.stat-icon svg,
.footer-icon svg,
.ssl svg {
  width: 22px;
  height: 22px;
}

.icon svg *,
.round-icon svg *,
.process-icon svg *,
.value-icon svg *,
.stat-icon svg *,
.footer-icon svg *,
.ssl svg * {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.badge-gold {
  background: #fff7dc;
  color: #d59a00;
}

.badge-indigo {
  background: #eef1ff;
  color: #365ce7;
}

.split-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  padding: 20px 0 10px;
}

.info-card,
.value-card,
.contact-band,
.resource-band {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
}

.wide-card {
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 28px;
  align-items: center;
  min-height: 174px;
  padding: 30px 28px;
}

.round-icon {
  width: 76px;
  height: 76px;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  background: var(--soft-blue);
  color: var(--blue);
}

.round-icon svg {
  width: 40px;
  height: 40px;
}

.info-card h2,
.section-heading h2,
.resource-copy h2,
.contact-band h2 {
  margin: 0 0 10px;
  color: #081734;
  font-size: 26px;
  line-height: 1.2;
  font-weight: 900;
}

.info-card p,
.section-heading p,
.resource-copy p,
.contact-band p,
.value-card p,
.process-steps p {
  margin: 0;
  color: var(--muted);
}

.info-card p {
  font-size: 15px;
}

.process-section {
  padding: 12px 0 34px;
}

.section-heading {
  margin-bottom: 22px;
  text-align: center;
}

.section-heading p {
  font-size: 15px;
}

.process-steps {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 32px;
}

.process-steps::before {
  content: "";
  position: absolute;
  top: 37px;
  left: 7%;
  right: 7%;
  border-top: 2px dashed #e0e6ef;
}

.process-steps article {
  position: relative;
  display: grid;
  justify-items: center;
  text-align: center;
  z-index: 1;
}

.process-icon {
  width: 72px;
  height: 72px;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  background: #eff6ff;
  color: var(--blue);
}

.process-icon svg {
  width: 36px;
  height: 36px;
}

.step-number {
  width: 28px;
  height: 28px;
  display: inline-grid;
  place-items: center;
  margin: -4px 0 12px;
  border-radius: 50%;
  background: var(--blue);
  color: #ffffff;
  font-size: 13px;
  font-weight: 900;
}

.process-steps h3 {
  min-height: 34px;
  margin: 0 0 6px;
  font-size: 14px;
  line-height: 1.22;
  font-weight: 900;
}

.process-steps p {
  font-size: 13px;
  line-height: 1.45;
}

.values-section {
  padding: 0 0 28px;
}

.value-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.value-card {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 14px;
  align-items: start;
  min-height: 124px;
  padding: 22px 20px;
}

.value-icon {
  width: 44px;
  height: 44px;
  display: inline-grid;
  place-items: center;
  color: var(--blue);
}

.value-icon svg {
  width: 36px;
  height: 36px;
}

.value-card h3 {
  margin: 0 0 6px;
  font-size: 14px;
  line-height: 1.25;
  font-weight: 900;
}

.value-card p {
  font-size: 12px;
  line-height: 1.55;
}

.medal {
  color: #2385e8;
}

.refresh {
  color: #0d7edb;
}

.resource-band {
  display: grid;
  grid-template-columns: 1.7fr repeat(3, 1fr);
  align-items: center;
  margin: 0 0 22px;
  padding: 26px 30px;
  background: linear-gradient(100deg, #f6f9ff 0%, #eef5ff 100%);
}

.resource-copy {
  padding-right: 22px;
}

.resource-copy h2 {
  font-size: 24px;
}

.resource-copy p {
  max-width: 470px;
  font-size: 15px;
}

.resource-stat {
  min-height: 104px;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 2px;
  border-left: 1px solid #d8e0ed;
  text-align: center;
}

.stat-icon {
  width: 40px;
  height: 40px;
  display: inline-grid;
  place-items: center;
  margin-bottom: 4px;
}

.stat-icon.green {
  color: var(--green);
}

.stat-icon.cyan {
  color: var(--cyan);
}

.stat-icon.purple {
  color: var(--purple);
}

.resource-stat strong {
  color: #071734;
  font-size: 26px;
  line-height: 1;
  font-weight: 900;
}

.resource-stat span:last-child {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.2;
}

.contact-band-section {
  padding-bottom: 28px;
}

.contact-band {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 22px;
  align-items: center;
  padding: 24px 30px;
  background: #f3f7ff;
}

.support-icon {
  width: 62px;
  height: 62px;
}

.contact-band h2 {
  margin-bottom: 2px;
  font-size: 19px;
}

.contact-band p {
  font-size: 15px;
}

.site-footer {
  background:
    radial-gradient(circle at 74% 0%, rgba(15, 105, 230, 0.2), transparent 32%),
    var(--navy);
  color: #ffffff;
}

.footer-benefits {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
  padding: 28px 0 26px;
  border-bottom: 1px solid rgba(216, 229, 246, 0.14);
}

.footer-benefits article {
  padding-right: 22px;
  border-right: 1px solid rgba(216, 229, 246, 0.12);
}

.footer-benefits article:last-child {
  border-right: 0;
}

.footer-benefits h3 {
  color: #ffffff;
  font-size: 14px;
}

.footer-benefits p {
  color: #b6c4d8;
  font-size: 13px;
}

.footer-icon {
  width: 42px;
  height: 42px;
  display: inline-grid;
  place-items: center;
  color: #1479f2;
}

.footer-icon svg {
  width: 38px;
  height: 38px;
}

.footer-main {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 44px;
  padding: 26px 0 28px;
  border-bottom: 1px solid rgba(216, 229, 246, 0.14);
}

.footer-brand {
  margin-bottom: 10px;
}

.footer-brand .brand-mark {
  width: 50px;
}

.footer-brand .brand-text {
  font-size: 21px;
}

.footer-brand .brand-text span {
  font-size: 13px;
}

.footer-brand-block p {
  margin: 0 0 16px;
  color: #b6c4d8;
  font-size: 14px;
}

.social-links {
  display: flex;
  gap: 14px;
}

.social-links a {
  width: 30px;
  height: 30px;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  font-size: 12px;
  font-weight: 900;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 28px;
}

.footer-links h3 {
  margin: 0 0 14px;
  color: #ffffff;
  font-size: 14px;
  font-weight: 900;
}

.footer-links a {
  display: block;
  margin-bottom: 9px;
  color: #b6c4d8;
  font-size: 14px;
  line-height: 1.35;
}

.footer-links a:hover {
  color: #ffffff;
}

.footer-bottom {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px;
  align-items: center;
  padding: 18px 0 26px;
}

.footer-bottom p {
  margin: 0;
  color: #b6c4d8;
  font-size: 13px;
  line-height: 1.45;
}

.payment-row {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 18px;
  flex-wrap: wrap;
}

.ssl {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #d8e7f8;
  font-size: 13px;
  white-space: nowrap;
}

.ssl svg {
  width: 30px;
  height: 30px;
  color: #53c86d;
}

.pay-card {
  min-width: 70px;
  min-height: 32px;
  display: inline-grid;
  place-items: center;
  padding: 4px 8px;
  border-radius: 4px;
  background: #ffffff;
  color: #18315b;
  font-size: 14px;
  line-height: 1;
  font-weight: 900;
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.08);
}

.mastercard {
  background: linear-gradient(90deg, #e5382d 0%, #e5382d 48%, #f6a313 52%, #f6a313 100%);
  color: #ffffff;
  font-size: 10px;
}

.amex {
  background: #3979c8;
  color: #ffffff;
  font-size: 9px;
}

.discover {
  background: linear-gradient(90deg, #ffffff 0%, #ffffff 45%, #f4a124 100%);
  color: #16243d;
  font-size: 11px;
}

.screenshot-footer {
  background:
    radial-gradient(circle at 84% 8%, rgba(11, 105, 236, 0.16), transparent 32%),
    linear-gradient(180deg, #06172e 0%, #03101f 100%);
  color: #ffffff;
}

.screenshot-footer .container {
  width: min(100% - 64px, 1420px);
}

.screenshot-footer > .footer-benefits,
.screenshot-footer > .footer-main,
.screenshot-footer > .footer-bottom {
  display: none;
}

.sf-shell {
  padding: 38px 0 30px;
}

.sf-benefits {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 48px;
  padding-bottom: 34px;
  border-bottom: 1px solid rgba(210, 224, 242, 0.18);
}

.sf-benefits article,
.sf-cta,
.sf-meta-item,
.sf-brand,
.sf-secure,
.sf-follow {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  align-items: center;
}

.sf-icon {
  width: 54px;
  height: 54px;
  display: inline-grid;
  place-items: center;
  color: #0869ec;
}

.sf-icon svg,
.sf-col-icon svg,
.sf-cta-icon svg,
.sf-meta-icon svg,
.sf-secure svg {
  width: 100%;
  height: 100%;
}

.sf-icon svg *,
.sf-col-icon svg *,
.sf-cta-icon svg *,
.sf-meta-icon svg *,
.sf-secure svg *,
.sf-cta-button svg * {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.sf-benefits h3,
.sf-cta h3,
.sf-links h3 {
  margin: 0 0 7px;
  color: #ffffff;
  font-size: 19px;
  line-height: 1.2;
  font-weight: 900;
}

.sf-benefits p,
.sf-cta p,
.sf-meta p,
.sf-legal p {
  margin: 0;
  color: #c2ccda;
  font-size: 17px;
  line-height: 1.45;
}

.sf-cta {
  grid-template-columns: auto 1fr auto;
  gap: 26px;
  margin: 34px 0 38px;
  padding: 26px 32px;
  border: 1px solid rgba(210, 224, 242, 0.22);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.025);
}

.sf-cta-icon {
  width: 82px;
  height: 82px;
  display: inline-grid;
  place-items: center;
  padding: 17px;
  border: 3px solid #0869ec;
  border-radius: 50%;
  color: #0869ec;
}

.sf-cta h3 {
  margin-bottom: 8px;
  font-size: 24px;
}

.sf-cta-button {
  min-width: 286px;
  min-height: 66px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  border-radius: 5px;
  background: #0869ec;
  color: #ffffff;
  font-size: 20px;
  font-weight: 800;
  box-shadow: 0 16px 32px rgba(8, 105, 236, 0.24);
}

.sf-cta-button svg {
  width: 30px;
  height: 30px;
}

.sf-links {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 48px;
  padding-bottom: 38px;
  border-bottom: 1px solid rgba(210, 224, 242, 0.18);
}

.sf-links h3 {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 22px;
  font-size: 20px;
}

.sf-col-icon {
  width: 34px;
  height: 34px;
  color: #0869ec;
}

.sf-links a {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
  min-height: 40px;
  margin-bottom: 12px;
  color: #c2ccda;
  font-size: 18px;
  line-height: 1.35;
}

.sf-links a::after {
  content: "";
  width: 8px;
  height: 8px;
  flex: 0 0 auto;
  margin-top: 7px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  color: #c2ccda;
  opacity: 0.9;
  transform: rotate(45deg);
}

.sf-links a:hover {
  color: #ffffff;
}

.sf-meta {
  display: grid;
  grid-template-columns: minmax(360px, 1.35fr) minmax(250px, 0.8fr) minmax(310px, 0.9fr) minmax(270px, auto);
  gap: 34px;
  align-items: center;
  padding: 32px 0;
  border-bottom: 1px solid rgba(210, 224, 242, 0.18);
}

.sf-brand {
  display: block;
}

.sf-brand .footer-brand {
  margin-bottom: 0;
  gap: 12px;
}

.sf-brand .brand-mark {
  width: 76px;
}

.sf-brand .brand-text {
  font-size: 24px;
}

.sf-brand .brand-text span {
  font-size: 17px;
}

.sf-brand p {
  grid-column: auto;
  margin: -8px 0 0 88px;
  font-size: 14px;
  line-height: 1.25;
  white-space: nowrap;
}

.sf-meta-item,
.sf-follow {
  position: relative;
  padding-left: 38px;
}

.sf-meta-item::before,
.sf-follow::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 1px;
  height: 48px;
  background: rgba(210, 224, 242, 0.24);
  transform: translateY(-50%);
}

.sf-meta-icon {
  width: 40px;
  height: 40px;
  color: #b7c2d2;
}

.sf-uk {
  width: 52px;
  height: 52px;
  display: block;
  
}

.sf-follow {
  grid-template-columns: auto auto;
  justify-content: end;
  gap: 22px;
}

.sf-follow strong {
  font-size: 18px;
  white-space: nowrap;
}

.sf-socials {
  display: flex;
  gap: 14px;
}

.sf-socials a {
  width: 42px;
  height: 42px;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  font-size: 17px;
  font-weight: 900;
}

.sf-payments {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(210, 224, 242, 0.18);
}

.sf-secure {
  gap: 16px;
  color: #c2ccda;
  font-size: 17px;
}

.sf-secure svg {
  width: 40px;
  height: 40px;
  color: #28b64b;
}

.sf-pay-card {
  width: 72px;
  height: 36px;
  display: block;
  border-radius: 3px;
  object-fit: contain;
}

.sf-legal {
  display: grid;
  gap: 14px;
  padding-top: 24px;
}

.sf-legal p {
  font-size: 17px;
}

@media (max-width: 1080px) {
  .sf-benefits,
  .sf-links {
    gap: 28px;
  }

  .sf-meta {
    grid-template-columns: 1fr 1fr;
  }

  .sf-follow {
    padding-left: 0;
  }

  .sf-follow::before {
    display: none;
  }
}

@media (max-width: 940px) {
  .sf-benefits,
  .sf-links {
    grid-template-columns: repeat(2, 1fr);
  }

  .sf-cta {
    grid-template-columns: auto 1fr;
  }

  .sf-cta-button {
    grid-column: 1 / -1;
    width: 100%;
  }
}

@media (max-width: 640px) {
  .sf-shell {
    padding: 30px 0 24px;
  }

  .sf-benefits,
  .sf-links,
  .sf-meta {
    grid-template-columns: 1fr;
  }

  .sf-benefits article,
  .sf-cta,
  .sf-meta-item,
  .sf-brand,
  .sf-follow {
    grid-template-columns: 1fr;
  }

  .sf-brand p {
    grid-column: auto;
    margin: 0;
  }

  .sf-benefits h3,
  .sf-cta h3,
  .sf-links h3 {
    font-size: 18px;
  }

  .sf-benefits p,
  .sf-cta p,
  .sf-links a,
  .sf-meta p,
  .sf-legal p {
    font-size: 15px;
  }

  .sf-cta {
    padding: 22px;
  }

  .sf-cta-button {
    min-width: 0;
    min-height: 54px;
    font-size: 17px;
  }

  .sf-meta-item,
  .sf-follow {
    padding-left: 0;
    justify-content: start;
  }

  .sf-meta-item::before {
    display: none;
  }

  .sf-payments {
    justify-content: flex-start;
    gap: 16px;
    flex-wrap: wrap;
  }

  .screenshot-footer .container {
    width: min(100% - 28px, 1420px);
  }
}

.contact-hero {
  padding: 30px 0 36px;
  background:
    radial-gradient(circle at 77% 20%, rgba(9, 105, 218, 0.08), transparent 28%),
    linear-gradient(180deg, #ffffff 0%, #fbfdff 100%);
}

.contact-hero-grid {
  display: grid;
  grid-template-columns: minmax(340px, 0.9fr) minmax(420px, 1.1fr);
  gap: 46px;
  align-items: center;
}

.contact-hero-copy h1 {
  margin: 0 0 18px;
  color: #061637;
  font-size: clamp(46px, 5vw, 64px);
  line-height: 1;
  font-weight: 900;
}

.contact-hero-copy p {
  max-width: 610px;
  margin: 0 0 28px;
  color: #13243d;
  font-size: 18px;
  line-height: 1.65;
}

.response-note,
.privacy-note {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #1b2b44;
  font-size: 14px;
  font-weight: 700;
}

.mini-icon,
.mini-lock {
  width: 34px;
  height: 34px;
  display: inline-grid;
  place-items: center;
  color: var(--blue);
}

.mini-icon svg,
.mini-lock svg,
.feature-icon svg,
.method-icon svg,
.send-button svg {
  width: 24px;
  height: 24px;
}

.mini-icon svg *,
.mini-lock svg *,
.feature-icon svg *,
.method-icon svg *,
.send-button svg * {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact-hero-art {
  min-height: 280px;
  display: grid;
  place-items: center;
}

.contact-hero-art img {
  width: min(100%, 610px);
  height: auto;
}

.support-strip {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #ffffff;
}

.support-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 34px;
  padding: 34px 0;
}

.support-grid article {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 16px;
  align-items: center;
}

.feature-icon {
  width: 56px;
  height: 56px;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  color: var(--blue);
}

.blue-soft {
  background: #eef6ff;
}

.green-soft {
  background: #e9f8ef;
  color: var(--green);
}

.purple-soft {
  background: #f4ecff;
  color: var(--purple);
}

.gold-soft {
  background: #fff4df;
  color: #d68a00;
}

.support-grid h2 {
  margin: 0 0 4px;
  color: #081734;
  font-size: 14px;
  line-height: 1.25;
  font-weight: 900;
}

.support-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

.contact-content {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(320px, 1fr);
  gap: 22px;
  padding: 32px 0 26px;
}

.contact-panel {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
  padding: 26px 24px;
}

.contact-panel h2 {
  margin: 0 0 8px;
  color: #081734;
  font-size: 25px;
  line-height: 1.2;
  font-weight: 900;
}

.contact-panel > p {
  margin: 0 0 24px;
  color: var(--muted);
  font-size: 15px;
}

.contact-form {
  display: grid;
  gap: 16px;
}

.field-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.contact-form label {
  display: grid;
  gap: 7px;
}

.contact-form label span {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid #dfe6ef;
  border-radius: 7px;
  background: #ffffff;
  color: #11233d;
  font: inherit;
  font-size: 15px;
  outline: 0;
  transition: border-color 0.18s ease, box-shadow 0.18s ease;
}

.contact-form input {
  min-height: 48px;
  padding: 0 16px;
}

.contact-form textarea {
  min-height: 150px;
  padding: 15px 16px;
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #7cb7f5;
  box-shadow: 0 0 0 3px rgba(9, 105, 218, 0.12);
}

.contact-form ::placeholder {
  color: #8492a6;
}

.send-button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 0;
  border-radius: 6px;
  background: #0869ec;
  color: #ffffff;
  font: inherit;
  font-size: 15px;
  font-weight: 900;
  cursor: pointer;
  box-shadow: 0 10px 24px rgba(8, 105, 236, 0.22);
}

.send-button:hover {
  background: #075bd0;
}

.privacy-note {
  display: flex;
  justify-content: center;
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 12px;
  font-weight: 500;
  text-align: center;
}

.mini-lock {
  width: 20px;
  height: 20px;
}

.mini-lock svg {
  width: 18px;
  height: 18px;
}

.contact-methods {
  padding-bottom: 20px;
}

.method-list {
  display: grid;
}

.method-list article {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 16px;
  padding: 20px 0;
  border-top: 1px solid #edf1f6;
}

.method-list article:first-child {
  border-top: 0;
  padding-top: 0;
}

.method-icon {
  width: 44px;
  height: 44px;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  background: #eef6ff;
  color: var(--blue);
}

.method-list h3 {
  margin: 0 0 4px;
  color: #081734;
  font-size: 15px;
  line-height: 1.25;
  font-weight: 900;
}

.method-list a {
  color: var(--blue);
  font-size: 15px;
  font-weight: 700;
}

.method-list p {
  margin: 2px 0 0;
  color: #34445c;
  font-size: 14px;
  line-height: 1.55;
}

.help-section {
  padding: 0 0 24px;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px 42px;
}

.faq-grid details {
  border: 1px solid #dfe6ef;
  border-radius: 6px;
  background: #ffffff;
  overflow: hidden;
}

.faq-grid summary {
  min-height: 42px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 0 18px;
  color: #10213a;
  font-size: 14px;
  font-weight: 700;
  list-style: none;
  cursor: pointer;
}

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

.faq-grid summary::after {
  content: "v";
  color: var(--blue);
  font-size: 15px;
  font-weight: 900;
}

.faq-grid details[open] summary::after {
  transform: rotate(180deg);
}

.faq-grid details p {
  margin: 0;
  padding: 0 18px 14px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

.help-band {
  background: linear-gradient(100deg, #f3f8ff 0%, #edf5ff 100%);
}

.faq-page {
  background: #ffffff;
}

.faq-hero {
  padding: 30px 0 48px;
  background:
    radial-gradient(circle at 78% 18%, rgba(8, 105, 236, 0.1), transparent 30%),
    linear-gradient(180deg, #ffffff 0%, #f7fbff 100%);
}

.faq-hero-grid {
  display: grid;
  grid-template-columns: minmax(420px, 0.95fr) minmax(420px, 1.05fr);
  gap: 48px;
  align-items: center;
}

.faq-kicker {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 18px;
  padding: 8px 14px;
  border-radius: 999px;
  background: #edf5ff;
  color: #083f9e;
  font-size: 14px;
  font-weight: 900;
}

.faq-kicker svg {
  width: 20px;
  height: 20px;
}

.faq-kicker svg *,
.faq-search button svg *,
.faq-cat-icon svg *,
.faq-cta-icon svg * {
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.faq-hero-copy h1 {
  margin: 0 0 16px;
  color: #061637;
  font-size: 58px;
  line-height: 1;
  font-weight: 900;
}

.faq-hero-copy p {
  max-width: 610px;
  margin: 0 0 24px;
  color: #17243b;
  font-size: 19px;
  line-height: 1.55;
}

.faq-search {
  display: grid;
  grid-template-columns: 1fr 58px;
  width: min(100%, 620px);
  min-height: 58px;
  border: 1px solid #dfe7f2;
  border-radius: 8px;
  overflow: hidden;
  background: #ffffff;
  box-shadow: 0 12px 34px rgba(20, 52, 94, 0.08);
}

.faq-search label {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}

.faq-search input {
  width: 100%;
  border: 0;
  padding: 0 18px;
  color: #17243b;
  font: inherit;
  font-size: 16px;
  outline: 0;
}

.faq-search button {
  display: inline-grid;
  place-items: center;
  border: 0;
  background: #0869ec;
  color: #ffffff;
  cursor: pointer;
}

.faq-search button svg {
  width: 24px;
  height: 24px;
}

.faq-hero-art {
  min-height: 300px;
  display: grid;
  place-items: center;
}

.faq-hero-art img {
  width: min(100%, 470px);
  filter: drop-shadow(0 18px 36px rgba(21, 48, 86, 0.12));
}

.faq-category-wrap {
  border-top: 1px solid #eaf0f7;
  border-bottom: 1px solid #eaf0f7;
  background: #fbfdff;
}

.faq-category-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  padding: 32px 0;
}

.faq-category-grid article {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 15px;
  align-items: center;
  padding: 20px;
  border: 1px solid #e4ebf4;
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 10px 28px rgba(16, 48, 86, 0.05);
}

.faq-cat-icon {
  width: 52px;
  height: 52px;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  color: var(--blue);
}

.faq-cat-icon svg {
  width: 29px;
  height: 29px;
}

.faq-category-grid h2 {
  margin: 0 0 4px;
  color: #061637;
  font-size: 16px;
  line-height: 1.25;
  font-weight: 900;
}

.faq-category-grid p {
  grid-column: 2;
  margin: 0;
  color: #536176;
  font-size: 13px;
  line-height: 1.45;
}

.faq-list-section {
  padding: 46px 0 22px;
}

.faq-page-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.faq-panel {
  border: 1px solid #e1e8f2;
  border-radius: 10px;
  background: #ffffff;
  box-shadow: 0 12px 34px rgba(16, 48, 86, 0.06);
  overflow: hidden;
}

.faq-panel h3 {
  margin: 0;
  padding: 22px 24px;
  border-bottom: 1px solid #edf2f7;
  color: #061637;
  font-size: 20px;
  line-height: 1.25;
  font-weight: 900;
}

.faq-list details {
  border-bottom: 1px solid #edf2f7;
}

.faq-list details:last-child {
  border-bottom: 0;
}

.faq-list summary {
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 0 24px;
  color: #10213a;
  font-size: 15px;
  font-weight: 800;
  list-style: none;
  cursor: pointer;
}

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

.faq-list summary::after {
  content: "v";
  color: var(--blue);
  font-size: 14px;
  font-weight: 900;
}

.faq-list details[open] summary::after {
  transform: rotate(180deg);
}

.faq-list p {
  margin: 0;
  padding: 0 24px 20px;
  color: #536176;
  font-size: 14px;
  line-height: 1.65;
}

.faq-cta {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 20px;
  align-items: center;
  margin-bottom: 52px;
  padding: 24px 28px;
  border: 1px solid #dfe7f2;
  border-radius: 8px;
  background: linear-gradient(100deg, #f4f8ff 0%, #eef5ff 100%);
}

.faq-cta-icon {
  width: 64px;
  height: 64px;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  background: #e3f0ff;
  color: var(--blue);
}

.faq-cta-icon svg {
  width: 34px;
  height: 34px;
}

.faq-cta h2 {
  margin: 0 0 4px;
  color: #061637;
  font-size: 22px;
  line-height: 1.25;
  font-weight: 900;
}

.faq-cta p {
  margin: 0;
  color: #34445c;
  font-size: 15px;
}

.tool-page {
  background:
    radial-gradient(circle at 79% 11%, rgba(8, 105, 236, 0.1), transparent 32%),
    linear-gradient(180deg, #f9fcff 0%, #ffffff 42%);
}

.tool-hero {
  padding: 34px 0 42px;
}

.tool-breadcrumb {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 40px;
  color: #17243b;
  font-size: 18px;
  font-weight: 700;
}

.tool-breadcrumb a,
.tool-breadcrumb strong {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.tool-breadcrumb svg {
  width: 18px;
  height: 18px;
}

.tool-breadcrumb svg *,
.tool-trust-badge svg *,
.tool-search button svg *,
.tool-safe-line svg *,
.tool-report-card svg *,
.tool-safe-card svg *,
.tool-feature-icon svg *,
.tool-points li::before {
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.tool-breadcrumb strong,
.tool-hero-copy strong {
  color: #083f9e;
}

.tool-hero-grid {
  display: grid;
  grid-template-columns: minmax(430px, 0.95fr) minmax(520px, 1.05fr);
  gap: 50px;
  align-items: center;
}

.tool-trust-badge {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 24px;
  padding: 8px 14px;
  border-radius: 999px;
  background: #edf5ff;
  color: #083f9e;
  font-size: 16px;
  font-weight: 900;
}

.tool-trust-badge svg {
  width: 21px;
  height: 21px;
}

.tool-hero-copy h1 {
  margin: 0 0 24px;
  color: #061637;
  font-size:55px;
  line-height: 1.04;
  font-weight: 900;
}

.tool-hero-copy p {
  max-width: 630px;
  margin: 0 0 26px;
  color: #17243b;
  font-size: 21px;
  line-height: 1.55;
}

.tool-points {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  margin: 0 0 32px;
  padding: 0;
  list-style: none;
}

.tool-points li {
  position: relative;
  padding-left: 30px;
  color: #17243b;
  font-size: 16px;
  font-weight: 800;
}

.tool-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #0869ec;
}

.tool-points li::after {
  content: "";
  position: absolute;
  left: 6px;
  top: 7px;
  width: 8px;
  height: 4px;
  border-left: 2px solid #ffffff;
  border-bottom: 2px solid #ffffff;
  transform: rotate(-45deg);
}

.tool-search {
  display: grid;
  grid-template-columns: 92px minmax(240px, 1fr) 220px;
  width: min(100%, 700px);
  min-height: 76px;
  margin-bottom: 22px;
}

.tool-country,
.tool-reg-field,
.tool-search button {
  border: 1px solid #d7e0ec;
  background: #ffffff;
}

.tool-country {
  display: grid;
  place-items: center;
  align-content: center;
  gap: 2px;
  border-radius: 8px 0 0 8px;
}

.tool-country img {
  width: 32px;
  height: 32px;
}

.tool-country span {
  color: #061637;
  font-size: 17px;
  font-weight: 900;
}

.tool-reg-field {
  display: block;
  border-left: 0;
}

.tool-reg-field span {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}

.tool-reg-field input {
  width: 100%;
  height: 100%;
  border: 0;
  padding: 0 26px;
  color: #17243b;
  font: inherit;
  font-size: 23px;
  outline: 0;
}

.tool-reg-field input::placeholder {
  color: #8a96a8;
}

.tool-search button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  border: 0;
  border-radius: 8px;
  background: #0869ec;
  color: #ffffff;
  font: inherit;
  font-size: 23px;
  font-weight: 900;
  cursor: pointer;
  box-shadow: 0 14px 30px rgba(8, 105, 236, 0.25);
}

.tool-search button svg {
  width: 30px;
  height: 30px;
}

.tool-safe-line,
.tool-rating {
  display: flex;
  align-items: center;
  gap: 17px;
  flex-wrap: wrap;
  color: #17243b;
  font-size: 16px;
}

.tool-safe-line {
  justify-content: center;
  width: min(100%, 700px);
  margin-bottom: 28px;
}

.tool-safe-line span {
  display: inline-flex;
  align-items: center;
  gap: 9px;
}

.tool-safe-line svg {
  width: 18px;
  height: 18px;
  color: #17243b;
}

.tool-rating {
  gap: 14px;
}

.tool-stars {
  display: inline-flex;
  padding: 2px 5px;
  background: #00b67a;
  color: #ffffff;
  font-size: 20px;
  line-height: 1;
}

.tool-rating-sep {
  width: 1px;
  height: 27px;
  background: #d8e0ec;
}

.trustpilot-star {
  color: #00a878;
}

.tool-hero-art {
  position: relative;
  min-height: 535px;
}

.tool-art-circle {
  position: absolute;
  inset: 8px 50px auto auto;
  width: 470px;
  height: 470px;
  border-radius: 50%;
  background: linear-gradient(135deg, #e8f2ff 0%, #dcecff 100%);
}

.tool-car-img {
  position: absolute;
  left: 10px;
  bottom: 70px;
  width: 550px;
  max-width: 82%;
  z-index: 1;
}

.tool-report-card {
  position: absolute;
  right: 0;
  top: 72px;
  z-index: 2;
  width: 385px;
  padding: 30px;
  border: 1px solid rgba(220, 228, 240, 0.85);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 24px 70px rgba(22, 48, 88, 0.16);
}

.tool-report-card h2 {
  margin: 0 74px 22px 0;
  color: #061637;
  font-size: 20px;
  font-weight: 900;
}

.tool-report-status {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 18px;
}

.tool-report-status strong {
  padding: 8px 18px;
  border-radius: 8px;
  background: #19b766;
  color: #ffffff;
  font-size: 18px;
}

.tool-report-status span {
  color: #17243b;
  font-size: 15px;
}

.tool-report-card dl {
  margin: 0 0 18px;
}

.tool-report-card dl div {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  padding: 14px 0;
  border-top: 1px solid #edf1f6;
}

.tool-report-card dt,
.tool-report-card dd {
  margin: 0;
  color: #17243b;
  font-size: 15px;
  font-weight: 800;
}

.tool-report-card dd {
  color: #16884e;
}

.tool-report-card a {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 100%;
  border: 1px solid #e0e6ef;
  border-radius: 8px;
  color: #083f9e;
  font-size: 17px;
  font-weight: 900;
}

.tool-report-card a svg {
  width: 23px;
  height: 23px;
}

.tool-shield {
  position: absolute;
  right: 22px;
  top: 18px;
  width: 76px;
  height: 94px;
  color: #0869ec;
}

.tool-safe-card {
  position: absolute;
  right: 92px;
  bottom: 0;
  z-index: 3;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  align-items: center;
  width: 285px;
  padding: 16px 20px;
  border: 1px solid #e0e6ef;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 18px 40px rgba(22, 48, 88, 0.12);
}

.tool-safe-card svg {
  width: 28px;
  height: 28px;
  color: #17243b;
}

.tool-safe-card strong,
.tool-safe-card span {
  display: block;
  color: #061637;
  font-size: 14px;
}

.tool-safe-card span {
  color: #536176;
}

.tool-feature-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 30px;
  border: 1px solid #e4ebf4;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 12px 36px rgba(19, 52, 92, 0.06);
}

.tool-feature-strip article {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  align-items: center;
  padding: 26px 34px;
  border-left: 1px solid #e4ebf4;
}

.tool-feature-strip article:first-child {
  border-left: 0;
}

.tool-feature-icon {
  width: 72px;
  height: 72px;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  background: #edf5ff;
  color: #0869ec;
}

.tool-feature-icon svg,
.tool-feature-icon img {
  width: 40px;
  height: 40px;
}

.tool-feature-strip h2 {
  margin: 0 0 6px;
  color: #061637;
  font-size: 18px;
  line-height: 1.25;
  font-weight: 900;
}

.tool-feature-strip p {
  margin: 0;
  color: #34445c;
  font-size: 15px;
  line-height: 1.5;
}

.tool-content {
  padding: 28px 0 58px;
  background: #ffffff;
}

.tool-content-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 26px;
}

.tool-content article {
  border: 1px solid #e4ebf4;
  border-radius: 10px;
  padding: 28px;
  background: #ffffff;
}

.tool-content h2 {
  margin: 0 0 12px;
  color: #061637;
  font-size: 25px;
  line-height: 1.25;
  font-weight: 900;
}

.tool-content p {
  margin: 0 0 14px;
  color: #34445c;
  font-size: 16px;
  line-height: 1.65;
}

.tool-content p:last-child {
  margin-bottom: 0;
}

.hc-page {
  background: #ffffff;
}

.hc-hero {
  position: relative;
  min-height: 352px;
  padding: 34px 0 54px;
  overflow: hidden;
  background:
    radial-gradient(circle at 78% 32%, rgba(25, 126, 223, 0.26), transparent 30%),
    linear-gradient(115deg, #061b34 0%, #062344 54%, #06172e 100%);
  color: #ffffff;
}

.hc-hero::after {
  content: "";
  position: absolute;
  left: -4%;
  right: -4%;
  bottom: -35px;
  height: 70px;
  border-radius: 50% 50% 0 0;
  background: #f6faff;
}

.hc-hero-inner {
  position: relative;
  z-index: 1;
}

.hc-breadcrumb {
  color: rgba(255, 255, 255, 0.72);
}

.hc-breadcrumb a {
  color: #64b5ff;
}

.hc-hero-grid {
  display: grid;
  grid-template-columns: minmax(360px, 0.95fr) minmax(420px, 1.05fr);
  gap: 40px;
  align-items: center;
}

.hc-hero-copy h1 {
  margin: 0 0 12px;
  color: #ffffff;
  font-size: clamp(44px, 5vw, 62px);
  line-height: 1;
  font-weight: 900;
}

.hc-hero-copy p {
  max-width: 560px;
  margin: 0 0 26px;
  color: #d8e7f7;
  font-size: 17px;
  line-height: 1.55;
}

.hc-search {
  display: grid;
  grid-template-columns: 1fr 64px;
  width: min(100%, 560px);
  min-height: 54px;
  overflow: hidden;
  border: 1px solid rgba(223, 232, 243, 0.78);
  border-radius: 6px;
  background: #ffffff;
  box-shadow: 0 16px 32px rgba(0, 10, 28, 0.18);
}

.hc-search label {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.hc-search input {
  min-width: 0;
  border: 0;
  padding: 0 20px;
  color: #13243d;
  font: inherit;
  font-size: 15px;
  outline: 0;
}

.hc-search button {
  display: grid;
  place-items: center;
  border: 0;
  background: #0869ec;
  color: #ffffff;
  cursor: pointer;
}

.hc-search button svg {
  width: 24px;
  height: 24px;
}

.hc-search button svg *,
.hc-benefit-icon svg *,
.hc-topic-icon svg *,
.hc-cta-icon svg *,
.quick-icon svg *,
.hc-trust-icon svg * {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hc-hero-art {
  min-height: 238px;
  display: grid;
  place-items: center end;
}

.hc-hero-art img {
  width: min(100%, 520px);
  height: auto;
}

.hc-benefits-wrap {
  position: relative;
  z-index: 2;
  margin-top: -1px;
  background: #f6faff;
}

.hc-benefits {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 34px;
  padding: 31px 0;
}

.hc-benefits article {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 16px;
  align-items: center;
}

.hc-benefit-icon {
  width: 54px;
  height: 54px;
  display: inline-grid;
  place-items: center;
  border: 1px solid #dce8f5;
  border-radius: 50%;
  background: #ffffff;
  color: var(--blue);
  box-shadow: 0 8px 18px rgba(16, 48, 84, 0.08);
}

.hc-benefit-icon svg {
  width: 27px;
  height: 27px;
}

.hc-benefits h2 {
  margin: 0 0 3px;
  color: #081734;
  font-size: 14px;
  line-height: 1.25;
  font-weight: 900;
}

.hc-benefits p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.hc-topics-section {
  padding: 34px 0 28px;
}

.hc-heading {
  margin-bottom: 26px;
}

.hc-topic-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.hc-topic-card {
  min-height: 285px;
  display: grid;
  justify-items: center;
  align-content: start;
  border: 1px solid #dfe6ef;
  border-radius: 8px;
  background: #ffffff;
  padding: 30px 22px 24px;
  text-align: center;
  box-shadow: 0 8px 22px rgba(17, 42, 82, 0.04);
}

.hc-topic-icon {
  width: 82px;
  height: 82px;
  display: inline-grid;
  place-items: center;
  margin-bottom: 18px;
  border-radius: 50%;
  color: var(--blue);
}

.hc-topic-icon svg {
  width: 42px;
  height: 42px;
}

.pink-soft {
  background: #ffedf4;
  color: #e43f79;
}

.teal-soft {
  background: #e7fbf8;
  color: #17a998;
}

.orange-soft {
  background: #fff0e3;
  color: #e86f1c;
}

.hc-topic-card h3 {
  margin: 0 0 11px;
  color: #081734;
  font-size: 18px;
  line-height: 1.25;
  font-weight: 900;
}

.hc-topic-card p {
  min-height: 75px;
  margin: 0 0 14px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}

.hc-topic-card a {
  color: var(--blue);
  font-size: 14px;
  font-weight: 900;
}

.hc-contact-cta {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 22px;
  align-items: center;
  margin-bottom: 32px;
  padding: 24px 28px;
  border: 1px solid #dfe6ef;
  border-radius: 8px;
  background: linear-gradient(100deg, #f6f9ff 0%, #eef5ff 100%);
}

.hc-cta-icon {
  width: 64px;
  height: 64px;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  background: #e8f3ff;
  color: var(--blue);
}

.hc-cta-icon svg {
  width: 34px;
  height: 34px;
}

.hc-contact-cta h2 {
  margin: 0 0 3px;
  color: #081734;
  font-size: 21px;
  line-height: 1.25;
  font-weight: 900;
}

.hc-contact-cta p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
}

.hc-popular-section {
  padding-bottom: 30px;
}

.hc-article-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 42px;
}

.hc-article-list {
  border: 1px solid #dfe6ef;
  border-radius: 7px;
  overflow: hidden;
  background: #ffffff;
}

.hc-article-list a {
  min-height: 42px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 0 18px;
  border-top: 1px solid #edf1f6;
  color: #10213a;
  font-size: 14px;
  font-weight: 700;
}

.hc-article-list a:first-child {
  border-top: 0;
}

.hc-article-list span {
  color: var(--blue);
  font-size: 22px;
  line-height: 1;
}

.hc-quick-links {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 36px;
  align-items: center;
  padding: 28px 0 36px;
  border-top: 1px solid #e4ebf4;
}

.hc-quick-links h2 {
  margin: 0;
  color: #081734;
  font-size: 21px;
  font-weight: 900;
}

.hc-quick-links nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
}

.hc-quick-links a {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: #12233d;
  font-size: 13px;
  font-weight: 800;
  white-space: nowrap;
}

.quick-icon {
  width: 28px;
  height: 28px;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  color: var(--blue);
}

.quick-icon svg {
  width: 18px;
  height: 18px;
}

.hc-trust-wrap {
  padding: 0 0 0;
  background: #f2f7ff;
}

.hc-trust-band {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 30px;
  align-items: center;
  padding: 34px 0;
}

.hc-trust-copy {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 22px;
  align-items: center;
}

.hc-trust-icon {
  width: 70px;
  height: 70px;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  background: #e4f0ff;
  color: var(--blue);
}

.hc-trust-icon svg {
  width: 40px;
  height: 40px;
}

.hc-trust-copy h2 {
  margin: 0 0 6px;
  color: #081734;
  font-size: 20px;
  line-height: 1.25;
  font-weight: 900;
}

.hc-trust-copy p {
  max-width: 600px;
  margin: 0;
  color: #34445c;
  font-size: 14px;
  line-height: 1.5;
}

.hc-rating {
  min-height: 90px;
  display: grid;
  grid-template-columns: auto auto 1fr;
  gap: 14px;
  align-items: center;
  padding-left: 42px;
  border-left: 1px solid #d6e1ee;
}

.hc-rating strong {
  color: #081734;
  font-size: 15px;
}

.rating-stars {
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  padding: 0 8px;
  border-radius: 3px;
  background: #00b67a;
  color: #ffffff;
  font-size: 18px;
  line-height: 1;
}

.hc-rating span:last-child {
  color: #536176;
  font-size: 15px;
  font-weight: 700;
}

.hc-footer .footer-main {
  padding-top: 46px;
}

.hc-footer-bottom {
  grid-template-columns: 1fr auto;
  padding-top: 24px;
}

.hc-footer-bottom p:last-child {
  text-align: right;
}

@media (max-width: 1080px) {
  .nav-bar {
    gap: 18px;
  }

  .main-nav {
    gap: 18px;
  }

  .brand-text {
    font-size: 22px;
  }

  .hero-grid {
    grid-template-columns: minmax(300px, 0.9fr) minmax(360px, 1.1fr);
  }

  .contact-hero-grid {
    grid-template-columns: minmax(300px, 0.95fr) minmax(360px, 1.05fr);
    gap: 28px;
  }

  .support-grid {
    gap: 20px;
  }

  .hc-hero-grid {
    grid-template-columns: minmax(320px, 0.95fr) minmax(340px, 1.05fr);
  }

  .hc-topic-grid {
    gap: 18px;
  }

  .hc-quick-links {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .tool-hero-grid {
    grid-template-columns: minmax(380px, 0.95fr) minmax(430px, 1.05fr);
    gap: 26px;
  }

  .tool-hero-copy h1 {
    font-size: 62px;
  }

  .tool-search {
    grid-template-columns: 82px minmax(210px, 1fr) 190px;
  }

  .tool-search button,
  .tool-reg-field input {
    font-size: 20px;
  }

  .tool-feature-strip article {
    padding: 24px 20px;
  }
}

@media (max-width: 940px) {
  .nav-bar {
    min-height: 68px;
    flex-wrap: wrap;
    padding: 14px 0;
  }

  .nav-toggle-label {
    width: 40px;
    height: 36px;
    display: inline-grid;
    place-items: center;
    gap: 5px;
    margin-left: auto;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 5px;
    cursor: pointer;
  }

  .nav-toggle-label span {
    width: 19px;
    height: 2px;
    border-radius: 2px;
    background: #ffffff;
  }

  .main-nav,
  .nav-action {
    display: none;
  }

  .nav-toggle:checked ~ .main-nav,
  .nav-toggle:checked ~ .nav-action {
    display: flex;
  }

  .main-nav {
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    order: 4;
    padding-top: 8px;
  }

  .nav-dropdown {
    width: 100%;
    display: block;
  }

  .nav-more {
    min-height: 28px;
  }

  .nav-menu {
    position: static;
    width: 100%;
    min-width: 0;
    display: none;
    margin-top: 8px;
    border-color: rgba(255, 255, 255, 0.14);
    background: rgba(255, 255, 255, 0.06);
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    transform: none;
  }

  .nav-menu::before {
    display: none;
  }

  .nav-dropdown:hover .nav-menu,
  .nav-dropdown:focus-within .nav-menu {
    display: grid;
  }

  .main-nav .nav-menu a {
    color: rgba(255, 255, 255, 0.92);
  }

  .main-nav .nav-menu a:hover,
  .main-nav .nav-menu a:focus {
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff;
  }

  .nav-action {
    order: 5;
    margin-left: 0;
  }

  .hero-grid,
  .split-cards,
  .contact-hero-grid,
  .contact-content,
  .hc-hero-grid,
  .hc-trust-band,
  .tool-hero-grid,
  .tool-content-grid {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: 270px;
  }

  .trust-points,
  .value-grid,
  .footer-benefits,
  .support-grid,
  .hc-benefits,
  .hc-topic-grid,
  .tool-feature-strip {
    grid-template-columns: repeat(2, 1fr);
  }

  .tool-hero-art {
    min-height: 500px;
  }

  .tool-car-img {
    left: 0;
  }

  .tool-feature-strip article:nth-child(odd) {
    border-left: 0;
  }

  .tool-feature-strip article:nth-child(n + 3) {
    border-top: 1px solid #e4ebf4;
  }

  .process-steps {
    grid-template-columns: repeat(3, 1fr);
  }

  .process-steps::before {
    display: none;
  }

  .resource-band {
    grid-template-columns: 1fr 1fr;
    gap: 18px;
  }

  .resource-copy {
    grid-column: 1 / -1;
    padding-right: 0;
  }

  .resource-stat {
    border-left: 0;
    border-top: 1px solid #d8e0ed;
  }

  .footer-main,
  .footer-bottom {
    grid-template-columns: 1fr;
  }

  .footer-links {
    grid-template-columns: repeat(3, 1fr);
  }

  .payment-row {
    justify-content: flex-start;
  }

  .contact-hero-art {
    min-height: auto;
  }

  .hc-hero-art {
    display: none;
  }

  .hc-rating {
    padding-left: 0;
    border-left: 0;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(100% - 28px, 1120px);
  }

  .brand-mark {
    width: 48px;
  }

  .brand-text {
    font-size: 20px;
  }

  .brand-text span {
    font-size: 12px;
  }

  .hero-section {
    padding-top: 24px;
  }

  .contact-hero {
    padding-top: 24px;
  }

  .hero-copy h1 {
    font-size: 44px;
  }

  .contact-hero-copy h1 {
    font-size: 44px;
  }

  .hero-copy p,
  .hero-copy .lead,
  .contact-hero-copy p {
    font-size: 16px;
  }

  .hero-visual {
    min-height: 315px;
    align-items: flex-start;
  }

  .report-card {
    right: 50%;
    bottom: 0;
    transform: translateX(50%);
  }

  .trust-points,
  .value-grid,
  .footer-benefits,
  .process-steps,
  .resource-band,
  .support-grid,
  .field-row,
  .faq-grid,
  .hc-benefits,
  .hc-topic-grid,
  .hc-article-grid,
  .tool-feature-strip,
  .tool-content-grid {
    grid-template-columns: 1fr;
  }

  .wide-card {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 24px;
    text-align: left;
  }

  .info-card h2,
  .section-heading h2,
  .resource-copy h2 {
    font-size: 23px;
  }

  .contact-band {
    grid-template-columns: 1fr;
    justify-items: start;
  }

  .hc-hero {
    min-height: auto;
    padding-bottom: 48px;
  }

  .hc-hero-copy h1 {
    font-size: 44px;
  }

  .hc-search {
    grid-template-columns: 1fr 56px;
  }

  .hc-contact-cta,
  .hc-trust-copy,
  .hc-rating,
  .hc-footer-bottom {
    grid-template-columns: 1fr;
  }

  .hc-contact-cta {
    justify-items: start;
  }

  .hc-benefits article {
    align-items: start;
  }

  .hc-topic-card {
    min-height: auto;
  }

  .hc-topic-card p {
    min-height: auto;
  }

  .hc-quick-links nav {
    justify-content: flex-start;
  }

  .hc-footer-bottom p:last-child {
    text-align: left;
  }

  .tool-hero {
    padding-top: 24px;
  }

  .tool-breadcrumb {
    gap: 9px;
    margin-bottom: 28px;
    font-size: 14px;
    flex-wrap: wrap;
  }

  .tool-hero-copy h1 {
    font-size: 46px;
  }

  .tool-hero-copy p {
    font-size: 17px;
  }

  .tool-points {
    gap: 14px;
  }

  .tool-search {
    grid-template-columns: 74px 1fr;
  }

  .tool-search button {
    grid-column: 1 / -1;
    min-height: 58px;
  }

  .tool-country {
    border-radius: 8px 0 0 0;
  }

  .tool-reg-field {
    border-radius: 0 8px 0 0;
  }

  .tool-reg-field input {
    font-size: 17px;
    padding: 0 16px;
  }

  .tool-safe-line,
  .tool-rating {
    justify-content: flex-start;
  }

  .tool-hero-art {
    /*min-height: 650px;*/
  }

  .tool-art-circle {
    width: 330px;
    height: 330px;
    right: 0;
  }

  .tool-car-img {
    bottom: 230px;
    max-width: 100%;
  }

  .tool-report-card {
    top: 235px;
    right: 0;
    left: 0;
    width: auto;
    padding: 24px;
  }

  .tool-safe-card {
    right: 0;
    left: 0;
    width: auto;
  }

  .tool-feature-strip article {
    border-left: 0;
    border-top: 1px solid #e4ebf4;
  }

  .tool-feature-strip article:first-child {
    border-top: 0;
  }

  .contact-panel {
    padding: 22px 18px;
  }

  .support-grid article {
    align-items: start;
  }

  .button-primary {
    width: 100%;
  }

  .footer-benefits article {
    border-right: 0;
  }

  .footer-links {
    grid-template-columns: repeat(2, 1fr);
  }

  .pay-card {
    min-width: 64px;
  }
}

@media (max-width: 420px) {
  .brand-text {
    white-space: normal;
    line-height: 1.05;
  }

  .footer-links {
    grid-template-columns: 1fr;
  }

  .value-card {
    grid-template-columns: 44px 1fr;
    padding: 18px;
  }
}

/* Tool page hero screenshot pass */
.tool-hero > .container,
.tool-content > .container {
  width: min(calc(100% - 72px), 1480px);
  max-width: none;
}

.tool-hero {
  padding: 36px 0 32px;
  overflow: hidden;
}

.tool-breadcrumb {
  margin-bottom: 34px;
  font-size: 17px;
}

.tool-hero-grid {
  grid-template-columns: minmax(560px, 0.96fr) minmax(640px, 1.04fr);
  gap: 28px;
}

.tool-trust-badge {
  margin-bottom: 22px;
  padding: 8px 14px;
}

.tool-hero-copy h1 {
  margin-bottom: 26px;
  font-size: 86px;
  line-height: 0.98;
  letter-spacing: 0;
}

.tool-hero-copy p {
  max-width: 660px;
  margin-bottom: 28px;
  font-size: 20px;
  line-height: 1.55;
}

.tool-points {
  gap: 28px;
  margin-bottom: 34px;
}

.tool-search {
  grid-template-columns: 84px minmax(330px, 1fr) 222px;
  width: 700px;
  max-width: 100%;
  min-height: 74px;
}

.tool-country {
  border-radius: 8px 0 0 8px;
}

.tool-reg-field {
  border-left: 0;
  border-radius: 0 8px 8px 0;
}

.tool-search button {
  width: calc(100% - 14px);
  margin-left: 14px;
}

.tool-safe-line {
  width: 700px;
  max-width: 100%;
  justify-content: center;
}

.tool-stars {
  display: inline-flex;
  gap: 3px;
  padding: 0;
  background: transparent;
}

.tool-stars span {
  position: relative;
  width: 25px;
  height: 25px;
  display: inline-grid;
  place-items: center;
  border-radius: 2px;
  background: #00b67a;
}

.tool-stars span::before {
  content: "*";
  color: #ffffff;
  font-size: 19px;
  font-weight: 900;
  line-height: 1;
}

.trustpilot-star {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.trustpilot-mark {
  width: 23px;
  height: 23px;
  display: inline-block;
  background: #00a878;
  clip-path: polygon(50% 0, 61% 34%, 98% 35%, 68% 56%, 79% 91%, 50% 69%, 21% 91%, 32% 56%, 2% 35%, 39% 34%);
}

.tool-hero-art {
  min-height: 560px;
}

.tool-hero-art::before {
  content: "";
  position: absolute;
  left: 34px;
  top: 84px;
  width: 142px;
  height: 112px;
  background-image: radial-gradient(#dce5f1 2px, transparent 2px);
  background-size: 16px 16px;
  opacity: 0.9;
}

.tool-art-circle {
  top: 8px;
  right: 88px;
  width: 590px;
  height: 590px;
  background: linear-gradient(135deg, #edf6ff 0%, #dfeeff 100%);
}

.tool-car-img {
  left: 0;
  bottom: 48px;
  width: 660px;
  max-width: 88%;
}

.tool-report-card {
  top: 70px;
  right: 0;
  width: 394px;
  padding: 30px;
  border-radius: 22px;
}

.tool-safe-card {
  right: 206px;
  bottom: 6px;
  width: 316px;
}

.tool-feature-strip {
  margin: 28px auto 0;
  max-width: 1360px;
}

.tool-feature-strip article {
  padding: 28px 42px;
}

@media (max-width: 1280px) {
  .tool-hero > .container,
  .tool-content > .container {
    width: min(calc(100% - 48px), 1480px);
  }

  .tool-hero-grid {
    grid-template-columns: minmax(500px, 0.95fr) minmax(540px, 1.05fr);
    gap: 18px;
  }

  .tool-hero-copy h1 {
    font-size: 72px;
  }

  .tool-art-circle {
    right: 26px;
    width: 520px;
    height: 520px;
  }

  .tool-car-img {
    width: 590px;
  }

  .tool-report-card {
    width: 358px;
  }

  .tool-safe-card {
    right: 132px;
  }

  .tool-feature-strip article {
    padding: 24px 26px;
  }
}

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

  .tool-hero-copy h1 {
    font-size: 64px;
  }

  .tool-hero-art {
    min-height: 560px;
  }

  .tool-art-circle {
    right: 80px;
  }

  .tool-car-img {
    left: 4%;
    width: 610px;
  }

  .tool-report-card {
    right: 5%;
  }
}

@media (max-width: 720px) {
  .tool-hero > .container,
  .tool-content > .container {
    width: min(calc(100% - 28px), 1480px);
  }

  .tool-hero-copy h1 {
    font-size: 46px;
  }

  .tool-search {
    grid-template-columns: 74px 1fr;
    width: 100%;
  }

  .tool-country {
    border-radius: 8px 0 0 0;
  }

  .tool-reg-field {
    border-radius: 0 8px 0 0;
  }

  .tool-search button {
    grid-column: 1 / -1;
    width: 100%;
    min-height: 58px;
    margin-left: 0;
    border-radius: 0 0 8px 8px;
  }

  .tool-safe-line,
  .tool-rating {
    justify-content: flex-start;
  }

  .tool-hero-art {
    min-height: 640px;
  }

  .tool-art-circle {
    width: 330px;
    height: 330px;
    right: 0;
  }

  .tool-car-img {
    left: 0;
    bottom: 230px;
    width: 100%;
    max-width: 100%;
  }

  .tool-report-card {
    top: 235px;
    right: 0;
    left: 0;
    width: auto;
    padding: 24px;
  }

  .tool-safe-card {
    right: 0;
    left: 0;
    width: auto;
  }

  .tool-feature-strip article {
    padding: 24px 20px;
  }
}

/* Dark tool hero */
.tool-page {
  background: #ffffff;
}

.tool-hero {
  position: relative;
  isolation: isolate;
  padding: 36px 0 42px;
  overflow: hidden;
  background:
    radial-gradient(circle at 78% 43%, rgba(12, 87, 169, 0.34), transparent 36%),
    radial-gradient(circle at 28% 6%, rgba(44, 118, 211, 0.18), transparent 28%),
    linear-gradient(135deg, #0b2036 0%, #051625 46%, #020b14 100%);
  color: #ffffff;
}

.tool-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.04), transparent 28%, transparent 72%, rgba(255, 255, 255, 0.035)),
    radial-gradient(circle at 72% 58%, rgba(5, 18, 30, 0), rgba(5, 18, 30, 0.74) 58%);
}

.tool-hero::after {
  content: "";
  position: absolute;
  right: 126px;
  top: 130px;
  z-index: -1;
  width: 650px;
  height: 650px;
  border: 1px solid rgba(151, 190, 232, 0.12);
  border-radius: 50%;
  box-shadow:
    0 0 0 52px rgba(151, 190, 232, 0.06),
    0 0 0 104px rgba(151, 190, 232, 0.04);
}

.tool-hero > .container,
.tool-content > .container {
  width: min(calc(100% - 112px), 1480px);
  max-width: none;
}

.tool-breadcrumb {
  margin-bottom: 42px;
  color: rgba(255, 255, 255, 0.9);
}

.tool-breadcrumb a {
  color: rgba(255, 255, 255, 0.92);
}

.tool-breadcrumb strong,
.tool-hero-copy strong {
  color: #2f82ff;
}

.tool-hero-grid {
  grid-template-columns: minmax(560px, 0.95fr) minmax(650px, 1.05fr);
  gap: 26px;
}

.tool-trust-badge {
  border: 1px solid rgba(108, 151, 202, 0.28);
  background: rgba(26, 55, 84, 0.72);
  color: #ffffff;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.tool-trust-badge svg {
  color: #2378ff;
}

.tool-hero-copy h1 {
  color: #ffffff;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.18);
}

.tool-hero-copy p {
  color: rgba(255, 255, 255, 0.92);
}

.tool-points li {
  color: rgba(255, 255, 255, 0.94);
}

.tool-search {
  grid-template-columns: 82px minmax(315px, 1fr) 204px;
  width: 660px;
  min-height: 70px;
}

.tool-country {
  border-color: rgba(117, 159, 207, 0.48);
  background: #071a2d;
  color: #ffffff;
}

.tool-country span {
  color: #ffffff;
}

.tool-reg-field {
  border-color: rgba(117, 159, 207, 0.48);
  background: #ffffff;
}

.tool-search button {
  background: linear-gradient(135deg, #0a78ff, #034de6);
  box-shadow: 0 18px 34px rgba(5, 100, 238, 0.34);
}

.tool-safe-line,
.tool-rating {
  color: rgba(255, 255, 255, 0.9);
}

.tool-safe-line {
  width: 660px;
}

.tool-safe-line svg {
  color: rgba(255, 255, 255, 0.9);
}

.tool-rating-sep {
  background: rgba(255, 255, 255, 0.22);
}

.trustpilot-star {
  color: #ffffff;
}

.tool-hero-art {
  min-height: 575px;
}

.tool-hero-art::before {
  left: 28px;
  top: 122px;
  background-image: radial-gradient(rgba(121, 166, 218, 0.22) 2px, transparent 2px);
  opacity: 1;
}

.tool-art-circle {
  display: none;
}

.tool-car-img {
  left: -10px;
  bottom: 48px;
  z-index: 1;
  width: 690px;
  max-width: 88%;
}

.tool-report-card {
  top: 26px;
  right: 0;
  z-index: 3;
  width: 405px;
  border: 1px solid rgba(110, 153, 203, 0.32);
  background: rgba(8, 24, 40, 0.9);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.34);
  backdrop-filter: blur(10px);
}

.tool-report-card h2,
.tool-report-card dt {
  color: #ffffff;
}

.tool-report-status span,
.tool-report-card dd {
  color: rgba(255, 255, 255, 0.9);
}

.tool-report-card dl div {
  padding: 16px 0;
  border-top-color: rgba(129, 167, 211, 0.16);
}

.tool-report-card dt {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.tool-report-card dt::before {
  content: "";
  width: 26px;
  height: 26px;
  flex: 0 0 auto;
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 50%, rgba(46, 240, 166, 0.55), transparent 34%),
    rgba(35, 120, 255, 0.18);
  box-shadow: inset 0 0 0 1px rgba(59, 139, 255, 0.36);
}

.tool-report-card dl div:first-child dd {
  color: #2ee58e;
}

.tool-report-card a {
  border-color: rgba(129, 167, 211, 0.2);
  background: rgba(3, 14, 25, 0.2);
  color: #3d87ff;
}

.tool-shield {
  color: #0b74ff;
}

.tool-shield svg path:first-child {
  fill: #0b74ff;
  stroke: #0b74ff;
}

.tool-shield svg path:last-child {
  stroke: #ffffff;
}

.tool-safe-card {
  right: 236px;
  bottom: 4px;
  border-color: rgba(116, 158, 207, 0.28);
  background: rgba(8, 24, 40, 0.88);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(10px);
}

.tool-safe-card svg,
.tool-safe-card strong {
  color: #ffffff;
}

.tool-safe-card span {
  color: rgba(255, 255, 255, 0.78);
}

.tool-feature-strip {
  margin-top: 34px;
  border-color: rgba(116, 158, 207, 0.2);
  background: rgba(8, 24, 40, 0.58);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04), 0 20px 60px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(6px);
}

.tool-feature-strip article {
  border-left-color: rgba(116, 158, 207, 0.18);
}

.tool-feature-icon {
  background: rgba(34, 86, 148, 0.28);
  color: #0b74ff;
}

.tool-feature-strip h2 {
  color: #ffffff;
}

.tool-feature-strip p {
  color: rgba(255, 255, 255, 0.82);
}

@media (max-width: 1280px) {
  .tool-hero > .container,
  .tool-content > .container {
    width: min(calc(100% - 56px), 1480px);
  }

  .tool-hero-grid {
    grid-template-columns: minmax(500px, 0.95fr) minmax(540px, 1.05fr);
  }

  .tool-hero-copy h1 {
    font-size: 72px;
  }

  .tool-search,
  .tool-safe-line {
    width: 620px;
  }

  .tool-car-img {
    width: 600px;
  }

  .tool-report-card {
    width: 360px;
  }

  .tool-safe-card {
    right: 118px;
  }
}

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

  .tool-hero-copy h1 {
    font-size: 64px;
  }

  .tool-hero-art {
    min-height: 570px;
  }

  .tool-car-img {
    left: 4%;
    width: 610px;
  }

  .tool-report-card {
    right: 5%;
  }

  .tool-hero::after {
    right: 20px;
  }
}

@media (max-width: 720px) {
  .tool-hero {
    padding-top: 24px;
  }

  .tool-hero > .container,
  .tool-content > .container {
    width: min(calc(100% - 28px), 1480px);
  }

  .tool-breadcrumb {
    gap: 9px;
    margin-bottom: 28px;
    font-size: 14px;
    flex-wrap: wrap;
  }

  .tool-hero-copy h1 {
    font-size: 46px;
  }

  .tool-hero-copy p {
    font-size: 17px;
  }

  .tool-points {
    gap: 14px;
  }

  .tool-search {
    grid-template-columns: 74px 1fr;
    width: 100%;
  }

  .tool-search button {
    grid-column: 1 / -1;
    width: 100%;
    min-height: 58px;
    margin-left: 0;
    border-radius: 0 0 8px 8px;
  }

  .tool-country {
    border-radius: 8px 0 0 0;
  }

  .tool-reg-field {
    border-radius: 0 8px 0 0;
  }

  .tool-safe-line,
  .tool-rating {
    justify-content: flex-start;
  }

  .tool-hero-art {
    min-height: 640px;
  }

  .tool-car-img {
    left: 0;
    bottom: 230px;
    width: 100%;
    max-width: 100%;
  }

  .tool-report-card {
    top: 235px;
    right: 0;
    left: 0;
    width: auto;
    padding: 24px;
  }

  .tool-safe-card {
    right: 0;
    left: 0;
    width: auto;
  }

  .tool-feature-strip article {
    border-left: 0;
    border-top: 1px solid rgba(116, 158, 207, 0.18);
    padding: 24px 20px;
  }

  .tool-feature-strip article:first-child {
    border-top: 0;
  }
}

/* Tool hero polish pass */
.tool-hero {
  padding: 34px 0 40px;
}

.tool-hero > .container {
  width: min(calc(100% - 108px), 1420px);
}

.tool-hero-grid {
  grid-template-columns: minmax(630px, 0.98fr) minmax(590px, 1.02fr);
  gap: 18px;
  align-items: start;
}

.tool-hero-copy {
  position: relative;
  z-index: 4;
}

.tool-breadcrumb {
  margin-bottom: 38px;
  font-size: 15px;
}

.tool-trust-badge {
  margin-bottom: 28px;
  font-size: 14px;
}

.tool-hero-copy h1 {
  max-width: 610px;
  margin-bottom: 26px;
  font-size: 82px;
  line-height: 0.98;
}

.tool-hero-copy p {
  max-width: 640px;
  margin-bottom: 28px;
  font-size: 18px;
}

.tool-points {
  max-width: 680px;
  flex-wrap: nowrap;
  gap: 22px;
  margin-bottom: 32px;
}

.tool-points li {
  padding-left: 25px;
  font-size: 14px;
  white-space: nowrap;
}

.tool-points li::before {
  width: 18px;
  height: 18px;
}

.tool-points li::after {
  left: 5px;
  top: 6px;
}

.tool-search,
.tool-safe-line {
  width: 650px;
}

.tool-search {
  grid-template-columns: 78px minmax(300px, 1fr) 196px;
  min-height: 68px;
}

.tool-country img {
  width: 28px;
  height: 28px;
}

.tool-reg-field input {
  font-size: 18px;
}

.tool-search button {
  font-size: 18px;
}

.tool-rating {
  gap: 12px;
  font-size: 14px;
}

.tool-stars span {
  width: 22px;
  height: 22px;
}

.tool-hero::after {
  right: 90px;
  top: 96px;
  width: 610px;
  height: 610px;
  border-color: rgba(151, 190, 232, 0.1);
  box-shadow:
    0 0 0 48px rgba(151, 190, 232, 0.055),
    0 0 0 96px rgba(151, 190, 232, 0.035);
}

.tool-hero-art {
  min-height: 536px;
  margin-top: 28px;
}

.tool-hero-art::before {
  left: 10px;
  top: 96px;
  width: 128px;
  height: 92px;
}

.tool-car-img {
  left: -150px;
  bottom: 48px;
  width: 760px;
  max-width: none;
  opacity: 0.98;
  filter: drop-shadow(0 30px 34px rgba(0, 0, 0, 0.42)) brightness(1.18) contrast(1.1);
}

.tool-report-card {
  top: 24px;
  right: 0;
  width: 384px;
  padding: 28px;
  border-radius: 18px;
}

.tool-report-card h2 {
  margin-right: 68px;
  font-size: 17px;
}

.tool-report-status strong {
  font-size: 15px;
}

.tool-report-status span,
.tool-report-card dt,
.tool-report-card dd {
  font-size: 13px;
}

.tool-report-card dl div {
  padding: 14px 0;
}

.tool-report-card a {
  min-height: 48px;
  font-size: 15px;
}

.tool-shield {
  width: 70px;
  height: 86px;
}

.tool-safe-card {
  right: 198px;
  bottom: 18px;
  width: 292px;
  padding: 14px 18px;
}

.tool-feature-strip {
  margin-top: 24px;
  max-width: none;
}

.tool-feature-strip article {
  padding: 26px 40px;
}

.tool-feature-icon {
  width: 68px;
  height: 68px;
}

.tool-feature-strip h2 {
  font-size: 16px;
}

.tool-feature-strip p {
  font-size: 13px;
}

@media (max-width: 1280px) {
  .tool-hero > .container {
    width: min(calc(100% - 56px), 1420px);
  }

  .tool-hero-grid {
    grid-template-columns: minmax(540px, 0.96fr) minmax(500px, 1.04fr);
  }

  .tool-hero-copy h1 {
    font-size: 72px;
  }

  .tool-points {
    flex-wrap: wrap;
    max-width: 610px;
  }

  .tool-search,
  .tool-safe-line {
    width: 610px;
  }

  .tool-car-img {
    left: -120px;
    width: 650px;
  }

  .tool-report-card {
    width: 350px;
  }

  .tool-safe-card {
    right: 92px;
  }
}

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

  .tool-points {
    flex-wrap: wrap;
  }

  .tool-car-img {
    left: 2%;
    width: 620px;
    max-width: 88%;
  }

  .tool-report-card {
    right: 4%;
  }
}

@media (max-width: 720px) {
  .tool-hero > .container {
    width: min(calc(100% - 28px), 1420px);
  }

  .tool-hero-copy h1 {
    font-size: 46px;
  }

  .tool-search {
    grid-template-columns: 74px 1fr;
    width: 100%;
  }

  .tool-search button {
    width: 100%;
  }

  .tool-safe-line {
    width: 100%;
  }

  .tool-hero-art {
    min-height: 630px;
  }

  .tool-car-img {
    left: 0;
    bottom: 228px;
    width: 100%;
    max-width: 100%;
  }

  .tool-report-card {
    top: 235px;
    right: 0;
    left: 0;
    width: auto;
  }

  .tool-safe-card {
    right: 0;
    left: 0;
    width: auto;
  }
}

/* Tool hero exact screenshot layout */
.tool-hero {
  /*min-height: 1008px;*/
  padding: 42px 0 52px;
  background:
    radial-gradient(circle at 76% 40%, rgba(19, 88, 158, 0.26), transparent 34%),
    radial-gradient(circle at 15% 12%, rgba(62, 121, 188, 0.12), transparent 26%),
    linear-gradient(135deg, #102a42 0%, #071928 42%, #020c15 100%);
}

.tool-hero::before {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.035), transparent 24%, transparent 74%, rgba(255, 255, 255, 0.035)),
    radial-gradient(circle at 74% 52%, rgba(4, 14, 24, 0), rgba(3, 12, 21, 0.7) 60%);
}

.tool-hero::after {
  right: 122px;
  top: 120px;
  width: 640px;
  height: 640px;
  border-color: rgba(150, 191, 231, 0.11);
  box-shadow:
    0 0 0 48px rgba(150, 191, 231, 0.055),
    0 0 0 96px rgba(150, 191, 231, 0.035);
}

.tool-hero > .container {
  width: min(calc(100% - 116px), 1468px);
  max-width: none;
}

.tool-breadcrumb {
  gap: 15px;
  margin-bottom: 42px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 17px;
  line-height: 1.25;
}

.tool-breadcrumb svg {
  width: 17px;
  height: 17px;
}

.tool-trust-badge {
  height: 40px;
  margin-bottom: 29px;
  padding: 0 17px;
  border-radius: 999px;
  font-size: 17px;
  line-height: 1;
}

.tool-trust-badge svg {
  width: 22px;
  height: 22px;
}

.tool-hero-grid {
  grid-template-columns: 650px minmax(0, 1fr);
  gap: 22px;
  align-items: start;
}

.tool-hero-copy h1 {
  max-width: 640px;
  margin: 0 0 27px;
  color: #ffffff;
  font-size: 56px;
  line-height: 0.96;
  font-weight: 900;
  letter-spacing: 0;
}

.tool-hero-copy p {
  max-width: 650px;
  margin: 0 0 36px;
  color: rgba(255, 255, 255, 0.92);
  font-size: 20px;
  line-height: 1.52;
}

.tool-points {
  max-width: none;
  margin: 0 0 40px;
  gap: 31px;
  flex-wrap: nowrap;
}

.tool-points li {
  padding-left: 27px;
  color: rgba(255, 255, 255, 0.94);
  font-size: 16px;
  font-weight: 900;
  line-height: 1.25;
  white-space: nowrap;
}

.tool-points li::before {
  top: 0;
  width: 20px;
  height: 20px;
}

.tool-points li::after {
  left: 6px;
  top: 6px;
}

.tool-search {
  grid-template-columns: 83px minmax(0, 362px) 216px;
  width: 675px;
  max-width: none;
  min-height: 73px;
  margin-bottom: 32px;
}

.tool-country {
  border-radius: 8px 0 0 8px;
}

.tool-country img {
  width: 31px;
  height: 31px;
}

.tool-country span {
  font-size: 17px;
}

.tool-reg-field {
  border-radius: 0 8px 8px 0;
}

.tool-reg-field input {
  padding: 0 28px;
  font-size: 22px;
}

.tool-search button {
  width: calc(100% - 16px);
  margin-left: 16px;
  border-radius: 8px;
  font-size: 22px;
}

.tool-search button svg {
  width: 28px;
  height: 28px;
}

.tool-safe-line {
  width: 675px;
  margin-bottom: 31px;
  justify-content: center;
  gap: 15px;
  font-size: 16px;
}

.tool-rating {
  gap: 13px;
  color: rgba(255, 255, 255, 0.92);
  font-size: 16px;
}

.tool-stars {
  gap: 3px;
}

.tool-stars span {
  width: 25px;
  height: 25px;
}

.tool-rating strong:not(.trustpilot-star) {
  color: #ffffff;
}

.trustpilot-mark {
  width: 24px;
  height: 24px;
}

.tool-hero-art {
  /*min-height: 650px;*/
  margin-top: 0;
}

.tool-hero-art::before {
  left: 46px;
  top: 115px;
  width: 128px;
  height: 92px;
  background-image: radial-gradient(rgba(121, 166, 218, 0.24) 2px, transparent 2px);
}

.tool-car-img {
  left: -70px;
  bottom: 64px;
  z-index: 1;
  width: 860px;
  max-width: none;
  opacity: 1;
  filter: drop-shadow(0 32px 38px rgba(0, 0, 0, 0.5)) brightness(1.3) contrast(1.1);
}

.tool-report-card {
  top: 27px;
  right: 0;
  width: 412px;
  padding: 38px 40px 30px;
  border-radius: 19px;
  border-color: rgba(125, 166, 211, 0.28);
  background: rgba(8, 24, 40, 0.86);
}

.tool-report-card h2 {
  margin: 0 76px 27px 0;
  font-size: 20px;
  line-height: 1.25;
}

.tool-report-status {
  gap: 14px;
  margin-bottom: 22px;
}

.tool-report-status strong {
  padding: 10px 18px;
  border-radius: 8px;
  font-size: 18px;
}

.tool-report-status span {
  font-size: 14px;
}

.tool-report-card dl {
  margin-bottom: 22px;
}

.tool-report-card dl div {
  padding: 16px 0;
}

.tool-report-card dt,
.tool-report-card dd {
  font-size: 16px;
}

.tool-report-card dt::before {
  width: 27px;
  height: 27px;
}

.tool-report-card a {
  min-height: 57px;
  border-radius: 8px;
  font-size: 17px;
}

.tool-shield {
  right: 24px;
  top: 26px;
  width: 82px;
  height: 98px;
}

.tool-safe-card {
  right: 226px;
  bottom: -4px;
  width: 296px;
  min-height: 82px;
  padding: 16px 20px;
  border-radius: 16px;
}

.tool-safe-card svg {
  width: 30px;
  height: 30px;
}

.tool-safe-card strong {
  font-size: 16px;
}

.tool-safe-card span {
  font-size: 14px;
}

.tool-feature-strip {
  grid-template-columns: repeat(4, 1fr);
  min-height: 144px;
  margin-top: 52px;
  border-radius: 14px;
}

.tool-feature-strip article {
  grid-template-columns: 82px 1fr;
  gap: 22px;
  padding: 27px 42px;
}

.tool-feature-icon {
  width: 80px;
  height: 80px;
}

.tool-feature-icon svg,
.tool-feature-icon img {
  width: 45px;
  height: 45px;
}

.tool-feature-strip h2 {
  margin-bottom: 8px;
  font-size: 20px;
}

.tool-feature-strip p {
  font-size: 16px;
  line-height: 1.45;
}

@media (max-width: 1320px) {
  .tool-hero {
    min-height: auto;
  }

  .tool-hero > .container {
    width: min(calc(100% - 56px), 1468px);
  }

  .tool-hero-grid {
    grid-template-columns: minmax(500px, 0.96fr) minmax(500px, 1.04fr);
  }

  .tool-hero-copy h1 {
    font-size: 72px;
  }

  .tool-hero-copy p {
    font-size: 18px;
  }

  .tool-points {
    max-width: 620px;
    flex-wrap: wrap;
    gap: 22px;
  }

  .tool-search,
  .tool-safe-line {
    width: 610px;
  }

  .tool-search {
    grid-template-columns: 78px minmax(0, 326px) 206px;
  }

  .tool-car-img {
    left: -80px;
    width: 690px;
  }

  .tool-report-card {
    width: 360px;
    padding: 30px 28px 26px;
  }

  .tool-safe-card {
    right: 100px;
  }

  .tool-feature-strip article {
    grid-template-columns: 70px 1fr;
    padding: 24px 26px;
  }
}

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

  .tool-hero-art {
    min-height: 625px;
  }

  .tool-car-img {
    left: 0;
    width: 700px;
    max-width: 92%;
  }

  .tool-report-card {
    right: 4%;
  }

  .tool-safe-card {
    right: 18%;
  }

  .tool-feature-strip {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 720px) {
  .tool-hero {
    padding: 24px 0 38px;
  }

  .tool-hero > .container {
    width: min(calc(100% - 28px), 1468px);
  }

  .tool-breadcrumb {
    gap: 9px;
    margin-bottom: 28px;
    font-size: 14px;
    flex-wrap: wrap;
  }

  .tool-trust-badge {
    height: auto;
    padding: 9px 12px;
    font-size: 14px;
  }

  .tool-hero-copy h1 {
    font-size: 46px;
  }

  .tool-hero-copy p {
    font-size: 17px;
  }

  .tool-points {
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 28px;
  }

  .tool-points li {
    font-size: 14px;
  }

  .tool-search {
    grid-template-columns: 74px 1fr;
    width: 100%;
    min-height: 62px;
  }

  .tool-search button {
    grid-column: 1 / -1;
    width: 100%;
    min-height: 58px;
    margin-left: 0;
    border-radius: 0 0 8px 8px;
  }

  .tool-country {
    border-radius: 8px 0 0 0;
  }

  .tool-reg-field {
    border-radius: 0 8px 0 0;
  }

  .tool-reg-field input {
    font-size: 17px;
    padding: 0 16px;
  }

  .tool-safe-line,
  .tool-rating {
    width: 100%;
    justify-content: flex-start;
  }

  .tool-hero-art {
    /*min-height: 640px;*/
  }

  .tool-car-img {
    left: 0;
    bottom: 230px;
    width: 100%;
    max-width: 100%;
  }

  .tool-report-card {
    top: 235px;
    right: 0;
    left: 0;
    width: auto;
    padding: 24px;
  }

  .tool-safe-card {
    right: 0;
    left: 0;
    width: auto;
  }

  .tool-feature-strip {
    grid-template-columns: 1fr;
    margin-top: 34px;
  }

  .tool-feature-strip article {
    grid-template-columns: 68px 1fr;
    border-left: 0;
    border-top: 1px solid rgba(116, 158, 207, 0.18);
    padding: 24px 20px;
  }

  .tool-feature-strip article:first-child {
    border-top: 0;
  }
}

/* Tool hero final alignment */
.tool-stars span::before {
  content: "";
  width: 16px;
  height: 16px;
  background: #ffffff;
  clip-path: polygon(50% 0, 61% 34%, 98% 35%, 68% 56%, 79% 91%, 50% 70%, 21% 91%, 32% 56%, 2% 35%, 39% 34%);
}

.tool-report-card {
  right: -14px;
  padding: 34px 40px 27px;
}

.tool-report-card h2 {
  margin-bottom: 24px;
}

.tool-report-status {
  margin-bottom: 18px;
}

.tool-report-card dl div {
  padding: 14px 0;
}

.tool-report-card a {
  min-height: 54px;
}

.tool-safe-card {
  right: 212px;
}

@media (max-width: 1320px) {
  .tool-report-card {
    right: 0;
  }

  .tool-safe-card {
    right: 100px;
  }
}

@media (max-width: 1050px) {
  .tool-report-card {
    right: 4%;
  }

  .tool-safe-card {
    right: 18%;
  }
}

@media (max-width: 720px) {
  .tool-report-card {
    right: 0;
  }

  .tool-safe-card {
    right: 0;
  }
}

@media (max-width: 1080px) {
  .faq-hero-grid {
    grid-template-columns: minmax(340px, 0.95fr) minmax(320px, 1.05fr);
    gap: 28px;
  }

  .faq-category-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .faq-page-grid {
    gap: 18px;
  }
}

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

  .faq-hero-art {
    min-height: 240px;
  }

  .faq-cta {
    justify-items: start;
  }
}

@media (max-width: 640px) {
  .faq-hero {
    padding: 24px 0 34px;
  }

  .faq-hero-copy h1 {
    font-size: 42px;
  }

  .faq-hero-copy p {
    font-size: 17px;
  }

  .faq-category-grid {
    grid-template-columns: 1fr;
    padding: 24px 0;
  }

  .faq-category-grid article {
    padding: 18px;
  }

  .faq-panel h3 {
    padding: 18px;
    font-size: 18px;
  }

  .faq-list summary {
    min-height: 54px;
    padding: 0 18px;
    font-size: 14px;
  }

  .faq-list p {
    padding: 0 18px 18px;
  }

  .faq-cta {
    margin-bottom: 38px;
    padding: 22px 18px;
  }

  .faq-cta .button-primary {
    width: 100%;
  }
}
