:root{
  --bg:#070a14;
  --bg2:#0b1022;
  --card:rgba(255,255,255,.05);
  --line:rgba(255,255,255,.12);
  --text:#eef2ff;
  --muted:rgba(238,242,255,.72);
  --brand1:#6aa6ff;
  --brand2:#7c5cff;
  --good:#2ee59d;
  --shadow: 0 18px 55px rgba(0,0,0,.55);
  --radius: 18px;
}

*{ box-sizing:border-box; }
html,body{ margin:0; padding:0; }
body{
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, "Noto Sans", "Liberation Sans", sans-serif;
  color:var(--text);
  background:
    radial-gradient(1200px 600px at 15% -10%, rgba(106,166,255,.25), transparent 60%),
    radial-gradient(900px 500px at 90% 0%, rgba(124,92,255,.22), transparent 60%),
    linear-gradient(180deg, var(--bg), #05060f);
  line-height:1.55;
}

a{ color:inherit; text-decoration:none; }
a:hover{ opacity:.92; }

.container{
  width:min(1120px, calc(100% - 40px));
  margin:0 auto;
}

/* Header */
.site-header{
  position:sticky;
  top:0;
  z-index:50;
  backdrop-filter: blur(10px);
  background: rgba(7,10,20,.72);
  border-bottom: 1px solid var(--line);
}

.header-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  padding:14px 0;
}

.brand{
  display:flex;
  align-items:baseline;
  gap:10px;
  font-weight:900;
  letter-spacing:.3px;
}

.brand-mark{
  font-size:18px;
  padding:7px 10px;
  border-radius:12px;
  border:1px solid var(--line);
  background: linear-gradient(135deg, rgba(106,166,255,.22), rgba(124,92,255,.18));
}

.brand-tag{
  font-size:13px;
  color:var(--muted);
  font-weight:800;
}

.nav{
  display:flex;
  align-items:center;
  gap:14px;
  flex-wrap:wrap;
  justify-content:flex-end;
}

.nav a{
  color:var(--muted);
  font-weight:750;
  font-size:14px;
}

.nav a:hover{ color:var(--text); }

/* Buttons */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:10px 14px;
  border-radius:14px;
  border:1px solid transparent;
  font-weight:900;
  white-space:nowrap;
  transition: transform .06s ease, opacity .2s ease, background .2s ease, border-color .2s ease;
}

.btn:active{ transform: translateY(1px); }

.btn-primary{
  background: linear-gradient(135deg, var(--brand1), var(--brand2));
  color:#071022;
  border-color: rgba(255,255,255,.14);
}

.btn-ghost{
  background: rgba(255,255,255,.06);
  border-color: var(--line);
  color: var(--text);
}

.btn-full{ width:100%; }

/* Hero */
.hero{ padding:58px 0 34px; }

.hero-grid{
  display:grid;
  grid-template-columns: 1.1fr .9fr;
  gap:24px;
  align-items:stretch;
}

.eyebrow{
  margin:0 0 10px;
  color:var(--muted);
  text-transform:uppercase;
  letter-spacing:.12em;
  font-size:12px;
  font-weight:900;
}

h1{
  margin:0 0 12px;
  font-size: clamp(34px, 4vw, 52px);
  line-height:1.06;
}

.lead{
  margin:0 0 18px;
  font-size:18px;
  color: rgba(238,242,255,.86);
  max-width: 60ch;
}

.cta-row{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
  margin: 16px 0 14px;
}

.trust-row{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-top: 14px;
}

.pill{
  display:inline-flex;
  align-items:center;
  padding:8px 12px;
  border-radius:999px;
  border:1px solid var(--line);
  background: rgba(255,255,255,.05);
  color: rgba(238,242,255,.88);
  font-weight:800;
  font-size:13px;
}

.mini-proof{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:10px;
  margin-top: 16px;
}

.mini-card{
  border:1px solid var(--line);
  background: rgba(255,255,255,.04);
  border-radius: 16px;
  padding:12px;
}

