﻿:root{
  --navy:#063e73;
  --navy-dark:#032d57;
  --blue:#35adf3;
  --blue-dark:#168fce;
  --blue-soft:#edf8ff;
  --ink:#142536;
  --muted:#5f7180;
  --line:#dce6ed;
  --page:#f3f7fb;
  --white:#fff;
  --green:#138a59;
  --green-soft:#eaf8f1;
  --amber:#9b6508;
  --amber-soft:#fff7e8;
  --red:#bd4439;
  --red-soft:#fff2f1;
  --orange:#f24a2e;
  --orange-dark:#dc3c22;
  --star:#f4bd16;
  --purple:#6254bd;
  --purple-soft:#f1efff;
  --shadow-sm:0 8px 24px rgba(18,52,77,.07);
  --shadow-md:0 18px 48px rgba(18,52,77,.11);
  --radius:16px;
}
*{box-sizing:border-box}
html{
  scroll-behavior:smooth;
  scroll-padding-top:150px;
}
body{
  margin:0;
  min-width:320px;
  overflow-x:hidden;
  color:var(--ink);
  background:var(--page);
  font-family:Inter,ui-sans-serif,-apple-system,BlinkMacSystemFont,"Segoe UI",Arial,sans-serif;
  font-size:14px;
  line-height:1.6;
  text-rendering:optimizeLegibility;
}
a{color:inherit;text-decoration:none}
button,input{font:inherit}
button{cursor:pointer}
img,svg{display:block;max-width:100%}
h1,h2,h3,h4,p{overflow-wrap:break-word}
[hidden]{display:none!important}
.skip-link{
  position:fixed;
  top:10px;
  left:10px;
  z-index:200;
  padding:10px 14px;
  border-radius:8px;
  color:#fff;
  background:var(--navy);
  transform:translateY(-150%);
}
.skip-link:focus{transform:translateY(0)}

