/* Concilia landing — faithful to the approved visual mock.
   Fictional product, portfolio sample. Self-contained: no external requests. */

:root {
  --violet: #6d5ce7;
  --violet-strong: #5a45d8;
  --violet-soft: #ece9fc;
  --violet-mid: #b7abf4;
  --magenta: #a855f7;

  --navy: #0e1526;
  --navy-2: #0b1120;
  --ink: #141b2e;
  --ink-2: #1b2440;

  --text: #1a2238;
  --muted: #5c6884;
  --muted-2: #8b94ab;

  --lav-50: #f7f6fd;
  --lav-100: #f0eefb;
  --lav-200: #e7e4f8;
  --lav-300: #ddd8f4;

  --card: #ffffff;
  --line: #e8e6f3;
  --line-2: #ecebf7;

  --green: #16a34a;
  --green-bg: #dcfce7;
  --blue: #2563eb;
  --blue-bg: #dbeafe;
  --amber: #d97706;
  --amber-bg: #fef3c7;
  --red: #dc2626;
  --red-bg: #fee2e2;

  --radius: 14px;
  --radius-sm: 10px;
  --radius-lg: 20px;
  --max: 1200px;
  --shadow-sm: 0 1px 2px rgba(20, 22, 60, 0.05), 0 2px 6px rgba(20, 22, 60, 0.04);
  --shadow: 0 6px 24px rgba(28, 27, 71, 0.08), 0 2px 8px rgba(28, 27, 71, 0.05);
  --shadow-lg: 0 24px 60px rgba(28, 27, 71, 0.18);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  background: var(--card);
  color: var(--text);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Inter, Roboto, Helvetica, Arial, sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3 { margin: 0; letter-spacing: -0.02em; line-height: 1.1; font-weight: 800; }
p { margin: 0; }
a { color: inherit; text-decoration: none; }
img, svg { display: block; max-width: 100%; }

.wrap { max-width: var(--max); margin: 0 auto; padding: 0 28px; }

.eyebrow { color: var(--violet); font-weight: 700; font-size: 13px; letter-spacing: 0.04em; text-transform: uppercase; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-weight: 600; font-size: 15px; border-radius: 10px;
  padding: 11px 18px; border: 1px solid transparent; cursor: pointer;
  transition: transform .12s ease, box-shadow .12s ease, background .12s ease;
  white-space: nowrap;
}
.btn-primary { background: var(--violet); color: #fff; box-shadow: 0 6px 16px rgba(109, 92, 231, .35); }
.btn-primary:hover { background: var(--violet-strong); transform: translateY(-1px); }
.btn-white { background: #fff; color: var(--violet-strong); }
.btn-white:hover { transform: translateY(-1px); box-shadow: 0 10px 24px rgba(0,0,0,.18); }

/* ---------- Header ---------- */
.site-header { background: var(--navy); position: sticky; top: 0; z-index: 40; }
.nav { display: flex; align-items: center; justify-content: space-between; height: 72px; }
.brand { display: inline-flex; align-items: center; gap: 10px; font-weight: 800; font-size: 20px; color: #fff; letter-spacing: -0.01em; }
.brand-mark { width: 26px; height: 26px; display: grid; place-items: center; color: #fff; }
.nav-links { display: flex; gap: 30px; }
.nav-links a { color: #c7cde0; font-size: 15px; font-weight: 500; }
.nav-links a:hover { color: #fff; }
.nav-actions { display: flex; align-items: center; gap: 18px; }
.link-login { color: #c7cde0; font-size: 15px; font-weight: 600; }
.link-login:hover { color: #fff; }

/* ---------- Hero ---------- */
.hero { position: relative; background: var(--navy); color: #fff; overflow: hidden; padding: 64px 0 84px; }
.hero::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(60% 90% at 88% 12%, rgba(168, 85, 247, .38), transparent 60%),
    radial-gradient(55% 80% at 72% 40%, rgba(109, 92, 231, .30), transparent 62%),
    linear-gradient(120deg, #0c1222 0%, #0e1526 46%, #171436 100%);
  z-index: 0;
}
.hero .wrap { position: relative; z-index: 1; }
.hero-inner { display: grid; grid-template-columns: 1fr 1.12fr; gap: 54px; align-items: center; }
.hero h1 { font-size: 56px; letter-spacing: -0.03em; }
.hero-sub { margin-top: 22px; color: #b9c0d6; font-size: 18px; max-width: 460px; }
.hero-cta { display: flex; align-items: center; gap: 14px; margin-top: 28px; flex-wrap: wrap; }
.play { display: inline-flex; align-items: center; gap: 10px; font-weight: 600; color: #fff; font-size: 15px; }
.play .pcircle { width: 30px; height: 30px; border-radius: 50%; background: rgba(255,255,255,.12); display: grid; place-items: center; }
.hero-note { color: #9aa3bd; font-size: 14px; }
.tiles { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-top: 34px; max-width: 470px; }
.tile { background: rgba(255,255,255,.045); border: 1px solid rgba(255,255,255,.10); border-radius: 12px; padding: 14px 14px; }
.tile-ico { width: 30px; height: 30px; border-radius: 8px; background: rgba(109,92,231,.28); display: grid; place-items: center; color: #c7bdff; margin-bottom: 10px; }
.tile-num { font-weight: 800; font-size: 20px; color: #fff; }
.tile-label { font-size: 12.5px; color: #9aa3bd; line-height: 1.35; margin-top: 2px; }

/* ---------- Dashboard mock ---------- */
.dash { background: #fff; border-radius: 16px; box-shadow: var(--shadow-lg); overflow: hidden; display: grid; grid-template-columns: 168px 1fr; color: var(--text); }
.dash-side { background: #0f1730; padding: 18px 12px; display: flex; flex-direction: column; gap: 4px; }
.dash-brand { display: flex; align-items: center; gap: 8px; color: #fff; font-weight: 700; font-size: 14px; padding: 4px 8px 14px; }
.dash-nav-item { display: flex; align-items: center; gap: 10px; padding: 8px 10px; border-radius: 8px; color: #9aa6c4; font-size: 13px; font-weight: 500; }
.dash-nav-item svg { opacity: .85; }
.dash-nav-item.active { background: var(--violet); color: #fff; }
.dash-main { padding: 18px 20px 20px; min-width: 0; }
.dash-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 16px; }
.dash-head h4 { font-size: 15px; font-weight: 700; }
.dash-month { display: inline-flex; align-items: center; gap: 6px; font-size: 12.5px; color: var(--muted); border: 1px solid var(--line); border-radius: 8px; padding: 5px 10px; }
.dash-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; margin-bottom: 16px; }
.dash-stat { border: 1px solid var(--line); border-radius: 10px; padding: 10px 12px; }
.dash-stat b { display: block; font-size: 18px; font-weight: 800; letter-spacing: -0.02em; }
.dash-stat span { font-size: 11.5px; color: var(--muted); }
.dash-chart { position: relative; border: 1px solid var(--line); border-radius: 10px; padding: 12px; margin-bottom: 16px; background: linear-gradient(180deg, #fbfbff, #fff); }
.chart-tag { position: absolute; top: 16px; right: 16px; background: var(--green-bg); color: var(--green); font-size: 11px; font-weight: 700; padding: 3px 8px; border-radius: 6px; }
.chart-axis { display: flex; justify-content: space-between; font-size: 10.5px; color: var(--muted-2); margin-top: 4px; }
.dash-exc-title { font-size: 12px; font-weight: 700; color: var(--muted); text-transform: uppercase; letter-spacing: .04em; margin-bottom: 8px; }
.exc-row { display: flex; align-items: center; gap: 10px; padding: 9px 0; border-top: 1px solid var(--line); font-size: 13px; }
.exc-row:first-of-type { border-top: none; }
.exc-ico { width: 26px; height: 26px; border-radius: 7px; display: grid; place-items: center; flex: none; }
.exc-name { flex: 1; font-weight: 500; }
.exc-amt { font-variant-numeric: tabular-nums; font-weight: 600; color: var(--text); }
.exc-review { font-size: 11px; font-weight: 700; color: var(--amber); background: var(--amber-bg); padding: 3px 9px; border-radius: 6px; }
.viewall { text-align: center; color: var(--violet); font-size: 12.5px; font-weight: 600; padding-top: 10px; }

/* ---------- Section shells ---------- */
.section { padding: 84px 0; }
.bg-lav-50 { background: var(--lav-50); }
.bg-lav-100 { background: var(--lav-100); }
.bg-lav-200 { background: linear-gradient(180deg, var(--lav-100), var(--lav-200)); }
.bg-white { background: #fff; }
.sec-head { max-width: 640px; }
.sec-head h2 { font-size: 34px; }
.sec-head p { color: var(--muted); font-size: 17px; margin-top: 12px; }

/* ---------- Problem ---------- */
.problem-grid { display: grid; grid-template-columns: 1fr 1.05fr; gap: 56px; align-items: center; }
.problem h2 { font-size: 34px; }
.prose { margin-top: 20px; display: flex; flex-direction: column; gap: 14px; color: #45506b; font-size: 16px; max-width: 440px; }
.pullquote { margin-top: 24px; background: var(--violet-soft); border-left: 4px solid var(--violet); border-radius: 8px; padding: 14px 18px; color: #3f3570; font-weight: 600; font-style: italic; font-size: 15px; max-width: 440px; }

/* Source cards visual */
.sources { display: flex; flex-direction: column; align-items: center; gap: 0; }
.src-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; width: 100%; }
.src-card { background: #fff; border: 1px solid var(--line); border-radius: 12px; box-shadow: var(--shadow-sm); overflow: hidden; }
.src-head { font-size: 12px; font-weight: 700; padding: 8px 12px; }
.src-head.green { background: var(--green-bg); color: #157a3b; }
.src-head.blue { background: var(--blue-bg); color: #1d4ed8; }
.src-head.violet { background: var(--violet-soft); color: var(--violet-strong); }
.src-rows { padding: 12px; display: flex; flex-direction: column; gap: 9px; }
.skeleton { height: 8px; border-radius: 4px; background: #edeef4; }
.skeleton.s1 { width: 90%; } .skeleton.s2 { width: 70%; } .skeleton.s3 { width: 82%; } .skeleton.s4 { width: 58%; }
.connector-svg { width: 100%; height: 46px; }
.concilia-pill { display: inline-flex; align-items: center; gap: 8px; background: var(--violet); color: #fff; font-weight: 700; font-size: 14px; padding: 9px 18px; border-radius: 999px; box-shadow: 0 8px 20px rgba(109,92,231,.4); }
.caption-chip { margin-top: 14px; background: #fff; border: 1px solid var(--line); border-radius: 8px; padding: 8px 14px; font-size: 13px; color: var(--muted); box-shadow: var(--shadow-sm); }

/* ---------- Steps ---------- */
.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 40px; }
.step-card { background: #fff; border: 1px solid var(--line); border-radius: 14px; padding: 22px; box-shadow: var(--shadow-sm); }
.step-top { display: flex; align-items: center; gap: 12px; }
.step-num { width: 26px; height: 26px; border-radius: 50%; background: var(--violet); color: #fff; font-size: 13px; font-weight: 700; display: grid; place-items: center; flex: none; }
.step-title { font-size: 17px; font-weight: 700; }
.step-ico { width: 40px; height: 40px; border-radius: 10px; background: var(--violet-soft); color: var(--violet-strong); display: grid; place-items: center; margin: 18px 0 14px; }
.step-desc { color: var(--muted); font-size: 15px; }

/* ---------- What it catches ---------- */
.catches-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 56px; align-items: center; }
.cat-icons { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; margin: 26px 0 18px; }
.cat-item { text-align: center; }
.cat-ico { width: 52px; height: 52px; border-radius: 14px; display: grid; place-items: center; margin: 0 auto 10px; }
.cat-ico.red { background: var(--red-bg); color: var(--red); }
.cat-ico.amber { background: var(--amber-bg); color: var(--amber); }
.cat-ico.blue { background: var(--blue-bg); color: var(--blue); }
.cat-ico.violet { background: var(--violet-soft); color: var(--violet-strong); }
.cat-label { font-size: 13.5px; font-weight: 600; color: var(--text); }
.catches-caption { color: var(--muted); font-size: 15px; max-width: 420px; }

.exc-card { background: #fff; border: 1px solid var(--line); border-radius: 16px; box-shadow: var(--shadow); padding: 20px 22px; }
.exc-card h4 { font-size: 16px; font-weight: 700; margin-bottom: 8px; }
.exc-card .exc-row { padding: 12px 0; }
.exc-tags { display: flex; align-items: center; gap: 6px; color: var(--muted-2); font-size: 12px; }
.exc-bank { width: 22px; height: 22px; border-radius: 6px; background: var(--lav-100); color: var(--muted); display: grid; place-items: center; }
.amt-neg { color: var(--red); }

/* ---------- Fits diagram ---------- */
.fits-grid { display: grid; grid-template-columns: 1fr 1.15fr; gap: 56px; align-items: center; }
.fits .prose { color: #45506b; }
.diagram { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 44px; position: relative; }
.diag-lines { position: absolute; inset: 0; width: 100%; height: 100%; z-index: 0; pointer-events: none; }
.diag-col { display: flex; flex-direction: column; gap: 12px; position: relative; z-index: 1; }
.diag-card { display: flex; align-items: center; gap: 10px; background: #fff; border: 1px solid var(--line); border-radius: 10px; padding: 11px 13px; font-size: 13.5px; font-weight: 600; box-shadow: var(--shadow-sm); }
.diag-card svg { color: var(--violet-strong); flex: none; }
.diag-mid { display: grid; place-items: center; position: relative; z-index: 1; }
.diag-hub { width: 96px; height: 96px; border-radius: 50%; background: linear-gradient(150deg, var(--violet), #7a53e6); color: #fff; display: grid; place-items: center; text-align: center; font-weight: 700; font-size: 13px; gap: 2px; box-shadow: 0 14px 30px rgba(109,92,231,.42); }
.diag-hub svg { margin-bottom: 2px; }

/* ---------- Objections ---------- */
.obj-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; margin-top: 40px; }
.obj-card { background: var(--ink); color: #fff; border-radius: 14px; padding: 22px 20px; border: 1px solid rgba(255,255,255,.06); }
.obj-q { font-size: 16px; font-weight: 700; margin-bottom: 10px; line-height: 1.3; }
.obj-a { color: #aeb6cd; font-size: 14.5px; }

/* ---------- FAQ ---------- */
.faq-grid { max-width: 820px; }
.accordion { margin-top: 26px; }
.acc-item { border-bottom: 1px solid var(--line); }
.acc-q { display: flex; align-items: center; justify-content: space-between; gap: 16px; width: 100%; background: none; border: none; cursor: pointer; padding: 16px 0; text-align: left; font-size: 15.5px; font-weight: 600; color: var(--text); font-family: inherit; list-style: none; }
.acc-q::-webkit-details-marker { display: none; }
.acc-q .plus { color: var(--violet); font-size: 22px; font-weight: 400; flex: none; line-height: 1; transition: transform .18s ease; display: inline-block; }
.acc-item[open] .plus { transform: rotate(45deg); }
.acc-a { color: var(--muted); font-size: 14.5px; padding: 0 0 16px; margin-top: -4px; max-width: 92%; }
.code-panel { background: #0f1730; border-radius: 14px; padding: 18px 20px; box-shadow: var(--shadow); overflow: hidden; }
.code-panel .code-head { color: #7d88a8; font-size: 11.5px; font-family: ui-monospace, SFMono-Regular, Menlo, monospace; margin-bottom: 10px; letter-spacing: .04em; }
.code-panel pre { margin: 0; overflow-x: auto; }
.code-panel code { font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace; font-size: 12px; line-height: 1.7; color: #c7cde0; white-space: pre; }
.tok-key { color: #8bb4ff; } .tok-str { color: #7ee0b8; } .tok-punc { color: #6f7aa0; }

/* ---------- CTA band ---------- */
.cta-band { padding: 0 0 0; }
.cta-inner { position: relative; overflow: hidden; border-radius: 20px; margin: 0 0 0; padding: 40px 44px; display: flex; align-items: center; justify-content: space-between; gap: 24px;
  background: linear-gradient(110deg, #5b45d8 0%, #7c4fe6 46%, #a855f7 100%); color: #fff; }
.cta-inner::after { content: ""; position: absolute; right: -40px; top: -60px; width: 320px; height: 320px; border-radius: 50%; background: radial-gradient(circle, rgba(255,255,255,.18), transparent 62%); }
.cta-text h2 { font-size: 28px; }
.cta-text p { color: rgba(255,255,255,.85); font-size: 15px; margin-top: 6px; }
.cta-actions { display: flex; align-items: center; gap: 20px; position: relative; z-index: 1; }
.cta-check { width: 60px; height: 60px; border-radius: 50%; background: rgba(255,255,255,.16); display: grid; place-items: center; flex: none; }

/* ---------- Footer ---------- */
.site-footer { background: var(--navy); color: #aab2c8; padding: 30px 0; }
.footer-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.footer-brand { display: flex; align-items: center; gap: 14px; }
.footer-brand .brand { font-size: 18px; }
.footer-brand .copy { font-size: 13px; color: #7f89a5; }
.footer-links { display: flex; gap: 26px; }
.footer-links a { font-size: 14px; color: #aab2c8; }
.footer-links a:hover { color: #fff; }
.footer-social { display: flex; gap: 14px; }
.footer-social a { color: #8b94ab; }
.footer-social a:hover { color: #fff; }
.fineprint { max-width: var(--max); margin: 18px auto 0; padding: 14px 28px 0; border-top: 1px solid rgba(255,255,255,.08); color: #6f7aa0; font-size: 12px; }

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
  .hero-inner, .problem-grid, .catches-grid, .fits-grid, .faq-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero h1 { font-size: 44px; }
  .tiles { max-width: none; }
  .steps-grid { grid-template-columns: 1fr; }
  .obj-grid { grid-template-columns: 1fr 1fr; }
  .nav-links { display: none; }
  .dash-stats { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 620px) {
  .section { padding: 60px 0; }
  .hero h1 { font-size: 36px; }
  .sec-head h2, .problem h2 { font-size: 27px; }
  .cat-icons { grid-template-columns: 1fr 1fr; }
  .obj-grid { grid-template-columns: 1fr; }
  .src-cards { grid-template-columns: 1fr; }
  .cta-inner { flex-direction: column; align-items: flex-start; padding: 30px 26px; }
  .wrap { padding: 0 20px; }
}

/* ===================== PRICING PAGE ===================== */
.nav-links a.active { color: #fff; background: rgba(255,255,255,.10); padding: 6px 12px; border-radius: 8px; }

.pricing-hero { padding: 58px 0 210px; text-align: center; }
.pricing-hero h1 { font-size: 46px; }
.pricing-sub { margin: 18px auto 0; color: #b9c0d6; font-size: 17px; }

.billing-toggle { display: inline-flex; align-items: center; gap: 12px; background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.12); border-radius: 999px; padding: 7px 12px; margin-top: 26px; }
.bt-label { color: #9aa3bd; font-size: 14px; font-weight: 600; }
.bt-label.active { color: #fff; }
.bt-switch { width: 44px; height: 24px; border-radius: 999px; background: rgba(255,255,255,.22); border: none; position: relative; cursor: pointer; padding: 0; flex: none; }
.billing-toggle.is-annual .bt-switch { background: var(--violet); }
.bt-knob { position: absolute; top: 3px; left: 3px; width: 18px; height: 18px; border-radius: 50%; background: #fff; transition: left .18s ease; }
.billing-toggle.is-annual .bt-knob { left: 23px; }
.bt-badge { background: var(--violet); color: #fff; font-size: 11px; font-weight: 700; padding: 3px 8px; border-radius: 6px; }

.plans-section { background: var(--lav-50); padding-bottom: 70px; }
.plans { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: -188px; position: relative; z-index: 2; align-items: start; }
.plan { background: #fff; border: 1px solid var(--line); border-radius: 16px; padding: 26px 22px; box-shadow: var(--shadow); display: flex; flex-direction: column; }
.plan.popular { border: 2px solid var(--violet); box-shadow: var(--shadow-lg); position: relative; }
.plan.enterprise { background: var(--ink); color: #fff; border-color: rgba(255,255,255,.08); }
.plan-badge { position: absolute; top: -13px; left: 50%; transform: translateX(-50%); background: var(--violet); color: #fff; font-size: 11px; font-weight: 700; letter-spacing: .06em; padding: 5px 14px; border-radius: 999px; white-space: nowrap; }
.plan-name { font-size: 20px; font-weight: 800; }
.plan-desc { color: var(--muted); font-size: 14px; margin-top: 8px; min-height: 42px; }
.plan.enterprise .plan-desc { color: #aeb6cd; }
.plan-price { font-size: 38px; font-weight: 800; letter-spacing: -.02em; margin-top: 16px; }
.plan-price small { font-size: 15px; font-weight: 600; color: var(--muted); letter-spacing: 0; }
.plan.enterprise .plan-price small { color: #aeb6cd; }
.plan-meta { color: var(--muted); font-size: 13.5px; margin-top: 14px; line-height: 1.7; }
.plan.enterprise .plan-meta { color: #aeb6cd; }
.plan-cta { margin-top: 20px; }
.plan-cta .btn { width: 100%; justify-content: center; }
.btn-outline { background: #fff; color: var(--violet-strong); border: 1px solid var(--line); }
.btn-outline:hover { border-color: var(--violet); transform: translateY(-1px); }
.plan-features { list-style: none; padding: 20px 0 0; margin: 22px 0 0; display: flex; flex-direction: column; gap: 12px; border-top: 1px solid var(--line); }
.plan.enterprise .plan-features { border-color: rgba(255,255,255,.1); }
.plan-features .grp { font-size: 13px; font-weight: 600; color: var(--muted); }
.plan.enterprise .plan-features .grp { color: #aeb6cd; }
.plan-feat { display: flex; align-items: center; gap: 10px; font-size: 14px; }
.plan-feat svg { color: var(--violet); flex: none; }
.plan.enterprise .plan-feat svg { color: #b7abf4; }
.trial-note { text-align: center; color: var(--muted); font-size: 14px; margin-top: 34px; display: flex; align-items: center; justify-content: center; gap: 8px; }

/* Compare table */
.compare-head h2 { font-size: 28px; }
.compare-head .sub { color: var(--muted); font-size: 16px; margin-top: 4px; }
.table-scroll { overflow-x: auto; margin-top: 26px; }
.compare-table { width: 100%; border-collapse: collapse; font-size: 14px; min-width: 720px; }
.compare-table th, .compare-table td { padding: 12px 14px; text-align: center; }
.compare-table thead th { font-weight: 700; font-size: 13.5px; }
.compare-table th:first-child, .compare-table td:first-child { text-align: left; color: var(--text); font-weight: 500; }
.compare-table tbody tr { border-top: 1px solid var(--line); }
.compare-table td.val { font-weight: 600; color: var(--text); }
.ck { display: inline-flex; }
.ck svg { width: 19px; height: 19px; }

/* Integrations */
.integ-grid { display: grid; grid-template-columns: 0.82fr 1.35fr; gap: 40px; align-items: center; }
.integ h2 { font-size: 26px; }
.integ p { color: var(--muted); margin-top: 10px; font-size: 15px; max-width: 260px; }
.integ .link { color: var(--violet); font-weight: 600; margin-top: 16px; display: inline-flex; gap: 6px; align-items: center; font-size: 14px; }
.logo-row { display: flex; gap: 9px; flex-wrap: wrap; justify-content: flex-end; }
.logo-card { width: 80px; height: 60px; background: #fff; border: 1px solid var(--line); border-radius: 12px; display: grid; place-items: center; box-shadow: var(--shadow-sm); font-weight: 800; font-size: 14px; letter-spacing: -.01em; color: #2b3350; flex: none; }
.logo-card small { display: block; font-size: 11px; font-weight: 700; color: var(--muted); text-align: center; line-height: 1.2; }

/* Pricing FAQ */
.pfaq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px 24px; margin-top: 28px; }
.pfaq-card { background: #fff; border: 1px solid var(--line); border-radius: 12px; padding: 16px 18px; box-shadow: var(--shadow-sm); }
.pfaq-card summary { display: flex; justify-content: space-between; align-items: center; gap: 12px; font-weight: 600; font-size: 15px; cursor: pointer; list-style: none; color: var(--text); }
.pfaq-card summary::-webkit-details-marker { display: none; }
.pfaq-card .chev { color: var(--muted-2); flex: none; }
.pfaq-card .a { color: var(--muted); font-size: 14px; margin-top: 10px; }

@media (max-width: 960px) {
  .plans { grid-template-columns: 1fr 1fr; margin-top: -170px; }
  .integ-grid { grid-template-columns: 1fr; }
  .logo-row { justify-content: flex-start; }
  .pfaq-grid { grid-template-columns: 1fr; }
}
@media (max-width: 620px) {
  .pricing-hero h1 { font-size: 34px; }
  .plans { grid-template-columns: 1fr; margin-top: -160px; }
}