.mini-k{
  color:var(--muted);
  font-weight:900;
  font-size:12px;
  letter-spacing:.08em;
  text-transform:uppercase;
}

.mini-v{
  margin-top:6px;
  font-weight:950;
}

/* Preview card */
.hero-preview{
  border:1px solid var(--line);
  background: linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.03));
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow:hidden;
}

.preview-top{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:12px 14px;
  border-bottom:1px solid var(--line);
  background: rgba(255,255,255,.04);
}

.dots{ display:flex; gap:7px; }
.dots span{
  width:9px; height:9px;
  border-radius:50%;
  background: rgba(255,255,255,.23);
}

.preview-title{
  font-weight:900;
  font-size:13px;
  color: rgba(238,242,255,.86);
}

.preview-body{ padding:16px; }

.kv{
  border:1px solid var(--line);
  background: rgba(0,0,0,.16);
  border-radius: 16px;
  padding:12px;
  margin-bottom:10px;
}

.kv .k{
  color:var(--muted);
  font-weight:900;
  font-size:12px;
  letter-spacing:.08em;
  text-transform:uppercase;
}

.kv .v{
  margin-top:6px;
  font-weight:900;
  color: rgba(238,242,255,.92);
}

.note{
  margin-top:12px;
  border-radius: 16px;
  border:1px dashed rgba(255,255,255,.18);
  background: rgba(106,166,255,.06);
  padding:12px;
  font-weight:750;
  color: rgba(238,242,255,.9);
}

.preview-footer{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-top:12px;
}

.tag{
  font-size:12px;
  font-weight:900;
  border:1px solid var(--line);
  background: rgba(255,255,255,.04);
  padding:7px 10px;
  border-radius: 999px;
  color: rgba(238,242,255,.86);
}

/* Sections */
.section{ padding:56px 0; }

.section-muted{
  background:
    radial-gradient(800px 360px at 20% 0%, rgba(106,166,255,.10), transparent 65%),
    linear-gradient(180deg, rgba(255,255,255,.03), rgba(255,255,255,0));
  border-top:1px solid rgba(255,255,255,.06);
  border-bottom:1px solid rgba(255,255,255,.06);
}

.section-head{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:16px;
  margin-bottom:18px;
}

.section-head h2{
  margin:0;
  font-size:28px;
  line-height:1.15;
}

.section-head p{
  margin:0;
  color:var(--muted);
  font-weight:750;
}

.split{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:24px;
  align-items:start;
}

h2{ margin:0 0 10px; }
p{ margin:0 0 10px; color: rgba(238,242,255,.86); }

.muted{ color: var(--muted); }
.small{ font-size:13px; font-weight:700; }

.check{
  margin:14px 0 0;
  padding:0;
  list-style:none;
  display:grid;
  gap:10px;
}

.check li{
  padding-left:30px;
  position:relative;
  font-weight:750;
  color: rgba(238,242,255,.9);
}

.check li::before{
  content:"✓";
  position:absolute;
  left:0;
  top:0;
  width:22px; height:22px;
  border-radius:8px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  background: rgba(46,229,157,.12);
  border:1px solid rgba(46,229,157,.28);
  color: var(--good);
  font-weight:950;
}

.promise{
  border:1px solid var(--line);
  background: rgba(255,255,255,.04);
  border-radius: var(--radius);
  padding:16px;
}

.promise-cards{
  margin-top:14px;
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:10px;
}

.promise-card{
  border:1px solid var(--line);
  background: rgba(0,0,0,.16);
  border-radius: 16px;
  padding:12px;
}

.pc-title{
  font-weight:950;
  margin-bottom:6px;
}

.pc-text{
  color: rgba(238,242,255,.82);
  font-weight:700;
  font-size:14px;
}

/* Steps */
.steps{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:14px;
}

.step{
  border:1px solid var(--line);
  background: rgba(255,255,255,.04);
  border-radius: var(--radius);
  padding:16px;
}