.site-header{
  position:relative;
  z-index:90;
  min-height:76px;
  border-bottom:1px solid #e3eaf0;
  background:#fff;
}
.header-inner{
  width:min(1220px,calc(100% - 32px));
  min-height:76px;
  margin:0 auto;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:22px;
}
.brand{
  display:inline-flex;
  align-items:center;
  gap:10px;
  flex:0 0 auto;
  color:var(--navy);
  font-size:22px;
  font-weight:800;
  letter-spacing:-.5px;
}
.brand-mark{
  width:38px;
  height:38px;
  display:grid;
  place-items:center;
  border-radius:10px;
  color:#fff;
  background:linear-gradient(135deg,var(--blue),#59c6ff);
  font-size:17px;
  box-shadow:0 7px 17px rgba(53,173,243,.25);
}
.brand em{color:var(--blue);font-style:normal}
.header-search{
  position:relative;
  width:min(330px,30vw);
  flex:0 1 330px;
}
.header-search input{
  width:100%;
  height:43px;
  padding:0 42px 0 14px;
  border:1px solid #dce5eb;
  border-radius:10px;
  outline:none;
  color:var(--ink);
  background:#fff;
  font-size:12px;
}
.header-search input:focus{
  border-color:var(--blue-dark);
  box-shadow:0 0 0 3px rgba(53,173,243,.12);
}
.header-search button{
  position:absolute;
  top:5px;
  right:5px;
  width:33px;
  height:33px;
  display:grid;
  place-items:center;
  border:0;
  border-radius:8px;
  color:var(--navy);
  background:var(--blue-soft);
  font-size:15px;
}
.header-nav{
  display:flex;
  align-items:center;
  gap:27px;
  flex:0 0 auto;
}
.header-nav a,
.header-nav button{
  border:0;
  color:#1a2d3c;
  background:transparent;
  font-size:12px;
  font-weight:750;
  white-space:nowrap;
}
.header-nav a:hover,
.header-nav button:hover{color:var(--blue-dark)}
.sign-in-button{
  min-height:41px;
  padding:0 15px;
  border-radius:9px!important;
  color:#fff!important;
  background:var(--blue)!important;
  box-shadow:0 7px 17px rgba(53,173,243,.23);
}
.mobile-menu-button{
  width:42px;
  height:42px;
  display:none;
  place-items:center;
  border:1px solid #dce5eb;
  border-radius:9px;
  color:var(--navy);
  background:#fff;
  font-size:18px;
}

.profile-hero{
  padding:27px 0 25px;
  background:
    radial-gradient(circle at 78% 12%,rgba(53,173,243,.15),transparent 32%),
    radial-gradient(circle at 12% 90%,rgba(6,62,115,.07),transparent 29%),
    linear-gradient(180deg,#f8fbfe,#eef5fa);
  border-bottom:1px solid #dfe8ef;
}
.container{
  width:min(1220px,calc(100% - 32px));
  margin:0 auto;
}
.breadcrumb{
  display:flex;
  align-items:center;
  gap:7px;
  margin-bottom:17px;
  color:#657986;
  font-size:11px;
}
.breadcrumb a{color:var(--navy);font-weight:700}
.breadcrumb span:last-child{color:#293e4e;font-weight:700}

.hero-grid{
  display:grid;
  grid-template-columns:minmax(0,1fr) 350px;
  gap:26px;
  align-items:stretch;
}
.product-identity-card,
.buyer-snapshot{
  min-width:0;
  border:1px solid #dce6ed;
  border-radius:20px;
  background:#fff;
  box-shadow:var(--shadow-sm);
}
.product-identity-card{padding:24px}
.identity-main{
  display:grid;
  grid-template-columns:104px minmax(0,1fr);
  gap:20px;
  align-items:start;
}
.product-logo{
  width:104px;
  height:104px;
  display:grid;
  place-items:center;
  overflow:hidden;
  border:1px solid #dce5eb;
  border-radius:18px;
  background:#fff;
  box-shadow:0 10px 24px rgba(18,52,77,.08);
}
.product-logo img{
  width:78px;
  height:78px;
  object-fit:contain;
}
.product-logo-fallback{
  width:78px;
  height:78px;
  display:grid;
  place-items:center;
  border-radius:12px;
  color:#fff;
  background:#087ce5;
  font-size:28px;
  font-weight:800;
}
.identity-copy{min-width:0}
.identity-topline{
  display:flex;
  align-items:center;
  flex-wrap:wrap;
  gap:9px;
}
.identity-topline h1{
  margin:0;
  color:#10293c;
  font-size:clamp(30px,4vw,38px);
  line-height:1.12;
  letter-spacing:-1px;
}
.verified-badge,
.claim-profile{
  min-height:27px;
  padding:4px 9px;
  display:inline-flex;
  align-items:center;
  gap:5px;
  border-radius:999px;
  font-size:8px;
  font-weight:800;
}
.verified-badge{
  position:relative;
  color:#176c49;
  background:var(--green-soft);
}
.verified-badge::after{
  content:attr(data-tooltip);
  position:absolute;
  left:50%;
  bottom:calc(100% + 8px);
  z-index:20;
  width:170px;
  padding:8px 9px;
  border-radius:7px;
  color:#fff;
  background:#17364f;
  font-size:8px;
  line-height:1.4;
  opacity:0;
  pointer-events:none;
  transform:translate(-50%,4px);
  transition:opacity .15s ease,transform .15s ease;
}
.verified-badge:hover::after,
.verified-badge:focus::after{
  opacity:1;
  transform:translate(-50%,0);
}
.claim-profile{
  border:1px solid #b8d7e8;
  color:var(--navy);
  background:#fff;
}
body[data-profile-state="claimed"] .claim-profile{display:none}
body[data-profile-state="unclaimed"] .verified-badge{display:none}

.tagline{
  max-width:690px;
  margin:7px 0 0;
  color:#657784;
  font-size:14px;
}
.rating-line{
  margin-top:12px;
  display:flex;
  align-items:center;
  flex-wrap:wrap;
  gap:8px;
}
.stars{
  color:var(--star);
  font-size:17px;
  letter-spacing:1px;
  line-height:1;
}
.rating-line strong{font-size:14px}
.rating-line a{
  color:var(--blue-dark);
  font-size:11px;
  font-weight:700;
}
.no-review-rating{
  display:none;
  color:#667987;
  font-size:11px;
}
body[data-has-reviews="false"] .has-review-rating{display:none}
body[data-has-reviews="false"] .no-review-rating{display:inline-flex}

.identity-actions{
  margin-top:18px;
  display:flex;
  flex-wrap:wrap;
  gap:9px;
}
.primary-cta,
.secondary-cta,
.ghost-cta{
  min-height:44px;
  padding:0 15px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:7px;
  border-radius:9px;
  font-size:10px;
  font-weight:800;
}
.primary-cta{
  border:0;
  color:#fff;
  background:var(--orange);
  box-shadow:0 9px 19px rgba(242,74,46,.22);
}
.primary-cta:hover{background:var(--orange-dark)}
.secondary-cta{
  border:1px solid #b8d7e8;
  color:var(--navy);
  background:#fff;
}
.ghost-cta{
  border:1px solid #dbe4ea;
  color:#435c6d;
  background:#f8fafb;
}

.hero-category-row{
  margin-top:19px;
  padding-top:17px;
  display:flex;
  flex-wrap:wrap;
  gap:8px;
  border-top:1px solid #e7edf2;
}
.category-chip{
  min-height:29px;
  padding:5px 9px;
  display:inline-flex;
  align-items:center;
  border:1px solid #d8e6ef;
  border-radius:999px;
  color:#315875;
  background:#f8fcff;
  font-size:8px;
  font-weight:750;
}
.category-chip:hover{
  border-color:#9ecde7;
  color:var(--navy);
  background:#eef8fe;
}

.buyer-snapshot{
  padding:20px;
  background:
    radial-gradient(circle at 100% 0,rgba(53,173,243,.12),transparent 36%),
    #fff;
}
.snapshot-label{
  color:var(--blue-dark);
  font-size:8px;
  font-weight:850;
  letter-spacing:.7px;
  text-transform:uppercase;
}
.buyer-snapshot h2{
  margin:5px 0 0;
  color:var(--navy);
  font-size:19px;
}
.snapshot-grid{
  margin-top:15px;
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:9px;
}
.snapshot-item{
  min-width:0;
  padding:11px;
  border:1px solid #e0e8ee;
  border-radius:10px;
  background:#fbfcfd;
}
.snapshot-item span{
  display:block;
  color:#71818d;
  font-size:7px;
  font-weight:800;
  text-transform:uppercase;
}
.snapshot-item strong{
  display:block;
  margin-top:3px;
  color:#17374f;
  font-size:10px;
}
.snapshot-fit{
  margin-top:11px;
  padding:12px;
  border:1px solid #cfe5da;
  border-radius:10px;
  background:#f5fbf8;
}
.snapshot-fit span{
  display:block;
  color:#567565;
  font-size:7px;
  font-weight:800;
  text-transform:uppercase;
}
.snapshot-fit strong{
  display:block;
  margin-top:3px;
  color:#176c49;
  font-size:10px;
}
.snapshot-note{
  margin:11px 0 0;
  color:#71818d;
  font-size:8px;
  line-height:1.5;
}

.editorial-band{
  margin-top:20px;
  padding:20px;
  display:grid;
  grid-template-columns:minmax(0,1fr) 145px;
  gap:20px;
  align-items:center;
  border:1px solid #cfe0eb;
  border-radius:18px;
  background:
    radial-gradient(circle at 90% 50%,rgba(53,173,243,.13),transparent 33%),
    linear-gradient(135deg,#fff,#f6fbfe);
  box-shadow:var(--shadow-sm);
}
.editorial-eyebrow{
  display:flex;
  align-items:center;
  gap:7px;
  color:var(--blue-dark);
  font-size:8px;
  font-weight:850;
  letter-spacing:.65px;
}
.info-tooltip{
  position:relative;
  width:17px;
  height:17px;
  display:inline-grid;
  place-items:center;
  border:0;
  border-radius:50%;
  color:var(--navy);
  background:#dcecf6;
  font-size:8px;
  font-weight:800;
}
.info-tooltip span{
  position:absolute;
  left:0;
  bottom:calc(100% + 8px);
  z-index:20;
  width:min(280px,75vw);
  padding:9px 10px;
  border-radius:8px;
  color:#fff;
  background:#17364f;
  font-size:8px;
  font-weight:600;
  line-height:1.5;
  opacity:0;
  pointer-events:none;
  transform:translateY(4px);
  transition:opacity .15s ease,transform .15s ease;
}
.info-tooltip:hover span,
.info-tooltip:focus span{
  opacity:1;
  transform:translateY(0);
}
.editorial-band h2{
  margin:7px 0 0;
  color:var(--navy);
  font-size:21px;
}
.editorial-band blockquote{
  margin:8px 0 0;
  color:#3e5667;
  font-size:11px;
  font-style:italic;
  line-height:1.7;
}
.editorial-byline{
  margin-top:8px;
  color:#6b7d89;
  font-size:8px;
  font-weight:750;
}
.recommended-seal{
  width:132px;
  height:132px;
  margin-left:auto;
  display:grid;
  place-items:center;
  border:5px solid #fff;
  border-radius:50%;
  color:#fff;
  background:linear-gradient(145deg,var(--navy),#0d619f);
  box-shadow:0 0 0 2px var(--navy),0 12px 24px rgba(6,62,115,.17);
  text-align:center;
}
.recommended-seal span{
  display:block;
  font-size:8px;
  font-weight:850;
  line-height:1.35;
  text-transform:uppercase;
}
.recommended-seal strong{
  display:block;
  margin:4px 0;
  font-size:19px;
  line-height:1;
}

.profile-nav-wrap{
  position:sticky;
  top:0;
  z-index:70;
  border-bottom:1px solid #dfe7ed;
  background:rgba(255,255,255,.96);
  backdrop-filter:blur(12px);
}
.profile-nav{
  width:min(1220px,calc(100% - 32px));
  min-height:62px;
  margin:0 auto;
  display:flex;
  align-items:center;
  gap:4px;
  overflow-x:auto;
  scrollbar-width:none;
}
.profile-nav::-webkit-scrollbar{display:none}
.profile-nav a{
  position:relative;
  min-height:62px;
  padding:0 14px;
  display:flex;
  align-items:center;
  justify-content:center;
  color:#637584;
  font-size:10px;
  font-weight:800;
  white-space:nowrap;
}
.profile-nav a::after{
  content:"";
  position:absolute;
  right:12px;
  bottom:0;
  left:12px;
  height:3px;
  border-radius:3px 3px 0 0;
  background:var(--blue);
  transform:scaleX(0);
  transition:transform .18s ease;
}
.profile-nav a.active,
.profile-nav a:hover{color:var(--navy)}
.profile-nav a.active::after{transform:scaleX(1)}
body[data-has-reviews="false"] .review-nav-item{display:none}

.page-shell{
  width:min(1220px,calc(100% - 32px));
  margin:24px auto 48px;
  display:grid;
  grid-template-columns:minmax(0,1fr) 300px;
  gap:20px;
  align-items:start;
}
.content-stack{
  min-width:0;
  display:grid;
  gap:18px;
}
.profile-section{
  min-width:0;
  padding:24px;
  scroll-margin-top:140px;
  border:1px solid #dfe7ed;
  border-radius:var(--radius);
  background:#fff;
  box-shadow:var(--shadow-sm);
}
.defer-section{
  content-visibility:auto;
  contain-intrinsic-size:1px 700px;
}
.section-heading{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:16px;
  padding-bottom:15px;
  border-bottom:1px solid #e7edf2;
}
.section-heading h2{
  margin:0;
  color:var(--navy);
  font-size:22px;
  line-height:1.3;
}
.section-heading p{
  max-width:680px;
  margin:5px 0 0;
  color:#697b88;
  font-size:9px;
  line-height:1.55;
}
.section-kicker{
  display:inline-flex;
  min-height:25px;
  padding:4px 8px;
  align-items:center;
  border-radius:999px;
  color:#315875;
  background:#edf7fd;
  font-size:7px;
  font-weight:850;
  text-transform:uppercase;
}
.section-link{
  flex:0 0 auto;
  color:var(--blue-dark);
  font-size:8px;
  font-weight:800;
}
.section-link:hover{text-decoration:underline}

.overview-grid{
  margin-top:18px;
  display:grid;
  grid-template-columns:minmax(0,1.08fr) minmax(310px,.92fr);
  gap:20px;
  align-items:start;
}
.overview-copy h3,
.media-panel h3{
  margin:0;
  color:#19364d;
  font-size:15px;
}
.overview-text{
  position:relative;
  max-height:184px;
  margin-top:8px;
  overflow:hidden;
  color:#526978;
  font-size:10px;
  line-height:1.75;
}
.overview-text::after{
  content:"";
  position:absolute;
  right:0;
  bottom:0;
  left:0;
  height:44px;
  background:linear-gradient(to bottom,rgba(255,255,255,0),#fff 78%);
}
.overview-text.expanded{max-height:none}
.overview-text.expanded::after{display:none}
.text-toggle{
  margin-top:8px;
  padding:0;
  border:0;
  color:var(--navy);
  background:transparent;
  font-size:9px;
  font-weight:850;
  text-decoration:underline;
  text-underline-offset:3px;
}
.media-stage{
  position:relative;
  margin-top:9px;
  overflow:hidden;
  border:1px solid #dce5eb;
  border-radius:13px;
  background:#eef5fa;
  aspect-ratio:16/10;
}
.media-stage svg{width:100%;height:100%}
.play-button{
  position:absolute;
  inset:50% auto auto 50%;
  width:54px;
  height:54px;
  display:grid;
  place-items:center;
  border:5px solid rgba(255,255,255,.88);
  border-radius:50%;
  color:#fff;
  background:rgba(3,45,87,.86);
  transform:translate(-50%,-50%);
  font-size:17px;
}
.media-thumbs{
  margin-top:8px;
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:7px;
}
.media-thumb{
  min-height:48px;
  padding:7px;
  border:1px solid #dce5eb;
  border-radius:8px;
  color:#456070;
  background:#fff;
  font-size:8px;
  font-weight:750;
}
.media-thumb.active{
  border-color:#7ec7ef;
  color:var(--navy);
  background:#edf8ff;
}

.facts-grid{
  margin-top:20px;
  display:grid;
  grid-template-columns:repeat(4,minmax(0,1fr));
  border:1px solid #dfe7ed;
  border-radius:12px;
  background:#fbfcfd;
}
.fact-group{
  min-width:0;
  padding:15px;
  border-right:1px solid #e1e8ee;
}
.fact-group:last-child{border-right:0}
.fact-group h3{
  margin:0;
  color:var(--navy);
  font-size:11px;
}
.fact-list{
  margin-top:9px;
  display:grid;
  gap:7px;
}
.fact-item{
  display:flex;
  align-items:flex-start;
  gap:7px;
  color:#5d7180;
  font-size:8px;
  line-height:1.45;
}
.fact-icon{
  width:19px;
  height:19px;
  display:grid;
  place-items:center;
  flex:0 0 19px;
  border-radius:6px;
  color:var(--navy);
  background:#eaf5fc;
  font-size:7px;
  font-weight:850;
}
.contact-tooltip{
  position:relative;
  display:inline-flex;
  align-items:center;
  gap:7px;
}
.contact-tooltip::after{
  content:attr(data-label);
  position:absolute;
  left:22px;
  top:calc(100% + 6px);
  z-index:12;
  width:max-content;
  max-width:180px;
  padding:6px 8px;
  border-radius:6px;
  color:#fff;
  background:#17364f;
  font-size:7px;
  opacity:0;
  pointer-events:none;
  transform:translateY(3px);
  transition:opacity .15s ease,transform .15s ease;
}
.contact-tooltip:hover::after,
.contact-tooltip:focus::after{
  opacity:1;
  transform:translateY(0);
}
.secondary-facts{
  margin-top:12px;
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:9px;
}
.secondary-fact{
  padding:12px;
  border:1px solid #e0e8ee;
  border-radius:10px;
  background:#fff;
}
.secondary-fact span{
  display:block;
  color:#71818d;
  font-size:7px;
  font-weight:800;
  text-transform:uppercase;
}
.secondary-fact strong{
  display:block;
  margin-top:4px;
  color:#23445d;
  font-size:9px;
}

.why-grid{
  margin-top:18px;
  display:grid;
  grid-template-columns:repeat(4,minmax(0,1fr));
  gap:10px;
}
.why-card{
  min-width:0;
  padding:14px;
  border:1px solid #dfe7ed;
  border-radius:11px;
  background:#fbfcfd;
}
.why-card span{
  width:31px;
  height:31px;
  display:grid;
  place-items:center;
  border-radius:8px;
  color:#fff;
  background:var(--navy);
  font-size:9px;
  font-weight:850;
}
.why-card h3{
  margin:8px 0 0;
  color:var(--navy);
  font-size:11px;
}
.why-card p,
.why-card ul{
  margin:5px 0 0;
  color:#607584;
  font-size:8px;
  line-height:1.55;
}
.why-card ul{
  padding:0;
  list-style:none;
}
.why-card li+li{margin-top:4px}
.why-card li::before{
  content:"\2713";
  margin-right:5px;
  color:var(--green);
  font-weight:850;
}
.pros-cons{
  margin-top:12px;
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:10px;
}
.pro-con-card{
  padding:15px;
  border:1px solid #dfe7ed;
  border-radius:11px;
}
.pro-con-card.pros{
  border-color:#cfe5da;
  background:#f7fcf9;
}
.pro-con-card.cons{
  border-color:#f0d8d5;
  background:#fffafa;
}
.pro-con-card h3{
  margin:0;
  color:var(--navy);
  font-size:12px;
}
.pro-con-card ul{
  margin:9px 0 0;
  padding:0;
  display:grid;
  gap:7px;
  list-style:none;
}
.pro-con-card li{
  display:grid;
  grid-template-columns:20px minmax(0,1fr);
  gap:7px;
  color:#587080;
  font-size:8px;
  line-height:1.5;
}
.pro-con-card li::before{
  width:20px;
  height:20px;
  display:grid;
  place-items:center;
  border-radius:6px;
  font-size:7px;
  font-weight:850;
}
.pros li::before{
  content:"\2713";
  color:#176c49;
  background:#e5f5ed;
}
.cons li::before{
  content:"!";
  color:#a23c34;
  background:#ffebe9;
}

.sponsored-discovery{
  padding:0;
  overflow:hidden;
  border-color:#cbdfea;
}
.sponsored-head{
  padding:20px 22px;
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:16px;
  color:#fff;
  background:
    radial-gradient(circle at 90% 20%,rgba(53,173,243,.26),transparent 34%),
    linear-gradient(135deg,var(--navy-dark),var(--navy));
}
.sponsored-head span{
  display:inline-flex;
  min-height:23px;
  padding:4px 7px;
  align-items:center;
  border-radius:999px;
  background:rgba(255,255,255,.12);
  font-size:7px;
  font-weight:850;
  text-transform:uppercase;
}
.sponsored-head h2{
  margin:6px 0 0;
  font-size:20px;
}
.sponsored-head p{
  max-width:640px;
  margin:5px 0 0;
  color:#d8e8f3;
  font-size:8px;
}
.sponsored-disclosure{
  flex:0 0 auto;
  max-width:190px;
  color:#d8e8f3;
  font-size:7px;
  line-height:1.45;
  text-align:right;
}
.sponsored-grid{
  padding:15px;
  display:grid;
  grid-template-columns:repeat(4,minmax(0,1fr));
  gap:10px;
  background:#f8fbfd;
}
.sponsored-card{
  min-width:0;
  padding:13px;
  position:relative;
  border:1px solid #dfe7ed;
  border-radius:12px;
  background:#fff;
  box-shadow:0 7px 17px rgba(18,52,77,.05);
}
.sponsored-label{
  position:absolute;
  top:8px;
  right:8px;
  padding:3px 6px;
  border-radius:999px;
  color:#715e37;
  background:#fff3d9;
  font-size:6px;
  font-weight:850;
  text-transform:uppercase;
}
.sponsored-product-head{
  display:grid;
  grid-template-columns:43px minmax(0,1fr);
  gap:9px;
  align-items:center;
}
.mini-logo{
  width:43px;
  height:43px;
  display:grid;
  place-items:center;
  border:1px solid #dce5eb;
  border-radius:9px;
  color:#fff;
  background:var(--navy);
  font-size:9px;
  font-weight:850;
}
.logo-xero{background:#11b6d4}
.logo-zoho{background:#3672d6}
.logo-qb{background:#20a624}
.logo-dext{background:#f15a22}
.sponsored-card h3{
  margin:0;
  color:var(--navy);
  font-size:11px;
}
.sponsored-card .mini-rating{
  margin-top:3px;
  color:#6a7d89;
  font-size:7px;
}
.sponsored-card .mini-rating b{color:var(--star)}
.sponsored-card>p{
  min-height:38px;
  margin:9px 0 0;
  color:#657987;
  font-size:8px;
  line-height:1.5;
}
.sponsored-card-actions{
  margin-top:9px;
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:6px;
}
.sponsored-card-actions a,
.sponsored-card-actions button{
  min-height:34px;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius:7px;
  font-size:7px;
  font-weight:850;
}
.sponsored-card-actions a{
  border:0;
  color:#fff;
  background:var(--orange);
}
.sponsored-card-actions button{
  border:1px solid #c9dce7;
  color:var(--navy);
  background:#fff;
}

.feature-accordion{
  margin-top:15px;
  display:grid;
  gap:9px;
}
.feature-accordion details{
  border:1px solid #dfe7ed;
  border-radius:11px;
  background:#fff;
  overflow:hidden;
}
.feature-accordion summary{
  min-height:54px;
  padding:12px 14px;
  display:grid;
  grid-template-columns:minmax(0,1fr) auto;
  gap:12px;
  align-items:center;
  cursor:pointer;
  list-style:none;
  background:#fbfcfd;
}
.feature-accordion summary::-webkit-details-marker{display:none}
.feature-summary-copy strong{
  display:block;
  color:var(--navy);
  font-size:11px;
}
.feature-summary-copy span{
  display:block;
  margin-top:2px;
  color:#71818d;
  font-size:7px;
}
.feature-summary-action{
  display:flex;
  align-items:center;
  gap:8px;
  color:#567080;
  font-size:8px;
  font-weight:750;
}
.feature-summary-action a{
  color:var(--blue-dark);
  text-decoration:underline;
  text-underline-offset:2px;
}
.feature-chevron{
  width:26px;
  height:26px;
  display:grid;
  place-items:center;
  border-radius:7px;
  color:var(--navy);
  background:#eaf5fc;
  transition:transform .18s ease;
}
details[open] .feature-chevron{transform:rotate(180deg)}
.feature-details{
  padding:14px;
  border-top:1px solid #e7edf2;
}
.feature-details>p{
  margin:0;
  color:#5d7281;
  font-size:9px;
  line-height:1.7;
}
.feature-list{
  margin-top:13px;
  display:grid;
  grid-template-columns:repeat(4,minmax(0,1fr));
  gap:8px 12px;
}
.feature-list span{
  display:flex;
  align-items:flex-start;
  gap:6px;
  color:#3f596a;
  font-size:8px;
}
.feature-list span::before{
  content:"\203A";
  color:var(--blue-dark);
  font-weight:900;
}

.integration-grid{
  margin-top:16px;
  display:grid;
  grid-template-columns:repeat(4,minmax(0,1fr));
  gap:8px;
}
.integration-chip{
  min-width:0;
  min-height:54px;
  padding:9px;
  display:grid;
  grid-template-columns:34px minmax(0,1fr);
  gap:9px;
  align-items:center;
  border:1px solid #dfe7ed;
  border-radius:10px;
  background:#fbfcfd;
}
.integration-chip:nth-child(n+9){display:none}
.integration-grid.expanded .integration-chip{display:grid}
.integration-logo{
  width:34px;
  height:34px;
  display:grid;
  place-items:center;
  border-radius:8px;
  color:#fff;
  background:#4778b9;
  font-size:7px;
  font-weight:850;
}
.integration-chip strong{
  color:#26465e;
  font-size:8px;
}
.integration-footer{
  margin-top:13px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
}
.integration-footer span{
  color:#71818d;
  font-size:8px;
}
.show-more-button{
  min-height:36px;
  padding:0 11px;
  border:1px solid #b8d7e8;
  border-radius:8px;
  color:var(--navy);
  background:#fff;
  font-size:8px;
  font-weight:850;
}

.pricing-summary{
  margin-top:16px;
  display:grid;
  grid-template-columns:repeat(5,minmax(0,1fr));
  border:1px solid #dfe7ed;
  border-radius:11px;
  background:#fbfcfd;
}
.pricing-fact{
  padding:13px;
  border-right:1px solid #e1e8ee;
}
.pricing-fact:last-child{border-right:0}
.pricing-fact span{
  display:block;
  color:#71818d;
  font-size:7px;
  font-weight:850;
  text-transform:uppercase;
}
.pricing-fact strong{
  display:block;
  margin-top:4px;
  color:#1c4059;
  font-size:9px;
}
.pricing-links{
  margin-top:11px;
  display:flex;
  flex-wrap:wrap;
  gap:7px;
}
.pricing-links a{
  min-height:35px;
  padding:0 10px;
  display:inline-flex;
  align-items:center;
  border-radius:8px;
  color:#fff;
  background:var(--blue-dark);
  font-size:8px;
  font-weight:850;
}
.plan-grid{
  margin-top:15px;
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:10px;
}
.plan-card{
  overflow:hidden;
  border:1px solid #dfe7ed;
  border-radius:12px;
  background:#fff;
}
.plan-card.featured{
  border-color:#84c8ec;
  box-shadow:0 10px 24px rgba(53,173,243,.11);
}
.plan-name{
  padding:11px 13px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:9px;
  color:var(--navy);
  background:#eff5fa;
  font-size:10px;
  font-weight:850;
}
.plan-name span{
  padding:3px 6px;
  border-radius:999px;
  color:#176c49;
  background:#e5f5ed;
  font-size:6px;
}
.plan-price{
  padding:16px 13px;
  text-align:center;
}
.plan-price strong{
  display:block;
  color:#183950;
  font-size:21px;
}
.plan-price span{
  color:#71818d;
  font-size:8px;
}
.pricing-note{
  margin-top:11px;
  color:#71818d;
  font-size:7px;
  line-height:1.5;
}

.review-overview{
  margin-top:16px;
  display:grid;
  grid-template-columns:190px minmax(0,1fr);
  gap:18px;
  align-items:center;
}
.rating-summary{
  padding:18px;
  border:1px solid #dfe7ed;
  border-radius:12px;
  background:#fbfcfd;
  text-align:center;
}
.rating-summary strong{
  display:block;
  color:var(--navy);
  font-size:38px;
  line-height:1;
}
.rating-summary .stars{margin-top:7px}
.rating-summary span{
  display:block;
  margin-top:6px;
  color:#6b7d89;
  font-size:8px;
}
.rating-bars{display:grid;gap:6px}
.rating-bar{
  display:grid;
  grid-template-columns:38px minmax(0,1fr) 30px;
  gap:8px;
  align-items:center;
  color:#607584;
  font-size:8px;
}
.rating-track{
  height:7px;
  overflow:hidden;
  border-radius:999px;
  background:#e7edf2;
}
.rating-fill{
  display:block;
  height:100%;
  border-radius:999px;
  background:var(--star);
}
.review-list{
  margin-top:16px;
  display:grid;
  gap:10px;
}
.user-review{
  padding:15px;
  display:grid;
  grid-template-columns:minmax(0,1fr) 210px;
  gap:16px;
  border:1px solid #dfe7ed;
  border-radius:12px;
  background:#fff;
}
.reviewer-head{
  display:grid;
  grid-template-columns:42px minmax(0,1fr);
  gap:9px;
  align-items:center;
}
.reviewer-avatar{
  width:42px;
  height:42px;
  display:grid;
  place-items:center;
  border-radius:50%;
  color:#fff;
  background:linear-gradient(135deg,var(--navy),var(--blue));
  font-size:10px;
  font-weight:850;
}
.reviewer-head strong{
  display:block;
  color:#193950;
  font-size:9px;
}
.reviewer-head span{
  display:block;
  margin-top:2px;
  color:#71818d;
  font-size:7px;
}
.social-provider{
  display:inline-flex!important;
  width:17px;
  height:17px;
  margin-left:4px;
  align-items:center;
  justify-content:center;
  border-radius:5px;
  color:#fff!important;
  background:#4285f4;
  font-size:6px!important;
  font-weight:850;
}
.review-copy h3{
  margin:11px 0 0;
  color:var(--navy);
  font-size:12px;
}
.review-copy p{
  margin:6px 0 0;
  color:#5f7482;
  font-size:8px;
  line-height:1.65;
}
.review-date{
  margin-top:8px;
  color:#788793;
  font-size:7px;
}
.review-ratings{
  padding-left:15px;
  border-left:1px solid #e4eaef;
}
.review-ratings strong{
  display:block;
  margin-bottom:7px;
  color:var(--navy);
  font-size:9px;
}
.review-rating-row{
  min-height:25px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
  color:#607584;
  font-size:7px;
}
.review-rating-row b{
  color:var(--star);
  font-size:11px;
  letter-spacing:.6px;
}
.review-actions{
  margin-top:12px;
  display:flex;
  justify-content:center;
}
body[data-has-reviews="false"] #reviews{display:none}

.alternative-grid{
  margin-top:15px;
  display:grid;
  grid-template-columns:repeat(4,minmax(0,1fr));
  gap:9px;
}
.alternative-card{
  padding:13px;
  border:1px solid #dfe7ed;
  border-radius:11px;
  background:#fbfcfd;
}
.alternative-head{
  display:grid;
  grid-template-columns:39px minmax(0,1fr);
  gap:8px;
  align-items:center;
}
.alternative-card h3{
  margin:0;
  color:var(--navy);
  font-size:10px;
}
.alternative-card p{
  margin:7px 0 0;
  color:#687b89;
  font-size:7px;
  line-height:1.5;
}
.alternative-card a{
  margin-top:9px;
  min-height:33px;
  display:flex;
  align-items:center;
  justify-content:center;
  border:1px solid #b8d7e8;
  border-radius:7px;
  color:var(--navy);
  background:#fff;
  font-size:7px;
  font-weight:850;
}

.faq-list{
  margin-top:15px;
  display:grid;
  gap:7px;
}
.faq-list details{
  border:1px solid #dfe7ed;
  border-radius:10px;
  background:#fff;
  overflow:hidden;
}
.faq-list summary{
  min-height:48px;
  padding:11px 13px;
  display:grid;
  grid-template-columns:minmax(0,1fr) 26px;
  gap:10px;
  align-items:center;
  cursor:pointer;
  list-style:none;
  color:#25465e;
  font-size:9px;
  font-weight:800;
}
.faq-list summary::-webkit-details-marker{display:none}
.faq-list summary span:last-child{
  width:26px;
  height:26px;
  display:grid;
  place-items:center;
  border-radius:7px;
  color:var(--navy);
  background:#eaf5fc;
  transition:transform .18s ease;
}
.faq-list details[open] summary span:last-child{transform:rotate(45deg)}
.faq-answer{
  padding:0 13px 13px;
  color:#607584;
  font-size:8px;
  line-height:1.65;
}
.faq-answer ul{
  margin:6px 0 0;
  padding-left:17px;
}

.comparison-grid{
  margin-top:15px;
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:7px 10px;
}
.comparison-link{
  min-height:40px;
  padding:0 11px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:8px;
  border:1px solid #dfe7ed;
  border-radius:9px;
  color:#315875;
  background:#fbfcfd;
  font-size:8px;
  font-weight:750;
}
.comparison-link:hover{
  border-color:#9ccbe5;
  color:var(--navy);
  background:#f2f9fd;
}
.comparison-link span:last-child{color:var(--blue-dark)}

.sidebar-stack{
  position:sticky;
  top:82px;
  display:grid;
  gap:13px;
}
.sidebar-card{
  overflow:hidden;
  border:1px solid #dfe7ed;
  border-radius:14px;
  background:#fff;
  box-shadow:var(--shadow-sm);
}
.sidebar-card-head{
  padding:14px 15px;
  border-bottom:1px solid #e7edf2;
  background:#fbfcfd;
}
.sidebar-card-head h2{
  margin:0;
  color:var(--navy);
  font-size:14px;
}
.sidebar-card-head p{
  margin:3px 0 0;
  color:#71818d;
  font-size:7px;
}
.quick-fact-list{
  padding:9px 14px 14px;
  display:grid;
}
.quick-fact-row{
  min-height:38px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
  border-bottom:1px solid #edf1f4;
  color:#687b89;
  font-size:8px;
}
.quick-fact-row:last-child{border-bottom:0}
.quick-fact-row strong{
  color:#25465e;
  font-size:8px;
  text-align:right;
}
.sidebar-cta{
  padding:15px;
  color:#fff;
  background:
    radial-gradient(circle at 90% 10%,rgba(53,173,243,.25),transparent 35%),
    linear-gradient(145deg,var(--navy-dark),var(--navy));
}
.sidebar-cta span{
  display:block;
  color:#cde5f4;
  font-size:7px;
  font-weight:850;
  text-transform:uppercase;
}
.sidebar-cta h2{
  margin:5px 0 0;
  font-size:16px;
}
.sidebar-cta p{
  margin:5px 0 0;
  color:#d8e8f3;
  font-size:8px;
  line-height:1.55;
}
.sidebar-cta .primary-cta{
  width:100%;
  margin-top:11px;
}
.sidebar-cta .secondary-cta{
  width:100%;
  margin-top:7px;
  color:#fff;
  border-color:rgba(255,255,255,.25);
  background:rgba(255,255,255,.08);
}
.trust-list{
  padding:13px 14px;
  display:grid;
  gap:9px;
}
.trust-row{
  display:grid;
  grid-template-columns:28px minmax(0,1fr);
  gap:8px;
  align-items:start;
}
.trust-row span{
  width:28px;
  height:28px;
  display:grid;
  place-items:center;
  border-radius:8px;
  color:var(--navy);
  background:#eaf5fc;
  font-size:8px;
  font-weight:850;
}
.trust-row strong{
  display:block;
  color:#25465e;
  font-size:8px;
}
.trust-row p{
  margin:2px 0 0;
  color:#71818d;
  font-size:7px;
  line-height:1.45;
}

.site-footer{
  padding:36px 0 20px;
  color:#dceaf4;
  background:var(--navy-dark);
}
.footer-grid{
  display:grid;
  grid-template-columns:1.35fr repeat(3,.65fr);
  gap:28px;
}
.footer-brand p{
  max-width:420px;
  margin:10px 0 0;
  color:#bcd0de;
  font-size:8px;
  line-height:1.65;
}
.footer-column h2{
  margin:0;
  color:#fff;
  font-size:11px;
}
.footer-column nav{
  margin-top:9px;
  display:grid;
  gap:7px;
}
.footer-column a{
  color:#c8d9e5;
  font-size:8px;
}


.compare-bar{
  position:fixed;
  right:20px;
  bottom:20px;
  left:20px;
  z-index:100;
  max-width:720px;
  min-height:58px;
  margin:0 auto;
  padding:9px 10px 9px 14px;
  display:none;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  border:1px solid #a8cbe0;
  border-radius:12px;
  background:#fff;
  box-shadow:0 20px 50px rgba(18,52,77,.22);
}
.compare-bar.show{display:flex}
.compare-copy strong{
  display:block;
  color:var(--navy);
  font-size:9px;
}
.compare-copy span{
  display:block;
  margin-top:2px;
  color:#71818d;
  font-size:7px;
}
.compare-actions{
  display:flex;
  gap:7px;
}
.compare-actions button{
  min-height:38px;
  padding:0 11px;
  border-radius:8px;
  font-size:8px;
  font-weight:850;
}
.clear-compare{
  border:1px solid #d4e0e8;
  color:#516a7b;
  background:#fff;
}
.start-compare{
  border:0;
  color:#fff;
  background:var(--navy);
}

.mobile-sticky-actions{
  position:fixed;
  right:0;
  bottom:0;
  left:0;
  z-index:80;
  display:none;
  grid-template-columns:1fr 1fr;
  gap:8px;
  padding:9px 12px;
  border-top:1px solid #dbe5eb;
  background:rgba(255,255,255,.97);
  box-shadow:0 -8px 26px rgba(18,52,77,.10);
}
.mobile-sticky-actions a{
  min-height:43px;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius:8px;
  font-size:9px;
  font-weight:850;
}
.mobile-sticky-actions a:first-child{
  color:var(--navy);
  border:1px solid #b8d7e8;
  background:#fff;
}
.mobile-sticky-actions a:last-child{
  color:#fff;
  background:var(--orange);
}

.toast{
  position:fixed;
  right:20px;
  bottom:20px;
  z-index:130;
  display:none;
  max-width:min(410px,calc(100% - 40px));
  padding:13px 15px;
  border-radius:9px;
  color:#fff;
  background:#17364f;
  box-shadow:0 17px 40px rgba(0,0,0,.19);
  font-size:9px;
}
.toast.show{display:block}

@media(max-width:1050px){
  .header-nav{gap:17px}
  .hero-grid{grid-template-columns:1fr 320px}
  .page-shell{grid-template-columns:1fr}
  .sidebar-stack{
    position:static;
    grid-template-columns:repeat(3,1fr);
  }
  .sponsored-grid{grid-template-columns:repeat(2,1fr)}
}
@media(max-width:820px){
  .header-inner{flex-wrap:wrap;padding:12px 0}
  .header-search{
    order:3;
    width:100%;
    max-width:none;
    flex-basis:100%;
  }
  .header-nav{display:none;width:100%;padding:9px 0 2px}
  .header-nav.open{display:grid;grid-template-columns:1fr 1fr;gap:9px}
  .header-nav a,
  .header-nav button{
    min-height:40px;
    display:flex;
    align-items:center;
    justify-content:center;
    border:1px solid #dfe7ed;
    border-radius:8px;
    background:#fff;
  }
  .mobile-menu-button{display:grid}
  .hero-grid{grid-template-columns:1fr}
  .buyer-snapshot{display:grid;grid-template-columns:1fr 1fr;gap:12px}
  .buyer-snapshot h2,
  .snapshot-label{grid-column:1/-1}
  .snapshot-grid{margin-top:0}
  .snapshot-fit{margin-top:0}
  .snapshot-note{grid-column:1/-1;margin-top:0}
  .overview-grid{grid-template-columns:1fr}
  .facts-grid{grid-template-columns:repeat(2,1fr)}
  .fact-group:nth-child(2){border-right:0}
  .fact-group:nth-child(-n+2){border-bottom:1px solid #e1e8ee}
  .why-grid{grid-template-columns:repeat(2,1fr)}
  .feature-list{grid-template-columns:repeat(2,1fr)}
  .pricing-summary{grid-template-columns:repeat(2,1fr)}
  .pricing-fact{
    border-right:0;
    border-bottom:1px solid #e1e8ee;
  }
  .pricing-fact:last-child{
    grid-column:1/-1;
    border-bottom:0;
  }
  .integration-grid{grid-template-columns:repeat(3,1fr)}
  .alternative-grid{grid-template-columns:repeat(2,1fr)}
  .sidebar-stack{grid-template-columns:1fr 1fr}
  .sidebar-card:last-child{grid-column:1/-1}
  .footer-grid{grid-template-columns:1fr 1fr}
}
@media(max-width:620px){
  body{padding-bottom:63px}
  .container,
  .header-inner,
  .profile-nav,
  .page-shell{
    width:min(100% - 20px,1220px);
  }
  .profile-hero{padding-top:17px}
  .product-identity-card,
  .buyer-snapshot,
  .profile-section{border-radius:14px}
  .product-identity-card{padding:17px}
  .identity-main{grid-template-columns:78px minmax(0,1fr);gap:13px}
  .product-logo{width:78px;height:78px;border-radius:13px}
  .product-logo img,
  .product-logo-fallback{width:58px;height:58px}
  .identity-topline h1{font-size:28px}
  .identity-actions{display:grid;grid-template-columns:1fr 1fr}
  .primary-cta{grid-column:1/-1}
  .buyer-snapshot{display:block;padding:17px}
  .snapshot-grid{margin-top:13px}
  .snapshot-fit{margin-top:9px}
  .snapshot-note{margin-top:9px}
  .editorial-band{
    grid-template-columns:1fr;
    padding:17px;
  }
  .recommended-seal{margin:0 auto}
  .profile-nav a{padding:0 11px}
  .page-shell{margin-top:14px;gap:14px}
  .profile-section{padding:17px}
  .section-heading{align-items:stretch;flex-direction:column}
  .facts-grid{grid-template-columns:1fr}
  .fact-group{
    border-right:0;
    border-bottom:1px solid #e1e8ee;
  }
  .fact-group:nth-child(-n+2){border-bottom:1px solid #e1e8ee}
  .fact-group:last-child{border-bottom:0}
  .secondary-facts{grid-template-columns:1fr}
  .why-grid,
  .pros-cons,
  .sponsored-grid,
  .plan-grid,
  .review-overview,
  .alternative-grid,
  .comparison-grid,
  .sidebar-stack,
  .footer-grid{
    grid-template-columns:1fr;
  }
  .sponsored-head{align-items:stretch;flex-direction:column}
  .sponsored-disclosure{text-align:left}
  .feature-list{grid-template-columns:1fr}
  .feature-summary-action span:first-child{display:none}
  .integration-grid{grid-template-columns:repeat(2,1fr)}
  .pricing-summary{grid-template-columns:1fr}
  .pricing-fact,
  .pricing-fact:last-child{
    grid-column:auto;
    border-bottom:1px solid #e1e8ee;
  }
  .pricing-fact:last-child{border-bottom:0}
  .user-review{grid-template-columns:1fr}
  .review-ratings{
    padding:12px 0 0;
    border-top:1px solid #e4eaef;
    border-left:0;
  }
  .sidebar-card:last-child{grid-column:auto}
  .mobile-sticky-actions{display:grid}
  .compare-bar{bottom:70px}
}
@media(max-width:420px){
  .snapshot-grid,
  .identity-actions,
  .integration-grid{grid-template-columns:1fr}
  .primary-cta{grid-column:auto}
  .sponsored-card-actions{grid-template-columns:1fr}
}
@media(prefers-reduced-motion:reduce){
  html{scroll-behavior:auto}
  *,
  *::before,
  *::after{
    scroll-behavior:auto!important;
    transition-duration:.01ms!important;
    animation-duration:.01ms!important;
  }
}


/* =========================================================
   Next-level Software Profile presentation
========================================================= */
body{
  font-size:16px;
  line-height:1.68;
}
.brand{font-size:23px}
.header-link,
.header-nav a,
.header-nav button{font-size:14px}
.global-search,
.header-search input{font-size:14px}
.breadcrumb{font-size:13px}
.identity-topline h1{font-size:clamp(36px,4.5vw,46px)}
.tagline{font-size:16px}
.rating-line strong{font-size:16px}
.rating-line a,
.no-review-rating{font-size:14px}
.primary-cta,
.secondary-cta,
.ghost-cta{font-size:14px}
.category-chip{font-size:12px}
.snapshot-label,
.editorial-eyebrow,
.section-kicker{font-size:12px}
.buyer-snapshot h2{font-size:23px}
.snapshot-item span,
.snapshot-fit span{font-size:12px}
.snapshot-item strong,
.snapshot-fit strong{font-size:14px}
.snapshot-note{font-size:12px}
.editorial-band h2{font-size:25px}
.editorial-band blockquote{font-size:15px}
.editorial-byline{font-size:13px}
.profile-nav a{font-size:13px}
.section-heading h2{font-size:29px}
.section-heading p{font-size:14px}
.section-link{font-size:13px}
.overview-copy h3,
.media-panel h3{font-size:19px}
.overview-text{font-size:15px}
.text-toggle{font-size:13px}
.media-thumb{font-size:12px}
.review-summary-card span,
.review-summary-card small,
.review-management-head p,
.review-lock-notice p{font-size:12px}
.review-summary-card strong{font-size:28px}
.review-lock-notice strong{font-size:14px}
.review-controls input,
.review-controls select,
.review-status-tab{font-size:13px}
.review-profile h3{font-size:17px}
.review-profile p,
.review-type,
.review-date-row,
.review-card-footer span{font-size:12px}
.review-content h4{font-size:16px}
.review-content>p{font-size:14px}
.review-rating-panel>strong,
.rating-row,
.review-card-footer strong,
.review-detail-button{font-size:12px}
.sponsored-head span,
.sponsored-disclosure,
.sponsored-head p{font-size:12px}
.sponsored-head h2{font-size:26px}
.sponsored-card h3{font-size:16px}
.sponsored-card .mini-rating,
.sponsored-card>p{font-size:13px}
.sponsored-card-actions a,
.sponsored-card-actions button{font-size:12px}
.feature-summary-copy strong{font-size:16px}
.feature-summary-copy span,
.feature-summary-action,
.feature-details>p,
.feature-list span{font-size:13px}
.integration-chip strong,
.integration-footer span,
.show-more-button{font-size:13px}
.pricing-fact span,
.pricing-fact strong,
.pricing-links a,
.plan-name,
.plan-price span,
.pricing-note{font-size:13px}
.plan-price strong{font-size:27px}
.rating-summary span,
.rating-bar,
.reviewer-head strong,
.reviewer-head span,
.review-copy>p,
.review-date,
.review-ratings strong,
.review-rating-row{font-size:13px}
.review-copy h3{font-size:17px}
.alternative-card h3{font-size:15px}
.alternative-card p,
.alternative-card a{font-size:13px}
.faq-list summary,
.faq-answer{font-size:14px}
.comparison-link{font-size:13px}
.sidebar-card-head h2{font-size:18px}
.sidebar-card-head p,
.quick-fact-row,
.quick-fact-row strong,
.sidebar-cta p,
.trust-row strong,
.trust-row p{font-size:13px}
.sidebar-cta h2{font-size:20px}
.footer-brand p,
.footer-column a{font-size:13px}
.footer-column h2{font-size:15px}


.profile-hero{
  padding-top:30px;
  padding-bottom:32px;
  background:
    radial-gradient(circle at 86% 12%,rgba(53,173,243,.22),transparent 32%),
    radial-gradient(circle at 9% 100%,rgba(6,62,115,.10),transparent 30%),
    linear-gradient(180deg,#fbfdff,#edf5fa);
}
.product-identity-card,
.buyer-snapshot{
  border-radius:22px;
  box-shadow:0 18px 50px rgba(15,48,73,.10);
}
.product-identity-card{padding:28px}
.product-logo{
  width:112px;
  height:112px;
  border-radius:21px;
}
.product-logo img,
.product-logo-fallback{
  width:82px;
  height:82px;
}
.identity-main{
  grid-template-columns:112px minmax(0,1fr);
  gap:23px;
}
.verified-badge,
.claim-profile{
  min-height:31px;
  padding:5px 10px;
  font-size:12px;
}
.identity-actions{margin-top:21px}
.primary-cta,
.secondary-cta,
.ghost-cta{
  min-height:48px;
  padding:0 17px;
  border-radius:10px;
}
.hero-category-row{
  margin-top:22px;
  padding-top:19px;
}
.category-chip{
  min-height:34px;
  padding:6px 11px;
}
.buyer-snapshot{padding:22px}
.snapshot-grid{gap:10px}
.snapshot-item,
.snapshot-fit{
  padding:13px;
  border-radius:11px;
}
.editorial-band{
  padding:24px 26px;
  border-radius:21px;
}
.recommended-seal{
  width:138px;
  height:138px;
}
.profile-nav-wrap{box-shadow:0 7px 20px rgba(15,48,73,.04)}
.profile-nav{min-height:66px}
.profile-nav a{min-height:66px}
.page-shell{
  width:min(1280px,calc(100% - 36px));
  grid-template-columns:minmax(0,1fr) 330px;
  gap:22px;
}
.profile-section{
  padding:28px;
  border-radius:18px;
}
.section-heading{padding-bottom:18px}
.overview-grid{
  margin-top:20px;
  gap:23px;
}
.media-stage{border-radius:15px}
.play-button{
  width:60px;
  height:60px;
}
.media-thumbs{gap:8px}
.media-thumb{min-height:45px}

/* Improved company and product-information icons */
.np-icon{
  width:24px;
  height:24px;
  fill:none;
  stroke:currentColor;
  stroke-width:1.8;
  stroke-linecap:round;
  stroke-linejoin:round;
}
.np-company-facts{
  margin-top:23px;
  display:grid;
  grid-template-columns:repeat(4,minmax(0,1fr));
  gap:11px;
}
.np-fact-card{
  min-width:0;
  padding:17px;
  position:relative;
  border:1px solid #dce6ed;
  border-radius:13px;
  background:#fbfcfd;
}
.np-icon-box{
  width:46px;
  height:46px;
  display:grid;
  place-items:center;
  border-radius:12px;
  color:var(--navy);
  background:#eaf5fc;
}
.np-fact-card>span:nth-child(2){
  display:block;
  margin-top:11px;
  color:#71838f;
  font-size:12px;
  font-weight:750;
}
.np-fact-card strong{
  display:block;
  margin-top:2px;
  color:#1d4059;
  font-size:15px;
}
.np-tooltip-card::after{
  content:attr(data-tooltip);
  position:absolute;
  left:16px;
  bottom:calc(100% + 8px);
  z-index:30;
  width:max-content;
  max-width:230px;
  padding:9px 11px;
  border-radius:8px;
  color:#fff;
  background:#17364f;
  box-shadow:0 12px 28px rgba(15,48,73,.18);
  font-size:12px;
  font-weight:600;
  opacity:0;
  pointer-events:none;
  transform:translateY(4px);
  transition:.16s ease;
}
.np-tooltip-card:hover::after,
.np-tooltip-card:focus::after{
  opacity:1;
  transform:translateY(0);
}
.np-capability-grid{
  margin-top:12px;
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:11px;
}
.np-capability-card{
  padding:17px;
  border:1px solid #dce6ed;
  border-radius:13px;
  background:#fff;
}
.np-capability-title{
  display:flex;
  align-items:center;
  gap:10px;
}
.np-capability-title>span{
  width:42px;
  height:42px;
  display:grid;
  place-items:center;
  border-radius:11px;
  color:var(--navy);
  background:#eaf5fc;
}
.np-capability-title h3{
  margin:0;
  color:var(--navy);
  font-size:17px;
}
.np-tag-list{
  margin-top:13px;
  display:flex;
  flex-wrap:wrap;
  gap:7px;
}
.np-tag-list span{
  min-height:31px;
  padding:5px 9px;
  display:inline-flex;
  align-items:center;
  border:1px solid #dbe5eb;
  border-radius:999px;
  color:#496374;
  background:#f9fbfc;
  font-size:12px;
  font-weight:700;
}

/* Dedicated Buyer Fit */
.np-buyer-fit-grid{
  margin-top:20px;
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:12px;
}
.np-buyer-card{
  min-width:0;
  padding:19px;
  border:1px solid #dce6ed;
  border-radius:14px;
  background:#fbfcfd;
}
.np-buyer-card:first-child{
  grid-column:1/-1;
  display:grid;
  grid-template-columns:50px minmax(0,1fr);
  gap:13px;
  align-items:start;
  border-color:#bcdcec;
  background:
    radial-gradient(circle at 96% 10%,rgba(53,173,243,.12),transparent 34%),
    #f5fbfe;
}
.np-buyer-card:last-child{
  grid-column:1/-1;
  border-color:#ead9b5;
  background:var(--amber-soft);
}
.np-buyer-icon{
  width:45px!important;
  height:45px!important;
  display:grid!important;
  place-items:center;
  border-radius:12px!important;
  color:#fff!important;
  background:var(--navy)!important;
}
.np-buyer-card:last-child .np-buyer-icon{
  color:var(--amber)!important;
  background:#fff!important;
}
.np-buyer-card h3{
  margin:8px 0 0;
  color:var(--navy);
  font-size:18px;
}
.np-buyer-card:first-child h3{margin-top:0}
.np-buyer-card p,
.np-buyer-card ul{
  margin-top:7px;
  color:#566f7f;
  font-size:14px;
  line-height:1.6;
}
.np-buyer-card ul{
  padding:0;
  display:grid;
  gap:7px;
  list-style:none;
}
.np-buyer-card li::before{
  content:"\2713";
  margin-right:7px;
  color:var(--green);
  font-weight:850;
}

/* Dedicated Pros and Cons */
.np-pros-cons-grid{
  margin-top:20px;
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:13px;
}
.np-pros-cons-card{
  padding:20px;
  border-radius:15px;
}
.np-pros-card{
  border:1px solid #cce4d8;
  background:#f5fbf8;
}
.np-cons-card{
  border:1px solid #eed6d2;
  background:#fff8f7;
}
.np-pros-cons-title{
  display:flex;
  align-items:center;
  gap:10px;
}
.np-pros-cons-title>span{
  width:44px;
  height:44px;
  display:grid;
  place-items:center;
  border-radius:11px;
  background:#fff;
  font-size:18px;
  font-weight:850;
}
.np-pros-card .np-pros-cons-title>span{color:var(--green)}
.np-cons-card .np-pros-cons-title>span{color:var(--red)}
.np-pros-cons-title h3{
  margin:0;
  color:var(--navy);
  font-size:21px;
}
.np-pros-cons-card ul{
  margin:16px 0 0;
  padding:0;
  display:grid;
  gap:11px;
  list-style:none;
}
.np-pros-cons-card li{
  display:grid;
  grid-template-columns:26px minmax(0,1fr);
  gap:9px;
  color:#516b7a;
  font-size:14px;
  line-height:1.52;
}
.np-pros-cons-card li::before{
  width:26px;
  height:26px;
  display:grid;
  place-items:center;
  border-radius:8px;
  font-size:12px;
  font-weight:850;
}
.np-pros-card li::before{
  content:"\2713";
  color:#176c49;
  background:#e3f4eb;
}
.np-cons-card li::before{
  content:"!";
  color:#a23e35;
  background:#ffe9e7;
}

/* Sponsored discovery */
.sponsored-discovery{border-color:#c5dce8}
.sponsored-head{padding:24px 26px}
.sponsored-grid{padding:17px;gap:11px}
.sponsored-card{
  padding:16px;
  border-radius:14px;
}
.sponsored-product-head{
  grid-template-columns:50px minmax(0,1fr);
  gap:10px;
}
.mini-logo{
  width:50px;
  height:50px;
  font-size:13px;
}
.sponsored-card>p{
  min-height:65px;
  margin-top:12px;
}
.sponsored-card-actions{margin-top:12px}
.sponsored-card-actions a,
.sponsored-card-actions button{min-height:40px}

/* Features */
.feature-accordion{margin-top:17px;gap:10px}
.feature-accordion details{border-radius:13px}
.feature-accordion summary{
  min-height:66px;
  padding:13px 16px;
}
.feature-details{padding:17px}
.feature-list{
  margin-top:15px;
  gap:9px 13px;
}
.feature-list span{
  min-height:35px;
  padding:7px 9px;
  border:1px solid #dfe7ed;
  border-radius:8px;
  background:#fbfcfd;
}

/* Integrations */
.integration-grid{margin-top:18px;gap:9px}
.integration-chip{
  min-height:66px;
  padding:10px;
  grid-template-columns:42px minmax(0,1fr);
}
.integration-logo{
  width:42px;
  height:42px;
}

/* Pricing */
.pricing-summary{margin-top:18px}
.pricing-fact{padding:15px}
.pricing-links{margin-top:12px}
.pricing-links a{min-height:40px}
.plan-grid{margin-top:17px;gap:11px}
.plan-name{padding:13px 15px}
.plan-price{padding:22px 15px}

/* Reviews */
.review-overview{margin-top:18px}
.rating-summary{padding:20px}
.user-review{
  padding:18px;
  grid-template-columns:minmax(0,1fr) 230px;
}
.reviewer-avatar{
  width:48px;
  height:48px;
}
.review-ratings{padding-left:17px}

/* Alternatives and FAQ */
.alternative-grid{margin-top:18px;gap:10px}
.alternative-card{padding:15px}
.faq-list{margin-top:17px;gap:8px}
.faq-list summary{
  min-height:56px;
  padding:12px 14px;
}
.faq-answer{padding:0 14px 14px}

/* Profile owner section */
.np-vendor-panel{
  margin-top:19px;
  padding:19px;
  display:grid;
  grid-template-columns:54px minmax(0,1fr) auto;
  gap:14px;
  align-items:center;
  border:1px solid #cfdfea;
  border-radius:14px;
  background:
    radial-gradient(circle at 95% 12%,rgba(53,173,243,.12),transparent 35%),
    #f7fbfe;
}
.np-vendor-icon{
  width:54px;
  height:54px;
  display:grid;
  place-items:center;
  border-radius:13px;
  color:#fff;
  background:var(--navy);
}
.np-vendor-panel strong{
  display:block;
  color:var(--navy);
  font-size:16px;
}
.np-vendor-panel p{
  margin:3px 0 0;
  color:#607584;
  font-size:13px;
}
.np-vendor-actions{
  display:flex;
  gap:8px;
}
.np-vendor-actions a{
  min-height:42px;
  padding:0 12px;
  display:flex;
  align-items:center;
  border-radius:9px;
  font-size:12px;
  font-weight:850;
}
.np-vendor-actions a:first-child{
  color:#fff;
  background:var(--navy);
}
.np-vendor-actions a:last-child{
  border:1px solid #acd1e5;
  color:var(--navy);
  background:#fff;
}
body[data-profile-state="claimed"] .np-unclaimed-copy{display:none}
body[data-profile-state="unclaimed"] .np-claimed-copy{display:none}

.sidebar-stack{top:82px}
.sidebar-card{border-radius:15px}
.sidebar-card-head{padding:16px}
.quick-fact-list{padding:8px 15px 15px}
.quick-fact-row{min-height:44px}
.sidebar-cta{padding:18px}
.trust-list{padding:15px;gap:12px}
.trust-row{
  grid-template-columns:40px minmax(0,1fr);
  gap:10px;
}
.trust-row span{
  width:40px;
  height:40px;
}

@media(max-width:900px){
  .np-company-facts{grid-template-columns:repeat(2,1fr)}
  .np-capability-grid{grid-template-columns:1fr}
  .np-buyer-fit-grid{grid-template-columns:1fr}
  .np-buyer-card:first-child,
  .np-buyer-card:last-child{grid-column:auto}
  .np-pros-cons-grid{grid-template-columns:1fr}
}
@media(max-width:620px){
  body{font-size:15px}
  .profile-section{padding:19px}
  .section-heading h2{font-size:25px}
  .identity-main{
    grid-template-columns:82px minmax(0,1fr);
    gap:14px;
  }
  .product-logo{
    width:82px;
    height:82px;
  }
  .product-logo img,
  .product-logo-fallback{
    width:60px;
    height:60px;
  }
  .identity-topline h1{font-size:31px}
  .primary-cta,
  .secondary-cta,
  .ghost-cta{font-size:13px}
  .np-company-facts{grid-template-columns:1fr}
  .np-buyer-card:first-child{grid-template-columns:1fr}
  .np-vendor-panel{grid-template-columns:1fr}
  .np-vendor-actions{flex-direction:column}
  .np-vendor-actions a{justify-content:center}
}


/* =========================================================
   Recreated final refinements
========================================================= */
.recreated-category-row{
  margin-top:22px;
  padding-top:19px;
  display:grid;
  grid-template-columns:76px minmax(0,1fr);
  gap:12px;
  align-items:start;
}
.category-row-label{
  padding-top:6px;
  color:var(--sky-dark);
  font-size:12px;
  font-weight:850;
  letter-spacing:.7px;
  text-transform:uppercase;
}
.category-row-links{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
}
.primary-category{
  border-color:#8bc9e9;
  color:#fff;
  background:var(--navy);
}
.primary-category:hover{
  color:#fff;
  background:var(--navy-dark);
}

.recreated-sponsored-signals{
  margin-top:12px;
  display:grid;
  gap:7px;
}
.recreated-sponsored-signals>span{
  padding:9px 10px;
  border:1px solid #e0e8ee;
  border-radius:9px;
  background:#fbfcfd;
}
.recreated-sponsored-signals small{
  display:block;
  color:#71838f;
  font-size:11px;
  font-weight:750;
}
.recreated-sponsored-signals strong{
  display:block;
  margin-top:2px;
  color:#28495f;
  font-size:13px;
}
.single-sponsored-action{
  grid-template-columns:1fr;
}
.single-sponsored-action a{
  width:100%;
}

.np-capability-grid{
  grid-template-columns:repeat(4,minmax(0,1fr));
}
.scalable-information{
  margin-top:12px;
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:11px;
}
.expandable-information-card{
  padding:18px;
  border:1px solid #dce6ed;
  border-radius:14px;
  background:#fff;
}
.expandable-information-head{
  display:grid;
  grid-template-columns:46px minmax(0,1fr);
  gap:11px;
  align-items:center;
}
.expandable-information-icon{
  width:46px;
  height:46px;
  display:grid;
  place-items:center;
  border-radius:12px;
  color:var(--navy);
  background:#eaf5fc;
}
.expandable-information-head span{
  display:block;
  color:#71838f;
  font-size:12px;
  font-weight:750;
}
.expandable-information-head strong{
  display:block;
  margin-top:2px;
  color:var(--navy);
  font-size:16px;
}
.expandable-value-list{
  margin-top:14px;
  display:flex;
  flex-wrap:wrap;
  gap:7px;
}
.expandable-value-list>span{
  min-height:31px;
  padding:5px 9px;
  display:inline-flex;
  align-items:center;
  border:1px solid #dbe5eb;
  border-radius:999px;
  color:#496374;
  background:#f9fbfc;
  font-size:12px;
  font-weight:700;
}
.expandable-value-list:not(.expanded) .collapsed-value{
  display:none;
}
.expand-values-button{
  margin-top:12px;
  padding:0;
  border:0;
  color:var(--sky-dark);
  background:transparent;
  font-size:12px;
  font-weight:850;
  text-decoration:underline;
  text-underline-offset:3px;
}

.problem-highlight-card{
  padding:20px!important;
  display:grid!important;
  grid-template-columns:56px minmax(0,1fr)!important;
  gap:15px!important;
  align-items:start!important;
}
.problem-highlight-card .np-buyer-icon{
  width:56px!important;
  height:56px!important;
  grid-row:1/4;
}
.problem-highlight-card h3{
  margin:0!important;
  color:var(--sky-dark);
  font-size:12px!important;
  letter-spacing:.7px;
  text-transform:uppercase;
}
.problem-highlight-card>strong{
  display:block;
  margin-top:3px;
  color:var(--navy);
  font-size:20px;
  line-height:1.4;
}
.problem-highlight-card p{
  margin-top:5px!important;
  font-size:14px!important;
}

.recreated-pricing-facts{
  margin-top:18px;
  display:grid;
  grid-template-columns:repeat(5,minmax(0,1fr));
  gap:10px;
}
.recreated-pricing-fact{
  min-width:0;
  padding:15px;
  border:1px solid #dce6ed;
  border-radius:12px;
  background:#fbfcfd;
}
.recreated-pricing-icon{
  width:42px;
  height:42px;
  display:grid;
  place-items:center;
  border-radius:11px;
  color:var(--navy);
  background:#eaf5fc;
}
.recreated-pricing-fact>span:nth-child(2){
  display:block;
  margin-top:10px;
  color:#71838f;
  font-size:12px;
  font-weight:750;
}
.recreated-pricing-fact strong{
  display:block;
  margin-top:2px;
  color:#1e425a;
  font-size:14px;
}

.recreated-alternative-meta{
  margin-top:11px;
  display:grid;
  gap:8px;
}
.recreated-alternative-rating{
  color:var(--star);
  font-size:13px;
  font-weight:850;
}
.recreated-alternative-rating strong{
  color:#526b7b;
}
.recreated-alternative-meta>span:last-child{
  padding:9px 10px;
  border:1px solid #e0e8ee;
  border-radius:9px;
  background:#fff;
}
.recreated-alternative-meta small{
  display:block;
  color:#71838f;
  font-size:11px;
  font-weight:750;
}
.recreated-alternative-meta>span:last-child strong{
  display:block;
  margin-top:2px;
  color:#28495f;
  font-size:13px;
}
.alternative-card a{
  width:100%;
}

.trust-state{
  display:none;
  gap:12px;
}
body[data-profile-state="claimed"][data-has-reviews="true"] .trust-claimed-reviewed{
  display:grid;
}
body[data-profile-state="claimed"][data-has-reviews="false"] .trust-claimed-no-reviews{
  display:grid;
}
body[data-profile-state="unclaimed"][data-has-reviews="true"] .trust-unclaimed-reviewed{
  display:grid;
}
body[data-profile-state="unclaimed"][data-has-reviews="false"] .trust-unclaimed-no-reviews{
  display:grid;
}

@media(max-width:1050px){
  .np-capability-grid{
    grid-template-columns:repeat(2,1fr);
  }
  .recreated-pricing-facts{
    grid-template-columns:repeat(3,1fr);
  }
}
@media(max-width:820px){
  .scalable-information{
    grid-template-columns:1fr;
  }
  .recreated-pricing-facts{
    grid-template-columns:repeat(2,1fr);
  }
}
@media(max-width:620px){
  .recreated-category-row{
    grid-template-columns:1fr;
  }
  .category-row-label{
    padding-top:0;
  }
  .category-row-links{
    flex-wrap:nowrap;
    overflow-x:auto;
    padding-bottom:3px;
    scrollbar-width:none;
  }
  .category-row-links::-webkit-scrollbar{
    display:none;
  }
  .category-row-links .category-chip{
    flex:0 0 auto;
  }
  .np-capability-grid,
  .recreated-pricing-facts{
    grid-template-columns:1fr;
  }
  .problem-highlight-card{
    grid-template-columns:1fr!important;
  }
  .problem-highlight-card .np-buyer-icon{
    grid-row:auto;
  }
}


/* =========================================================
   Final full-width Software Profile
========================================================= */
.page-shell{
  grid-template-columns:minmax(0,1fr);
  width:min(1280px,calc(100% - 36px));
}
.content-stack{
  width:100%;
}
.sidebar-stack{
  display:none;
}

/* Hero categories with scalable expansion */
.final-category-row{
  margin-top:22px;
  padding-top:19px;
  display:grid;
  grid-template-columns:76px minmax(0,1fr);
  gap:12px;
  align-items:start;
}
.final-category-content{
  min-width:0;
  display:flex;
  align-items:flex-start;
  flex-wrap:wrap;
  gap:8px;
}
.category-row-links,
.additional-category-links{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
}
.additional-category-links[hidden]{
  display:none;
}
.category-view-all{
  min-height:34px;
  padding:6px 11px;
  border:1px dashed #8fc6e4;
  border-radius:999px;
  color:var(--navy);
  background:#fff;
  font-size:12px;
  font-weight:850;
}
.category-view-all:hover{
  border-style:solid;
  background:#edf8ff;
}

/* Sticky navigation with actions */
.profile-nav{
  width:min(1280px,calc(100% - 36px));
  min-height:68px;
  display:grid;
  grid-template-columns:minmax(0,1fr) auto;
  gap:14px;
  overflow:visible;
}
.profile-nav-links{
  min-width:0;
  display:flex;
  align-items:center;
  gap:2px;
  overflow-x:auto;
  scrollbar-width:none;
}
.profile-nav-links::-webkit-scrollbar{
  display:none;
}
.profile-nav-links a{
  flex:0 0 auto;
}
.profile-nav-actions{
  display:flex;
  align-items:center;
  gap:8px;
}
.profile-nav-actions a{
  min-height:42px;
  padding:0 13px;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius:9px;
  font-size:12px;
  font-weight:850;
  white-space:nowrap;
}
.sticky-review-action{
  border:1px solid #acd1e5;
  color:var(--navy);
  background:#fff;
}
.sticky-website-action{
  color:#fff!important;
  background:var(--orange);
  box-shadow:0 7px 16px rgba(242,74,46,.18);
}
.profile-nav-actions a::after{
  display:none;
}

/* Full-width evaluation snapshot */
.final-evaluation-section{
  padding:28px;
}
.final-quick-facts{
  margin-top:20px;
  display:grid;
  grid-template-columns:repeat(7,minmax(0,1fr));
  gap:9px;
}
.final-quick-facts article{
  min-width:0;
  padding:14px;
  border:1px solid #dce6ed;
  border-radius:12px;
  background:#fbfcfd;
}
.final-quick-facts span{
  display:block;
  color:#71838f;
  font-size:12px;
  font-weight:750;
}
.final-quick-facts strong{
  display:block;
  margin-top:4px;
  color:#1d4059;
  font-size:14px;
}
.final-evaluation-grid{
  margin-top:13px;
  display:grid;
  grid-template-columns:minmax(300px,.78fr) minmax(0,1.22fr);
  gap:12px;
}
.official-access-panel,
.universal-trust-panel{
  padding:20px;
  border:1px solid #dce6ed;
  border-radius:14px;
}
.official-access-panel{
  display:grid;
  grid-template-columns:52px minmax(0,1fr);
  gap:13px;
  align-items:start;
  color:#fff;
  background:
    radial-gradient(circle at 95% 5%,rgba(53,173,243,.27),transparent 38%),
    linear-gradient(145deg,var(--navy-dark),var(--navy));
}
.official-access-icon{
  width:52px;
  height:52px;
  display:grid;
  place-items:center;
  border-radius:13px;
  color:var(--navy);
  background:#fff;
  font-size:21px;
  font-weight:850;
}
.official-access-panel div>span{
  display:block;
  color:#cfe5f3;
  font-size:12px;
  font-weight:850;
  letter-spacing:.7px;
  text-transform:uppercase;
}
.official-access-panel h3{
  margin:5px 0 0;
  color:#fff;
  font-size:19px;
}
.official-access-panel p{
  margin:6px 0 0;
  color:#d8e7f1;
  font-size:13px;
  line-height:1.6;
}
.universal-trust-panel{
  background:
    radial-gradient(circle at 95% 5%,rgba(53,173,243,.11),transparent 34%),
    #f8fbfd;
}
.universal-trust-head>span{
  display:block;
  color:var(--sky-dark);
  font-size:12px;
  font-weight:850;
  letter-spacing:.7px;
  text-transform:uppercase;
}
.universal-trust-head h3{
  margin:4px 0 0;
  color:var(--navy);
  font-size:20px;
}
.universal-trust-grid{
  margin-top:14px;
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:10px;
}
.universal-trust-grid>div{
  padding:12px;
  display:grid;
  grid-template-columns:36px minmax(0,1fr);
  gap:9px;
  align-items:start;
  border:1px solid #dce6ed;
  border-radius:11px;
  background:#fff;
}
.universal-trust-grid>div>span{
  width:36px;
  height:36px;
  display:grid;
  place-items:center;
  border-radius:9px;
  color:var(--navy);
  background:#eaf5fc;
  font-size:12px;
  font-weight:850;
  grid-row:1/3;
}
.universal-trust-grid strong{
  color:#264860;
  font-size:13px;
}
.universal-trust-grid p{
  margin:2px 0 0;
  color:#71838f;
  font-size:12px;
  line-height:1.45;
}

/* Full-width sections can use more space */
.overview-grid{
  grid-template-columns:minmax(0,1.12fr) minmax(360px,.88fr);
}
.np-capability-grid{
  grid-template-columns:repeat(4,minmax(0,1fr));
}
.sponsored-grid{
  grid-template-columns:repeat(4,minmax(0,1fr));
}
.integration-grid{
  grid-template-columns:repeat(5,minmax(0,1fr));
}
.alternative-grid{
  grid-template-columns:repeat(4,minmax(0,1fr));
}
.comparison-grid{
  grid-template-columns:repeat(2,minmax(0,1fr));
}

/* Remove desktop compare-bar spacing */
.compare-bar{
  display:none!important;
}

@media(max-width:1120px){
  .final-quick-facts{
    grid-template-columns:repeat(4,1fr);
  }
  .final-evaluation-grid{
    grid-template-columns:1fr;
  }
  .integration-grid{
    grid-template-columns:repeat(4,1fr);
  }
}
@media(max-width:900px){
  .profile-nav{
    grid-template-columns:minmax(0,1fr) auto;
  }
  .profile-nav-actions a{
    padding:0 10px;
  }
  .final-quick-facts{
    grid-template-columns:repeat(3,1fr);
  }
  .overview-grid{
    grid-template-columns:1fr;
  }
  .sponsored-grid{
    grid-template-columns:repeat(2,1fr);
  }
}
@media(max-width:700px){
  .profile-nav{
    width:100%;
    padding:0 10px;
  }
  .profile-nav-actions{
    display:none;
  }
  .final-category-row{
    grid-template-columns:1fr;
  }
  .category-row-label{
    padding-top:0;
  }
  .final-category-content{
    flex-wrap:nowrap;
    overflow-x:auto;
    padding-bottom:3px;
    scrollbar-width:none;
  }
  .final-category-content::-webkit-scrollbar{
    display:none;
  }
  .category-row-links,
  .additional-category-links{
    flex-wrap:nowrap;
  }
  .category-chip,
  .category-view-all{
    flex:0 0 auto;
  }
  .final-quick-facts{
    grid-template-columns:repeat(2,1fr);
  }
  .universal-trust-grid{
    grid-template-columns:1fr;
  }
  .np-capability-grid,
  .integration-grid{
    grid-template-columns:repeat(2,1fr);
  }
}
@media(max-width:480px){
  .final-quick-facts,
  .np-capability-grid,
  .integration-grid,
  .sponsored-grid{
    grid-template-columns:1fr;
  }
  .official-access-panel{
    grid-template-columns:1fr;
  }
}


/* =========================================================
   Optional approved Executive Interview
========================================================= */
body[data-has-interview="false"] .interview-nav-item,
body[data-has-interview="false"] #interview{
  display:none!important;
}

/* Buyer review encouragement works regardless of claim status */
.buyer-contribution-panel{
  align-items:flex-start;
}
.buyer-contribution-state{
  display:none;
}
body[data-has-reviews="true"] .contribution-with-reviews{
  display:block;
}
body[data-has-reviews="false"] .contribution-without-reviews{
  display:block;
}
.buyer-contribution-note{
  margin-top:9px!important;
  color:#d8e8f3!important;
  font-size:11px!important;
  font-weight:700;
}
.buyer-contribution-action{
  min-height:40px;
  margin-top:13px;
  padding:0 14px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border:1px solid rgba(255,255,255,.28);
  border-radius:9px;
  color:#063e73;
  background:#fff;
  font-size:12px;
  font-weight:850;
  box-shadow:0 8px 20px rgba(3,45,87,.14);
}
.buyer-contribution-action:hover{
  background:#edf8ff;
}

.public-interview-status{
  min-height:31px;
  padding:5px 10px;
  display:inline-flex;
  align-items:center;
  gap:6px;
  flex:0 0 auto;
  border-radius:999px;
  color:#176c49;
  background:#eaf8f1;
  font-size:11px;
  font-weight:850;
}
.public-interview-status .np-icon{
  width:17px;
  height:17px;
}

.public-interview-executive{
  margin-top:18px;
  padding:17px;
  display:grid;
  grid-template-columns:88px minmax(0,1fr) auto;
  gap:15px;
  align-items:center;
  border:1px solid #dce6ed;
  border-radius:13px;
  background:
    radial-gradient(circle at 95% 8%,rgba(53,173,243,.10),transparent 34%),
    #fbfcfd;
}
.public-interview-photo{
  width:88px;
  height:88px;
  object-fit:cover;
  border:4px solid #fff;
  border-radius:15px;
  box-shadow:0 10px 24px rgba(15,48,73,.12);
}
.public-interview-person>span{
  display:block;
  color:#168fce;
  font-size:10px;
  font-weight:850;
  letter-spacing:.65px;
  text-transform:uppercase;
}
.public-interview-person h3{
  margin:4px 0 0;
  color:#063e73;
  font-size:18px;
  line-height:1.35;
}
.public-interview-person p{
  margin:4px 0 0;
  color:#617482;
  font-size:12px;
}
.public-interview-linkedin{
  min-height:41px;
  padding:0 12px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  border:1px solid #b8d7e8;
  border-radius:9px;
  color:#063e73;
  background:#fff;
  font-size:11px;
  font-weight:850;
}
.public-interview-linkedin span{
  width:24px;
  height:24px;
  display:grid;
  place-items:center;
  border-radius:6px;
  color:#fff;
  background:#0a66c2;
  font-size:10px;
  font-weight:850;
}

.public-interview-publication-note{
  margin-top:11px;
  padding:12px 14px;
  display:grid;
  grid-template-columns:28px minmax(0,1fr);
  gap:9px;
  align-items:center;
  border:1px solid #d9e7ef;
  border-radius:10px;
  background:#f5fbfe;
}
.public-interview-publication-note>span{
  width:28px;
  height:28px;
  display:grid;
  place-items:center;
  border-radius:8px;
  color:#063e73;
  background:#e5f3fb;
  font-size:11px;
  font-weight:850;
}
.public-interview-publication-note p{
  margin:0;
  color:#5d7281;
  font-size:11px;
  line-height:1.55;
}

.public-interview-list{
  margin-top:14px;
  display:grid;
  gap:9px;
}
.public-interview-question{
  overflow:hidden;
  border:1px solid #dfe7ed;
  border-radius:11px;
  background:#fff;
}
.public-interview-question-head{
  padding:13px 14px;
  display:grid;
  grid-template-columns:32px minmax(0,1fr);
  gap:11px;
  align-items:start;
  background:#fbfcfd;
}
.public-interview-question-head>span{
  width:32px;
  height:32px;
  display:grid;
  place-items:center;
  border-radius:9px;
  color:#063e73;
  background:#eaf5fc;
  font-size:10px;
  font-weight:850;
}
.public-interview-question-head h3{
  margin:5px 0 0;
  color:#28485f;
  font-size:14px;
  line-height:1.5;
}
.public-interview-answer{
  padding:13px 14px 14px 57px;
  border-top:1px solid #edf1f4;
}
.public-interview-answer p{
  margin:0;
  color:#587181;
  font-size:13.5px;
  line-height:1.72;
}
.public-interview-list:not(.expanded) .interview-extra-question{
  display:none;
}
.public-interview-actions{
  margin-top:14px;
  display:flex;
  justify-content:center;
}
.public-interview-toggle{
  min-width:180px;
  min-height:42px;
  padding:0 14px;
  border:1px solid #acd1e5;
  border-radius:9px;
  color:#063e73;
  background:#fff;
  font-size:11px;
  font-weight:850;
}
.public-interview-toggle:hover{
  background:#edf8ff;
}

@media(max-width:760px){
  .public-interview-executive{
    grid-template-columns:74px minmax(0,1fr);
  }
  .public-interview-photo{
    width:74px;
    height:74px;
  }
  .public-interview-linkedin{
    grid-column:1/-1;
    width:100%;
  }
}
@media(max-width:560px){
  .public-interview-executive{
    grid-template-columns:1fr;
    text-align:center;
  }
  .public-interview-photo{
    margin:0 auto;
  }
  .public-interview-answer{
    padding-left:14px;
  }
}


/* =========================================================
   Public social profiles
========================================================= */
.public-social-profiles{
  margin-top:11px;
  padding:14px 16px;
  display:grid;
  grid-template-columns:190px minmax(0,1fr);
  gap:16px;
  align-items:center;
  border:1px solid #dce6ed;
  border-radius:13px;
  background:
    radial-gradient(circle at 98% 10%,rgba(53,173,243,.10),transparent 34%),
    #fbfcfd;
}
.public-social-heading>span{
  display:block;
  color:#168fce;
  font-size:10px;
  font-weight:850;
  letter-spacing:.65px;
  text-transform:uppercase;
}
.public-social-heading>strong{
  display:block;
  margin-top:3px;
  color:#063e73;
  font-size:15px;
}
.public-social-links{
  display:flex;
  align-items:center;
  flex-wrap:wrap;
  gap:8px;
}
.social-profile-link{
  min-height:40px;
  padding:7px 11px;
  display:inline-flex;
  align-items:center;
  gap:8px;
  border:1px solid #d8e3ea;
  border-radius:9px;
  color:#28495f;
  background:#fff;
  font-size:11px;
  font-weight:800;
  transition:transform .15s ease,border-color .15s ease,background .15s ease;
}
.social-profile-link:hover{
  transform:translateY(-1px);
  border-color:#9dcbe4;
  background:#f4fafe;
}
.social-profile-link svg{
  width:23px;
  height:23px;
  flex:0 0 23px;
  fill:none;
  stroke:currentColor;
  stroke-width:2;
  stroke-linecap:round;
  stroke-linejoin:round;
}
.social-facebook svg{
  fill:#1877f2;
  stroke:none;
}
.social-x svg{
  color:#111;
  stroke-width:2.3;
}
.social-linkedin svg{
  fill:#0a66c2;
  stroke:none;
}

/* The same social URLs may display on claimed and unclaimed profiles.
   Missing URLs should omit only the unavailable social link. */
@media(max-width:760px){
  .public-social-profiles{
    grid-template-columns:1fr;
  }
}
@media(max-width:560px){
  .public-social-links{
    display:grid;
    grid-template-columns:1fr;
  }
  .social-profile-link{
    justify-content:flex-start;
  }
}
