/* ==========================================================================
   PPCTrace - Home Page Styles
   (Loads alongside common.css)
   ========================================================================== */

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero {
  padding: 80px 0 0;
  background: linear-gradient(180deg, var(--bluelt) 0%, #fff 72%);
  border-bottom: 1px solid var(--border);
  text-align: center;
  overflow: hidden;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--ba06);
  border: 1px solid var(--ba15);
  border-radius: 100px;
  padding: 6px 18px;
  font-size: 11px;
  font-weight: 700;
  color: var(--blue);
  letter-spacing: .8px;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.hero-eyebrow-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--blue);
}
.hero h1 {
  font-size: clamp(42px, 5.5vw, 72px);
  font-weight: 800;
  letter-spacing: -2.5px;
  line-height: 1.03;
  color: var(--text);
  margin-bottom: 20px;
}
.hero h1 span { color: var(--blue); }
.hero-sub {
  font-size: 20px;
  color: var(--muted);
  margin: 0 auto 36px;
  line-height: 1.8;
  max-width: max-content;
}
.hero-note { font-size: 12px; color: var(--muted2); margin-bottom: 52px; }

/* Trusted by row */
.trusted-row {
  margin-bottom: 48px;
  margin-top: 48px;
}
.trusted-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--muted2);
}
.trusted-name {
  font-size: 20px;
  font-weight: 800;
  color: rgba(15, 23, 41, .22);
  letter-spacing: -.5px;
  max-width: 120px;
  height: 30px;
  object-fit: contain;
}
.trusted-sep { color: var(--border); font-size: 22px; }