.step-num{
  width:32px; height:32px;
  border-radius:12px;
  display:flex;
  align-items:center;
  justify-content:center;
  font-weight:950;
  border:1px solid var(--line);
  background: rgba(255,255,255,.05);
  margin-bottom:10px;
}

.step h3{ margin:0 0 6px; font-size:18px; }
.step p{ margin:0; color: rgba(238,242,255,.84); }

.callout{
  margin-top:18px;
  border:1px solid rgba(106,166,255,.35);
  background: rgba(106,166,255,.08);
  border-radius: var(--radius);
  padding:16px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
}

/* Reports */
.report-grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:14px;
}

.report-card{
  display:block;
  border:1px solid var(--line);
  background: rgba(255,255,255,.04);
  border-radius: var(--radius);
  padding:16px;
  transition: transform .08s ease, border-color .2s ease, background .2s ease;
}

.report-card:hover{
  transform: translateY(-1px);
  border-color: rgba(106,166,255,.35);
  background: rgba(106,166,255,.06);
}

.report-card h3{ margin:0 0 6px; font-size:18px; }
.report-card p{ margin:0 0 10px; color: rgba(238,242,255,.84); }
.report-link{
  font-weight:950;
  color: rgba(238,242,255,.92);
}

/* Pricing */
:root{
  --bg0:#060913;
  --bg1:#0b1020;
  --text:#eef2ff;
  --muted: rgba(238,242,255,.72);
  --muted2: rgba(238,242,255,.55);
  --line: rgba(255,255,255,.12);
  --line2: rgba(255,255,255,.18);
  --brand1:#6aa6ff;
  --brand2:#7c5cff;
  --shadow: 0 18px 55px rgba(0,0,0,.55);
  --radius: 18px;
}

/* SECTION BG */
.pricing-dark{
  padding: 64px 0;
  color: var(--text);
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, "Noto Sans", "Liberation Sans", sans-serif;
  background:
    radial-gradient(1200px 600px at 20% -10%, rgba(106,166,255,.22), transparent 60%),
    radial-gradient(900px 500px at 90% 0%, rgba(124,92,255,.20), transparent 60%),
    linear-gradient(180deg, var(--bg1), var(--bg0));
}

.pricing-dark *{ box-sizing:border-box; }

.pricing-head{
  width: min(1320px, calc(100% - 40px));
  margin: 0 auto 18px;
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:16px;
}

.pricing-head h2{
  margin:0;
  font-size: 34px;
  letter-spacing:-0.6px;
  line-height:1.1;
}

.pricing-head p{
  margin:0;
  color: var(--muted);
  font-weight: 650;
  text-align:right;
}

/* GRID */
.pricing-grid{
  width: min(1320px, calc(100% - 40px));
  margin: 18px auto 0;
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  align-items: stretch;
}

/* CARD */
.plan{
  position:relative;
  border-radius: 22px;
  padding: 20px;
  border: 1px solid var(--line);
  background:
    radial-gradient(120% 120% at 30% 0%, rgba(255,255,255,.06), transparent 55%),
    linear-gradient(180deg, rgba(255,255,255,.03), rgba(255,255,255,.015));
  box-shadow: 0 22px 70px rgba(0,0,0,.45);
  overflow:hidden;
}

.plan::before{
  content:"";
  position:absolute;
  inset:-2px;
  border-radius: 24px;
  background: radial-gradient(600px 260px at 30% 0%, rgba(106,166,255,.18), transparent 60%);
  opacity: .55;
  pointer-events:none;
}

.plan > *{ position:relative; }

.plan h3{
  margin: 4px 0 6px;
  font-size: 20px;
  font-weight: 950;
}

.tagline{
  margin: 0 0 14px;
  color: var(--muted);
  font-weight: 650;
  font-size: 14px;
}

/* STARTS AT */
.starts{
  margin: 0 0 8px;
  color: var(--muted2);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .14em;
}

/* PRICE BOX */
.price-box{
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(0,0,0,.18);
  padding: 14px 14px;
  margin: 8px 0 16px;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.04);
}

.price-row{
  display:flex;
  align-items:baseline;
  gap:10px;
  flex-wrap:wrap;
}

.price-main{
  font-size: 34px;
  font-weight: 950;
  letter-spacing: -1px;
  color: var(--text);
}

.price-unit{
  font-size: 13px;
  color: var(--muted);
  font-weight: 800;
}

/* LIST */
.plan-list{
  margin: 0 0 18px;
  padding: 0;
  list-style: none;
  display:grid;
  gap: 10px;
  color: rgba(238,242,255,.90);
  font-weight: 650;
  font-size: 13.5px;
}

.plan-list li{
  position:relative;
  padding-left: 22px;
  line-height:1.35;
}

.plan-list li::before{
  content:"✓";
  position:absolute;
  left:0;
  top:0;
  color: rgba(124,92,255,.95);
  font-weight: 950;
}

/* BUTTONS */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid transparent;
  font-weight: 900;
  text-decoration:none;
  transition: transform .08s ease, opacity .2s ease, background .2s ease, border-color .2s ease;
  cursor:pointer;
}
.btn-full{ width:100%; }
.btn:active{ transform: translateY(1px); }

.btn-ghost{
  background: rgba(255,255,255,.06);
  border-color: var(--line2);
  color: var(--text);
}
.btn-ghost:hover{
  background: rgba(255,255,255,.09);
  border-color: rgba(255,255,255,.26);
}

.btn-primary{
  background: linear-gradient(135deg, var(--brand1), var(--brand2));
  color: #061026;
  border-color: rgba(255,255,255,.16);
}
.btn-primary:hover{ opacity:.95; }

/* FEATURED (Plus) */
.plan-featured{
  border-color: rgba(106,166,255,.45);
  background:
    radial-gradient(120% 120% at 30% 0%, rgba(106,166,255,.14), transparent 55%),
    linear-gradient(180deg, rgba(255,255,255,.035), rgba(255,255,255,.015));
  box-shadow: 0 26px 90px rgba(0,0,0,.55);
  transform: translateY(-2px);
}

.pill{
  position:absolute;
  top: 12px;
  right: 12px;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.16);
  background: rgba(0,0,0,.25);
  color: rgba(238,242,255,.88);
  font-size: 12px;
  font-weight: 950;
}

/* FOOTNOTE */
.footnote{
  width: min(1100px, calc(100% - 40px));
  margin: 18px auto 0;
  color: var(--muted2);
  font-size: 13px;
  font-weight: 650;
}

/* RESPONSIVE */
@media (max-width: 1100px){
  .pricing-grid{ grid-template-columns: repeat(2, 1fr); }
  .pricing-head{ flex-direction:column; align-items:flex-start; }
  .pricing-head p{ text-align:left; }
}

@media (max-width: 620px){
  .pricing-grid{ grid-template-columns: 1fr; }
  .plan-featured{ transform:none; }
}

@media (prefers-reduced-motion: reduce){
  .btn{ transition:none; }
  .plan-featured{ transform:none; }
}

.pricing-note{
  margin-top: 14px;
}

/* FAQ */
.faq{
  display:grid;
  gap:12px;
  margin-top: 12px;
}

details{
  border:1px solid var(--line);
  background: rgba(255,255,255,.04);
  border-radius: var(--radius);
  padding: 12px 14px;
}

summary{
  cursor:pointer;
  font-weight:950;
  color: rgba(238,242,255,.92);
}

details p{
  margin-top:10px;
  color: rgba(238,242,255,.84);
}

/* Contact */
.contact-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

label{
  display:grid;
  gap:6px;
  font-weight:900;
  color: rgba(238,242,255,.92);
  font-size:13px;
}

input, textarea{
  width:100%;
  padding:11px 12px;
  border-radius: 14px;
  border:1px solid rgba(255,255,255,.14);
  background: rgba(0,0,0,.16);
  color: var(--text);
  outline:none;
}

input::placeholder, textarea::placeholder{
  color: rgba(170,180,214,.72);
}

/* Footer */
.site-footer{
  padding:26px 0 40px;
  border-top: 1px solid rgba(255,255,255,.06);
  background: rgba(0,0,0,.18);
}