/* Mac laptop frame */
.laptop {
  max-width: 980px;
  margin: 0 auto;
}
.lp-bezel {
  background: #0a0a0a;
  border-radius: 10px 10px 0 0;
  padding: 8px 8px 0;
  border: 1px solid #1a1a1a;
  border-bottom: none;
  box-shadow: 0 0 0 1px #030303, 0 20px 60px rgba(0, 0, 0, .18);
}
.lp-cam-row { display: flex; justify-content: center; margin-bottom: 7px; }
.lp-cam {
  width: 6px; height: 6px; border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, #252525, #0d0d0d);
  border: 1px solid #1e1e1e;
  box-shadow: 0 0 0 1.5px #0a0a0a;
}
.lp-screen {
  border-radius: 3px 3px 0 0;
  border: 1px solid #151515;
  border-bottom: none;
  overflow: hidden;
}
.lp-screen img { width: 100%; display: block; }
.lp-hinge {
  background: #060606;
  height: 3px;
  border-left: 1px solid #1a1a1a;
  border-right: 1px solid #1a1a1a;
}
.lp-base {
  background: linear-gradient(180deg, #0e0e0e 0%, #060606 100%);
  height: 16px;
  border-radius: 0 0 6px 6px;
  border: 1px solid #1a1a1a;
  border-top: none;
  width: 106%;
  margin-left: -3%;
}

/* Bigger laptop variant for footer-ish demo block */
.laptop-lg .lp-bezel {
  border-radius: 14px 14px 0 0;
  padding: 14px 14px 0;
  border-width: 1.5px;
  box-shadow: 0 0 0 1px #050505, 0 20px 60px rgba(0,0,0,.2);
}
.laptop-lg .lp-cam { width: 7px; height: 7px; box-shadow: 0 0 0 2px #111; }
.laptop-lg .lp-screen { border-radius: 4px 4px 0 0; }
.laptop-lg .lp-hinge { background: #050508; height: 5px; border-left-width: 1.5px; border-right-width: 1.5px; }
.laptop-lg .lp-base {
  background: linear-gradient(180deg, #111114 0%, #070708 100%);
  height: 22px;
  border-radius: 0 0 8px 8px;
  border-width: 1.5px;
  width: 108%;
  margin-left: -4%;
  box-shadow: 0 10px 40px rgba(0,0,0,.18);
}

/* ==========================================================================
   Impact Section
   ========================================================================== */
.impact {
  background: var(--blue);
  padding: 72px 0;
  position: relative;
  overflow: hidden;
  margin-top: -30px;
}
.impact::before {
  content: '';
  position: absolute;
  top: -120px; right: -120px;
  width: 400px; height: 400px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, .06);
}
.impact::after {
  content: '';
  position: absolute;
  bottom: -80px; left: 40%;
  width: 300px; height: 300px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, .04);
}
.impact-inner { position: relative; z-index: 1; }

.impact-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: rgba(255, 255, 255, .6);
  background: rgba(255, 255, 255, .1);
  border: 1px solid rgba(255, 255, 255, .15);
  border-radius: 100px;
  padding: 4px 12px;
  margin-bottom: 16px;
}
.impact-heading {
  font-size: clamp(32px, 3.8vw, 52px);
  font-weight: 800;
  letter-spacing: -2px;
  line-height: 1.05;
  color: #fff;
}
.impact-heading span { color: rgba(255, 255, 255, .45); display: block; }
.impact-sub {
  font-size: 15px;
  color: rgba(255, 255, 255, .55);
  line-height: 1.8;
}
.impact-sub strong { color: #fff; font-weight: 700; }

.impact-stats {
  background: rgba(255, 255, 255, .12);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 32px;
}
.is-item {
  background: rgba(255, 255, 255, .07);
  padding: 28px 24px;
  text-align: center;
  border-right: 1px solid rgba(255, 255, 255, .12);
}
.is-item:last-child { border-right: none; }
.is-n {
  font-size: 42px;
  font-weight: 800;
  color: #fff;
  letter-spacing: -2px;
  line-height: 1;
  margin-bottom: 6px;
  display: block;
}
.is-l { font-size: 12px; color: rgba(255, 255, 255, .5); line-height: 1.55; }

.pain-card {
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 12px;
  padding: 18px;
  height: 100%;
  transition: background .2s;
}
.pain-card:hover { background: rgba(255, 255, 255, .12); }
.pain-icon { font-size: 22px; margin-bottom: 10px; }
.pain-title { font-size: 13.5px; font-weight: 700; color: #fff; margin-bottom: 5px; }
.pain-text { font-size: 12px; color: rgba(255, 255, 255, .5); line-height: 1.6; }

.sec-title {
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 800;
  letter-spacing: -1.5px;
  color: var(--text);
  margin-bottom: 10px;
}
.sec-sub {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.7;
  max-width: 520px;
  margin: 0 auto;
}

/* ==========================================================================
   Catch Cancel Protect (CCP)
   ========================================================================== */
.ccp { padding: 80px 0; border-bottom: 1px solid var(--border); }
.ccp-title {
  font-size: clamp(28px, 3.2vw, 42px);
  font-weight: 800;
  letter-spacing: -1.5px;
  line-height: 1.08;
  color: var(--text);
  margin-bottom: 14px;
}
.ccp-title span { color: var(--blue); }
.ccp-sub {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 32px;
}
.ccp-step {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
}
.ccp-step:last-child { border-bottom: none; }
.ccp-num {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--blue);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 800;
  flex-shrink: 0;
  margin-top: 1px;
}
.ccp-step h4 { font-size: 15px; font-weight: 700; color: var(--text); margin-bottom: 4px; }
.ccp-step p  { font-size: 13px; color: var(--muted); line-height: 1.6; margin: 0; }

/* Live panel */
.live-panel {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(24, 71, 194, .08);
}
.lp-hdr {
  background: var(--bluelt);
  border-bottom: 1px solid var(--border);
  padding: 14px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.lp-title {
  font-size: 12px;
  font-weight: 700;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 6px;
}
.live-badge {
  display: flex;
  align-items: center;
  gap: 5px;
  background: rgba(220, 38, 38, .08);
  border: 1px solid rgba(220, 38, 38, .15);
  border-radius: 100px;
  padding: 3px 9px;
  font-size: 9px;
  font-weight: 700;
  color: #dc2626;
}

.lp-stats {
  border-bottom: 1px solid var(--border);
  background: var(--border);
}
.lps {
  background: #fff;
  padding: 14px 10px;
  text-align: center;
  border-right: 1px solid var(--border);
}
.lps:last-child { border-right: none; }
.lps-n {
  font-size: 22px;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -1px;
  line-height: 1;
  margin-bottom: 3px;
}
.lps-l {
  font-size: 9px;
  color: var(--muted2);
  text-transform: uppercase;
  letter-spacing: .8px;
}

.lp-rows { padding: 10px 12px; }
.lp-row {
  background: var(--bluelt);
  border: 1px solid var(--border);
  border-radius: 9px;
  padding: 9px 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 7px;
}
.lp-row:last-child { margin-bottom: 0; }
.lpr-l { display: flex; align-items: center; gap: 8px; }
.lpr-icon {
  width: 28px;
  height: 28px;
  border-radius: 7px;
  background: var(--ba06);
  border: 1px solid var(--ba15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
}
.lpr-name { font-size: 11.5px; font-weight: 600; color: var(--text); }
.lpr-sub  { font-size: 9.5px; color: var(--muted2); }
.lpr-r { display: flex; align-items: center; gap: 7px; }
.lpr-count { font-size: 11px; font-weight: 600; color: var(--blue); }

.vb {
  font-size: 8.5px;
  font-weight: 700;
  padding: 2px 7px;
  border-radius: 4px;
  white-space: nowrap;
}
.vb-red   { background: rgba(220, 38, 38, .09); color: #dc2626; border: 1px solid rgba(220, 38, 38, .15); }
.vb-amber { background: rgba(217, 119, 6, .09); color: #d97706; border: 1px solid rgba(217, 119, 6, .15); }
.vb-green { background: rgba(22, 163, 74, .09); color: #16a34a; border: 1px solid rgba(22, 163, 74, .15); }
.vb-blue  { background: var(--ba06); color: var(--blue); border: 1px solid var(--ba15); }

.lp-ftr {
  padding: 10px 18px;
  background: var(--bluelt);
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.lpf-t { font-size: 10px; color: var(--muted2); }
.lpf-l { font-size: 10.5px; font-weight: 700; color: var(--blue); }

/* ==========================================================================
   Solutions Section
   ========================================================================== */
.sol {
  background: var(--bluelt);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 72px 0;
}
.sec-hdr { text-align: center; margin-bottom: 48px; }

.sol-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  transition: box-shadow .2s, transform .2s, border-color .2s;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.sol-card:hover {
  box-shadow: 0 8px 28px rgba(24, 71, 194, .08);
  transform: translateY(-2px);
  border-color: rgba(24, 71, 194, .18);
}
.sol-img {
  background: #f8f9fc;
  border-bottom: 1px solid rgba(24, 71, 194, .08);
  padding: 10px;
  height: 180px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 6px;
  flex-shrink: 0;
}
.sol-img.sm {height: 180px;}
.sol-body { padding: 16px 16px 20px; flex: 1; }
.sol-card h3 {
  font-size: 13.5px;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 5px;
  letter-spacing: -.2px;
}
.sol-card p {
  font-size: 11.5px;
  color: var(--muted);
  line-height: 1.65;
  margin: 0;
}

.only-tag {
  display: inline-block;
  font-size: 8px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .8px;
  color: var(--blue);
  background: var(--ba10);
  border: 1px solid var(--ba15);
  border-radius: 100px;
  padding: 2px 8px;
  margin-left: 5px;
  vertical-align: middle;
}

/* mini UI helpers */
.mini-row {
  background: #fff;
  border: 1px solid rgba(24, 71, 194, .08);
  border-radius: 7px;
  padding: 7px 9px;
  margin-bottom: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.mini-row:last-child { margin-bottom: 0; }
.mini-name { font-size: 10px; font-weight: 700; color: var(--text); }
.mini-sub  { font-size: 8.5px; color: var(--muted2); margin-top: 1px; }
.mini-right { display: flex; align-items: center; gap: 5px; }
.mini-sov   { font-size: 13px; font-weight: 800; color: var(--text); letter-spacing: -1px; }

/* ==========================================================================
   Click Injection Highlight
   ========================================================================== */
.ci-highlight { padding: 72px 0; }
.ci-card {
  background: linear-gradient(135deg, var(--bluelt) 0%, #edf0ff 100%);
  border: 1.5px solid rgba(24, 71, 194, .2);
  border-radius: 20px;
  padding: 48px;
  position: relative;
  overflow: hidden;
}
.ci-card::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 280px; height: 280px;
  border-radius: 50%;
  border: 1px solid rgba(24, 71, 194, .08);
}
.ci-only-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--blue);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 5px 14px;
  border-radius: 100px;
  margin-bottom: 16px;
}
.ci-title {
  font-size: clamp(24px, 2.8vw, 36px);
  font-weight: 800;
  letter-spacing: -1.2px;
  line-height: 1.1;
  color: var(--text);
  margin-bottom: 14px;
}
.ci-title span { color: var(--blue); }
.ci-desc {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 24px;
}
.ci-pt { display: flex; align-items: flex-start; gap: 9px; margin-bottom: 8px; }
.ci-check {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--ba10);
  border: 1px solid var(--ba15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 8px;
  color: var(--blue);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 2px;
}
.ci-pt-text { font-size: 13.5px; color: var(--text); }

.ci-step {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 12px 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.ci-step.warn { border-color: rgba(220, 38, 38, .2); background: rgba(220, 38, 38, .03); }
.ci-snum {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 9px;
  font-weight: 800;
  color: #fff;
  flex-shrink: 0;
}
.ci-snum.ok  { background: var(--blue); }
.ci-snum.bad { background: #dc2626; }
.ci-stxt { font-size: 12px; font-weight: 600; color: var(--text); flex: 1; }
.ci-stxt span { font-size: 11px; font-weight: 400; color: var(--muted); display: block; }
.ci-sarrow { text-align: center; font-size: 11px; color: var(--muted2); padding: 3px 0; }

.ci-stats {
  margin-top: 16px;
  background: rgba(24, 71, 194, .06);
  border: 1px solid var(--ba15);
  border-radius: 12px;
  padding: 16px 18px;
}
.ci-stat-n  { font-size: 28px; font-weight: 800; letter-spacing: -1px; line-height: 1; }
.ci-stat-l  { font-size: 10px; color: var(--muted2); margin-top: 3px; }

/* ==========================================================================
   Real Fraud Detection
   ========================================================================== */
.rfd { padding: 80px 0; border-bottom: 1px solid var(--border); }
.rfd-h {
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 800;
  letter-spacing: -2px;
  line-height: 1.05;
  color: var(--text);
}
.rfd-h span { color: var(--blue); }
.rfd-sub { font-size: 15px; color: var(--muted); line-height: 1.8; }
.rfd-card {
  background: var(--bluelt);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 24px;
  height: 100%;
}
.rfd-n {
  font-size: 36px;
  font-weight: 800;
  color: var(--blue);
  letter-spacing: -1.5px;
  line-height: 1;
  margin-bottom: 12px;
}
.rfd-card h4 { font-size: 14px; font-weight: 700; color: var(--text); margin-bottom: 6px; }
.rfd-card p  { font-size: 12.5px; color: var(--muted); line-height: 1.6; margin: 0; }

/* ==========================================================================
   Search Engines
   ========================================================================== */
.engines {
  background: var(--bluelt);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 64px 0;
}
.eng-title {
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 800;
  letter-spacing: -2px;
  line-height: 1.05;
  color: var(--text);
  margin-bottom: 12px;
}
.eng-title span { color: var(--blue); }
.eng-sub { font-size: 15px; color: var(--muted); line-height: 1.7; margin-bottom: 0; }

.eng-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 20px 28px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  transition: border-color .15s, box-shadow .15s;
  height: 100%;
  text-align: center;
}
.eng-item:hover {
  border-color: var(--blue);
  box-shadow: 0 4px 16px var(--ba10);
}
.eng-logo {
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.eng-logo img{
  width:100%;
  height:32px;
  object-fit:contain;
}
.eng-name { font-size: 12px; font-weight: 700; color: var(--text); }
.eng-sub-name { font-size: 10px; color: var(--muted2); margin-top: 2px; }

/* ==========================================================================
   ROI Calculator
   ========================================================================== */
.calc { padding: 80px 0; border-bottom: 1px solid var(--border); }
.calc-top { text-align: center; margin-bottom: 52px; }
.calc-title {
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 800;
  letter-spacing: -1.5px;
  color: var(--text);
  margin-bottom: 10px;
}
.calc-title span { color: var(--blue); }
.calc-sub { font-size: 15px; color: var(--muted); line-height: 1.7; }

.sl-group { margin-bottom: 28px; }
.sl-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}
.sl-label { font-size: 13px; font-weight: 600; color: var(--text); }
.sl-val {
  font-size: 15px;
  font-weight: 800;
  color: var(--blue);
  background: var(--ba06);
  border: 1px solid var(--ba15);
  padding: 4px 12px;
  border-radius: 7px;
  min-width: 70px;
  text-align: center;
}
.form-range {
  width: 100%;
}
.form-range::-webkit-slider-thumb { background: var(--blue); }
.form-range::-moz-range-thumb { background: var(--blue); }

.sl-range-labels {
  display: flex;
  justify-content: space-between;
  font-size: 10px;
  color: var(--muted2);
  margin-top: 5px;
}

.calc-tip {
  background: var(--bluelt);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 14px 16px;
  font-size: 12px;
  color: var(--muted);
  line-height: 1.65;
}
.calc-tip strong { color: var(--text); }

.calc-results-wrap {
  background: var(--blue);
  border-radius: 20px;
  padding: 32px;
  position: relative;
  overflow: hidden;
}
.calc-results-wrap::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 200px; height: 200px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, .08);
}
.calc-results-wrap::after {
  content: '';
  position: absolute;
  bottom: -40px; left: -40px;
  width: 140px; height: 140px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, .06);
}
.cr-title {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: rgba(255, 255, 255, .45);
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}
.cr-main {
  background: rgba(255, 255, 255, .15);
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 14px;
  padding: 20px 22px;
  margin-bottom: 14px;
  position: relative;
  z-index: 1;
}
.cr-main-label { font-size: 11px; color: rgba(255, 255, 255, .55); margin-bottom: 4px; }
.cr-main-val   { font-size: 40px; font-weight: 800; color: #fff; letter-spacing: -2px; line-height: 1; }
.cr-main-sub   { font-size: 11px; color: rgba(255, 255, 255, .4); margin-top: 4px; }
.cr-item {
  background: rgba(255, 255, 255, .10);
  border: 1px solid rgba(255, 255, 255, .15);
  border-radius: 12px;
  padding: 16px;
  height: 100%;
}
.cr-item-label { font-size: 10px; color: rgba(255, 255, 255, .5); margin-bottom: 4px; }
.cr-item-val   { font-size: 24px; font-weight: 800; color: #fff; letter-spacing: -1px; line-height: 1; }
.cr-item-sub   { font-size: 10px; color: rgba(255, 255, 255, .4); margin-top: 3px; }
.cr-cta {
  display: block;
  width: 100%;
  text-align: center;
  background: #fff;
  color: var(--blue);
  font-size: 14px;
  font-weight: 800;
  padding: 14px;
  border-radius: 10px;
  margin-top: 14px;
  position: relative;
  z-index: 1;
  transition: background .15s;
}
.cr-cta:hover { background: #f0f4ff; color: var(--blue); }
.cr-note {
  text-align: center;
  font-size: 11px;
  color: rgba(255, 255, 255, .35);
  margin-top: 10px;
  position: relative;
  z-index: 1;
}

/* ==========================================================================
   Testimonials
   ========================================================================== */
.testi {
  background: var(--bluelt);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 72px 0;
}
.testi-h {
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 800;
  letter-spacing: -1.5px;
  color: var(--text);
  line-height: 1.1;
}
.tc-stat {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 16px;
  text-align: center;
  height: 100%;
}
.tc-stat-n {
  font-size: 26px;
  font-weight: 800;
  color: var(--blue);
  letter-spacing: -1px;
  line-height: 1;
}
.tc-stat-l {
  font-size: 10px;
  color: var(--muted2);
  margin-top: 4px;
  text-transform: uppercase;
  letter-spacing: .8px;
}

.tc-blue {
  background: var(--blue);
  border-radius: 20px;
  padding: 32px;
  position: relative;
  overflow: hidden;
  color: #fff;
  height: 100%;
}
.tc-blue::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 180px; height: 180px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, .08);
}
.tc-blue::after {
  content: '';
  position: absolute;
  bottom: -40px; left: 20px;
  width: 120px; height: 120px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, .05);
}
.tc-quote {
  font-size: 52px;
  line-height: 1;
  margin-bottom: 14px;
  font-family: Georgia, serif;
  position: relative;
  z-index: 1;
}
.tc-quote.light  { color: rgba(255, 255, 255, .15); }
.tc-quote.dark   { color: rgba(24, 71, 194, .12); }
.tc-text-light {
  font-size: 15.5px;
  color: rgba(255, 255, 255, .9);
  line-height: 1.75;
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
}
.tc-author {
  display: flex;
  align-items: center;
  gap: 12px;
  position: relative;
  z-index: 1;
}
.tc-av {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 800;
  flex-shrink: 0;
}
.tc-av.dark  { background: rgba(255, 255, 255, .18); color: #fff; }
.tc-av.light { background: var(--ba10); color: var(--blue); }
.tc-name-light { font-size: 13px; font-weight: 700; color: #fff; }
.tc-role-light { font-size: 11px; color: rgba(255, 255, 255, .5); }
.tc-name-dark  { font-size: 13px; font-weight: 700; color: var(--text); }
.tc-role-dark  { font-size: 11px; color: var(--muted2); }
.tc-stars      { margin-left: auto; font-size: 13px; letter-spacing: 2px; }
.tc-stars.light { color: rgba(255, 255, 255, .4); }
.tc-stars.dark  { color: var(--blue); }

.tc-white {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 32px;
  position: relative;
  overflow: hidden;
  height: 100%;
}
.tc-white::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--blue2));
}
.tc-text-dark {
  font-size: 15.5px;
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 24px;
}

.tc-empty {
  background: #fff;
  border: 1.5px dashed rgba(24, 71, 194, .18);
  border-radius: 16px;
  padding: 22px;
  display: flex;
  align-items: center;
  gap: 14px;
  height: 100%;
}
.tc-empty-emoji { font-size: 32px; flex-shrink: 0; }
.tc-empty-title { font-size: 13.5px; font-weight: 700; color: var(--text); margin-bottom: 3px; }
.tc-empty-sub   { font-size: 12px; color: var(--muted2); }

.tc-cta {
  background: var(--bluelt);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  height: 100%;
}
.tc-cta-title { font-size: 14px; font-weight: 800; color: var(--text); margin-bottom: 4px; letter-spacing: -.3px; }
.tc-cta-sub   { font-size: 12.5px; color: var(--muted); }
.tc-cta-btn {
  white-space: nowrap;
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  background: var(--blue);
  padding: 11px 22px;
  border-radius: 9px;
  flex-shrink: 0;
}
.tc-cta-btn:hover { color: #fff; background: var(--blue2); }

/* ==========================================================================
   Book Demo
   ========================================================================== */
.book-demo {padding: 80px 0 0;text-align: center;overflow: hidden;margin-bottom: -30px;}
.bd-title {
  font-size: clamp(32px, 4.5vw, 58px);
  font-weight: 800;
  letter-spacing: -2px;
  line-height: 1.05;
  color: var(--text);
  margin-bottom: 16px;
}
.bd-title span { color: var(--blue); }
.bd-sub {
  font-size: 16px;
  color: var(--muted);
  margin-bottom: 36px;
  line-height: 1.75;
}

/* ==========================================================================
   Responsive Adjustments (Home page only)
   ========================================================================== */
@media (max-width: 767px) {
  .hero { padding: 44px 0 0; }
  .hero h1 { font-size: 34px; letter-spacing: -1.5px; }
  .hero-sub { font-size: 15px; }
  .hero-note { margin-bottom: 32px; }

  .impact { padding: 48px 0; }
  .is-item { padding: 16px 10px; border-right: none; border-bottom: 1px solid rgba(255,255,255,.12); }
  .is-item:last-child { border-bottom: none; }
  .is-n { font-size: 26px; }

  .ccp { padding: 48px 0; }
  .sol { padding: 48px 0; }
  .ci-highlight { padding: 48px 0; }
  .ci-card { padding: 28px 20px; }
  .rfd { padding: 48px 0; }
  .engines { padding: 48px 0; }
  .calc { padding: 48px 0; }
  .testi { padding: 48px 0; }
  .book-demo { padding: 48px 0 0; }
  .lps { border-right: none; border-bottom: 1px solid var(--border); }
  .lps:last-child { border-bottom: none; }
}

@media (max-width: 575px) {
  .ci-card { padding: 24px 16px; }
  .calc-results-wrap { padding: 24px; }
  .tc-blue, .tc-white { padding: 24px; }
}

/* ==========================================================================
   Inline-Style Replacements (extracted from HTML)
   ========================================================================== */

/* â€” Solutions: shared mini-card pieces â€” */
.verified-mini {
  font-size: 8px;
  color: #16a34a;
  font-weight: 600;
  margin-top: 3px;
}
.mini-sov-label { font-size: 8.5px; color: var(--muted2); }
.mini-keywords {
  text-align: right;
  font-size: 8.5px;
  color: var(--muted2);
  line-height: 1.5;
}

/* sol-img gap variants */
.sol-img.gap-tight  { gap: 5px; }
.sol-img.gap-tight2 { gap: 6px; }
.sol-img.gap-tight3 { gap: 4px; }

/* â€” Solutions: Coupon abuse â€” */
.coupon-avatar {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(24, 71, 194, .12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  flex-shrink: 0;
}
.code-red   { color: #dc2626; }
.code-amber { color: #d97706; }

.warn-bar {
  background: rgba(220, 38, 38, .04);
  border: 1px solid rgba(220, 38, 38, .09);
  border-radius: 7px;
  padding: 7px 9px;
  display: flex;
  justify-content: space-between;
}
.warn-bar-text {
  font-size: 9px;
  font-weight: 700;
  color: #dc2626;
}

/* â€” Solutions: Trademark â€” */
.tm-violation {
  background: rgba(220, 38, 38, .05);
  border: 1px solid rgba(220, 38, 38, .14);
  border-radius: 7px;
  padding: 8px 10px;
}
.tm-violation-title {
  font-size: 9.5px;
  font-weight: 700;
  color: #dc2626;
  margin-bottom: 2px;
}
.tm-violation-sub { font-size: 8.5px; color: var(--muted2); }

.tm-success {
  background: rgba(22, 163, 74, .05);
  border: 1px solid rgba(22, 163, 74, .14);
  border-radius: 7px;
  padding: 7px 10px;
  display: flex;
  justify-content: space-between;
}
.tm-success-text { font-size: 9.5px; font-weight: 700; color: #16a34a; }
.tm-success-time { font-size: 8.5px; color: var(--muted2); }
.tm-domain { font-size: 9.5px; font-weight: 600; color: var(--text); }

/* â€” Solutions: Browser extension â€” */
.ext-icon {
  width: 24px;
  height: 24px;
  border-radius: 5px;
  background: rgba(220, 38, 38, .1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
}
.ext-stat {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 7px;
  padding: 7px 8px;
  text-align: center;
}
.ext-stat-label { font-size: 8.5px; color: var(--muted2); }
.ext-stat-val { font-size: 12px; font-weight: 800; }
.ext-stat-val.danger  { color: #dc2626; }
.ext-stat-val.success { color: #16a34a; }

/* â€” Solutions: Click Injection mini flow inside the card â€” */
.flow-step-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 7px;
  padding: 8px 10px;
  display: flex;
  align-items: center;
  gap: 7px;
}
.flow-step-card.danger {
  background: rgba(220, 38, 38, .04);
  border-color: rgba(220, 38, 38, .2);
}
.flow-num-mini {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 8px;
  font-weight: 800;
  flex-shrink: 0;
}
.flow-num-mini.ok  { background: var(--blue); }
.flow-num-mini.bad { background: #dc2626; }
.flow-text-mini {
  flex: 1;
  font-size: 9.5px;
  font-weight: 600;
  color: var(--text);
}
.flow-text-mini.danger { color: #dc2626; }
.flow-arrow-mini {
  text-align: center;
  font-size: 10px;
  color: var(--muted2);
}

/* â€” Solutions: emphasised card border â€” */
.sol-card.emphasis { border-color: rgba(24, 71, 194, .2); }

/* â€” Click Injection highlight: helpers â€” */
.ci-content { position: relative; z-index: 1; }
.ci-stat-n.blue  { color: var(--blue); }
.ci-stat-n.green { color: #16a34a; }
.btn-mt-3 { margin-top: 24px; }

/* â€” Engines: Ask logo â€” */
.eng-ask-logo {
  width: 32px;
  height: 32px;
  background: linear-gradient(135deg, #e8352a, #c0392b);
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.eng-ask-letter {
  font-size: 18px;
  font-weight: 900;
  color: #fff;
  font-family: Georgia, serif;
}
.row-logo {
    justify-content: space-around;
}
.lapto-img img{
 width:100%; 
}

.sol-v2{
  background: #fff;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 72px 0;
}
.sol-v2-pillars { display: flex; flex-direction: column; }

.sol-v2-pillar {
  display: grid;
  grid-template-columns: 110px 1fr 340px;
  align-items: center;
  gap: 36px;
  padding: 36px 24px;
  border-bottom: 1px solid var(--border);
  transition: background-color .3s;
  position: relative;
}
.sol-v2-pillar:last-child { border-bottom: none; }
.sol-v2-pillar:hover { background: var(--bluelt); }

.sol-v2-num {
  font-size: 64px;
  font-weight: 800;
  letter-spacing: -3px;
  color: var(--blue);
  line-height: 1;
  position: relative;
  padding-top: 14px;
}
.sol-v2-num::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 30px;
  height: 3px;
  background: var(--blue);
  transition: width .3s;
}
.sol-v2-pillar:hover .sol-v2-num::before { width: 70px; }

.sol-v2-body { display: flex; flex-direction: column; }
.sol-v2-title-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
  flex-wrap: wrap;
}
.sol-v2-title {
  font-size: 24px;
  font-weight: 800;
  letter-spacing: -.6px;
  color: var(--text);
  line-height: 1.15;
  margin: 0;
}
.sol-v2-title-pill {
  font-size: 9px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--blue);
  background: var(--ba10);
  border: 1px solid var(--ba15);
  border-radius: 100px;
  padding: 3px 9px;
}
.sol-v2-desc {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
  max-width: 480px;
  margin-bottom: 14px;
}
.sol-v2-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 700;
  color: var(--blue);
  transition: gap .15s;
  width: fit-content;
}
.sol-v2-link:hover { gap: 10px; color: var(--blue); }

/* Pillar mini-mockup */
.sol-v2-visual {
  background: var(--bluelt);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 14px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-height: 130px;
  justify-content: center;
}
.sol-v2-vrow {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 7px;
  padding: 8px 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}
.sol-v2-vname {
  font-size: 11px;
  font-weight: 700;
  color: var(--text);
}
.sol-v2-vsub {
  font-size: 9px;
  color: var(--muted2);
  margin-top: 1px;
}
.sol-v2-vbadge {
  font-size: 8.5px;
  font-weight: 700;
  padding: 2px 7px;
  border-radius: 4px;
  white-space: nowrap;
}
.sol-v2-vbadge.red   { background: rgba(220, 38, 38, .08); color: #b91c1c; border: 1px solid rgba(220, 38, 38, .15); }
.sol-v2-vbadge.amber { background: rgba(217, 119, 6, .08); color: #b45309; border: 1px solid rgba(217, 119, 6, .15); }
.sol-v2-vbadge.green { background: rgba(22, 163, 74, .08); color: #15803d; border: 1px solid rgba(22, 163, 74, .15); }
.sol-v2-vbadge.blue  { background: var(--ba06); color: var(--blue); border: 1px solid var(--ba15); }

/* Highlight row for the Click Injection pillar */
.sol-v2-pillar.featured {
  /* background: linear-gradient(90deg, rgba(24, 71, 194, .04), transparent); */
}
.sol-v2-pillar.featured .sol-v2-num { color: var(--blue); }

/* Responsive */
@media (max-width: 991px) {
  .sol-v2-pillar {
    grid-template-columns: 70px 1fr;
    gap: 20px;
    padding: 32px 16px;
  }
  .sol-v2-num { font-size: 48px; }
  .sol-v2-visual {
    grid-column: 1 / -1;
    margin-top: 14px;
  }
}

@media (max-width: 575px) {
  .sol-v2-pillar { grid-template-columns: 56px 1fr; gap: 14px; }
  .sol-v2-num { font-size: 38px; padding-top: 8px; }
  .sol-v2-num::before { width: 20px; height: 2px; }
  .sol-v2-title { font-size: 20px; }
}
.industry-alert {
    margin-top: 20px;
    padding: 14px 16px;
    background: rgba(220, 38, 38, .04);
    border: 1px solid rgba(220, 38, 38, .14);
    border-radius: 10px;
}
.industry-alert p.industry-head {
    font-size: 12px;
    font-weight: 700;
    color: #dc2626;
    margin-bottom: 4px;
}
.industry-alert p.industry-text {
    font-size: 12.5px;
    color: var(--muted);
    line-height: 1.6;
    margin-bottom: 0;
}
.industry-alert p.industry-text strong{
  color: var(--text);
}

/* ==========================================
   MOBILE VIEW: FIX WITHOUT CHANGING HTML
   ========================================== */
@media (max-width: 768px) {
  
  .trusted-name {
    display: inline-flex !important;
    margin: 10px 15px !important; 
    width: 85px !important;       
    height: 30px !important;     
    object-fit: contain !important;   
    vertical-align: middle !important;
    float: none !important;      
  }

  .trusted-sep {
    display: none !important;
  }
}
/* ==========================================
   MOBILE RESPONSIVE: LAPTOP MOCKUP FIX
   ========================================== */
@media (max-width: 768px) {
  
  .lapto-img img {
    width: 100%;
    margin-bottom: 1.1rem;
}

 

 
}