.footer-inner{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:16px;
}

.footer-links{
  display:flex;
  gap:14px;
  flex-wrap:wrap;
  color: var(--muted);
  font-weight:800;
  font-size:14px;
}

.footer-brand{ margin-bottom:10px; }

/* Responsive */
@media (max-width: 980px){
  .hero-grid{ grid-template-columns: 1fr; }
  .split{ grid-template-columns: 1fr; }
  .steps{ grid-template-columns: 1fr; }
  .report-grid{ grid-template-columns: 1fr; }
  .pricing{ grid-template-columns: 1fr; }
  .promise-cards{ grid-template-columns: 1fr; }
  .mini-proof{ grid-template-columns: 1fr; }
  .contact{ grid-template-columns: 1fr; }
  .callout{ flex-direction:column; align-items:flex-start; }
}

.example-output {
  padding: 56px 24px;
  max-width: 1100px;
  margin: 0 auto;
}

.example-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 24px;
}

.example-header h2 {
  margin: 0;
  font-size: clamp(24px, 2.5vw, 34px);
  font-weight: 800;
  letter-spacing: -0.02em;
}

.example-header p {
  margin: 6px 0 0;
  max-width: 520px;
  opacity: 0.85;
  line-height: 1.4;
}

/* The grid is the main difference */
.insight-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

/* Card styling */
.insight-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: 18px;
  padding: 18px 18px 16px;
  box-shadow:
    0 10px 30px rgba(0, 0, 0, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
}

.insight-card h3 {
  margin: 0 0 10px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.02em;
  opacity: 0.95;
}

.insight-card .lead {
  margin: 0 0 12px;
  line-height: 1.45;
  opacity: 0.92;
}

.insight-card ul {
  margin: 0;
  padding-left: 18px;
  display: grid;
  gap: 8px;
}

.insight-card li {
  line-height: 1.4;
  opacity: 0.92;
}

/* Responsive: stack to 1 column */
@media (max-width: 900px) {
  .example-header {
    flex-direction: column;
  }

  .insight-grid {
    grid-template-columns: 1fr;
  }
}

/* =========================
   CTA Cards Section
   ========================= */

.cta-section {
  padding: 56px 24px;
  max-width: 1100px;
  margin: 0 auto;
}

.cta-header {
  margin-bottom: 18px;
}

.cta-header h2 {
  margin: 0 0 8px;
  font-size: clamp(24px, 2.5vw, 34px);
  font-weight: 800;
  letter-spacing: -0.02em;
}

.cta-header p {
  margin: 0;
  max-width: 700px;
  opacity: 0.85;
  line-height: 1.45;
}

/* 3-card layout */
.cta-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 18px;
}

.cta-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  padding: 20px;
  box-shadow:
    0 10px 30px rgba(0, 0, 0, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);

  display: flex;
  flex-direction: column;
  gap: 10px;
}

.cta-card h3 {
  margin: 0;
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -0.01em;
}

.cta-card .micro {
  margin: 0 0 6px;
  opacity: 0.85;
  line-height: 1.45;
}

/* Make buttons sit nicely */
.cta-card .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  padding: 10px 16px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
}

/* Primary button (purple-ish, like your example) */
.cta-card .btn-primary {
  border: none;
  background: linear-gradient(135deg, rgba(124, 92, 255, 1), rgba(88, 156, 255, 1));
  color: #0b0f17;
}

/* Secondary button */
.cta-card .btn-secondary {
  background: rgba(255, 255, 255, 0.06);
  color: inherit;
}

/* Email pill */
.cta-card .btn-pill {
  background: rgba(255, 255, 255, 0.03);
  color: inherit;
}

/* Responsive */
@media (max-width: 1000px) {
  .cta-grid {
    grid-template-columns: 1fr;
  }

  .cta-card .btn {
    width: 100%;
  }
}

/* =========================
   Best-Fit / Pain Cards Section
   ========================= */

.fit-section {
  padding: 64px 24px;
}

.fit-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.fit-header h2 {
  margin: 0 0 8px;
  font-size: clamp(24px, 2.6vw, 36px);
  font-weight: 850;
  letter-spacing: -0.02em;
}

.fit-header p {
  margin: 0 0 22px;
  opacity: 0.85;
  line-height: 1.5;
  max-width: 720px;
}

.fit-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-bottom: 18px;
}

.fit-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  padding: 22px;
  box-shadow:
    0 10px 30px rgba(0, 0, 0, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
}

.fit-card h3 {
  margin: 0 0 10px;
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -0.01em;
  line-height: 1.2;
}

.fit-card p {
  margin: 0;
  opacity: 0.9;
  line-height: 1.45;
}

.fit-banner {
  background: rgba(124, 92, 255, 0.10);
  border: 1px solid rgba(124, 92, 255, 0.25);
  border-radius: 18px;
  padding: 18px 20px;
  box-shadow:
    0 10px 30px rgba(0, 0, 0, 0.25),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.fit-banner p {
  margin: 0;
  line-height: 1.45;
  opacity: 0.95;
}

.fit-banner strong {
  font-weight: 900;
}

/* Responsive */
@media (max-width: 1000px) {
  .fit-grid {
    grid-template-columns: 1fr;
  }
}

/* =========================
   ITK Snapshot Card
   ========================= */

.itk-snapshot {
  padding: 56px 24px;
  max-width: 920px;
  margin: 0 auto;
}

.itk-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 22px;
  box-shadow:
    0 18px 45px rgba(0, 0, 0, 0.45),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  overflow: hidden;
}

.itk-windowbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 14px 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(0, 0, 0, 0.18);
}

.itk-dots {
  display: inline-flex;
  gap: 8px;
}

.itk-dots span {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
}

.itk-title {
  font-weight: 800;
  letter-spacing: -0.01em;
  opacity: 0.95;
}

.itk-body {
  padding: 18px 18px 16px;
}

.itk-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 16px;
  align-items: baseline;
  padding: 8px 0;
}

.itk-label {
  opacity: 0.78;
  line-height: 1.35;
}

.itk-value {
  font-weight: 900;
  font-size: 18px;
  letter-spacing: -0.01em;
}

.itk-divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.10);
  margin: 12px 0 14px;
}

.itk-insights {
  display: grid;
  gap: 8px;
  margin-bottom: 14px;
}

.itk-line {
  margin: 0;
  line-height: 1.45;
  opacity: 0.92;
}

.itk-line strong {
  font-weight: 900;
  opacity: 0.98;
}

.itk-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.itk-tag {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 8px 12px;
  font-weight: 700;
  font-size: 13px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  opacity: 0.95;
}

.itk-note {
  margin: 12px 6px 0;
  opacity: 0.7;
  font-size: 14px;
}

/* Responsive */
@media (max-width: 700px) {
  .itk-row {
    grid-template-columns: 1fr;
  }

  .itk-value {
    font-size: 20px;
  }
}

/* =========================
   Agency / White-label Banner
   ========================= */

.agency-banner {
  padding: 18px 0 36px;
}

.agency-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;

  padding: 22px 22px;
  border-radius: 18px;

  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow:
    0 18px 45px rgba(0, 0, 0, 0.45),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
}

.agency-text h3 {
  margin: 0 0 8px;
  font-size: 22px;
  font-weight: 900;
  letter-spacing: -0.02em;
}

.agency-text p {
  margin: 0;
  opacity: 0.85;
  line-height: 1.45;
  max-width: 780px;
}

/* Make sure your button looks like the screenshot */
.btn.btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 14px;
  text-decoration: none;
 leading: none;

  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.04);
  color: inherit;
  font-weight: 800;
  white-space: nowrap;
}

.btn.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.07);
}

/* Mobile: stack */
@media (max-width: 800px) {
  .agency-card {
    flex-direction: column;
    align-items: flex-start;
  }

  .btn.btn-ghost {
    width: 100%;
  }
}
