@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,300&display=swap');

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; }

/* ── TOKENS ── */
:root {
  --teal: #1DAC92; --teal-dk: #15856F; --teal-lt: #E0F5F1;
  --amber: #FCB041; --amber-lt: #FFF5E0;
  --pink: #E12A56;  --pink-lt: #FDEAEE;
  --orange: #FE8957; --orange-lt: #FFF0EA;
  --black: #030008; --dark: #0D0D1A;
  --white: #FFFFFF; --off: #F9FAFB; --surface: #F3F3F3;
  --text: #0D0D1A; --muted: #6B7280; --border: rgba(0,0,0,0.09);
  --max: 1200px; --pad: 48px;
}

/* ── BASE ── */
body { font-family: 'Poppins', sans-serif; color: var(--text); background: var(--white); line-height: 1.6; font-size: 15px; -webkit-font-smoothing: antialiased; overflow-x: hidden; }
a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }
button { cursor: pointer; font-family: inherit; }
hr.divider { border: none; border-top: 0.5px solid var(--border); }

/* ════════════════════════════════════════════════════════════
   LAYOUT  — single rule per selector
   ════════════════════════════════════════════════════════════ */

/* The ONE centering wrapper used throughout */
.container {
  max-width: var(--max);
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--pad);
  padding-right: var(--pad);
}

/* Section padding bands */
.section-pad { padding: 80px 0; }
.bg-offwhite  { background: var(--off); }
.bg-dark      { background: var(--black); }
.dark         { background: var(--black); }
.alt          { background: var(--off); }

/* ════════════════════════════════════════════════════════════
   BUTTONS
   ════════════════════════════════════════════════════════════ */
.btn-orange       { display: inline-block; background: var(--orange); color: var(--white); border: none; padding: 13px 28px; border-radius: 7px; font-size: 15px; font-weight: 600; font-family: inherit; transition: opacity .15s; }
.btn-teal         { display: inline-block; background: var(--teal);   color: var(--white); border: none; padding: 13px 28px; border-radius: 7px; font-size: 15px; font-weight: 600; font-family: inherit; transition: opacity .15s; }
.btn-white        { display: inline-block; background: var(--white);  color: var(--teal);  border: none; padding: 13px 28px; border-radius: 7px; font-size: 15px; font-weight: 600; font-family: inherit; transition: opacity .15s; }
.btn-ghost        { display: inline-block; background: transparent; color: rgba(255,255,255,.8); border: 1.5px solid rgba(255,255,255,.25); padding: 12px 26px; border-radius: 7px; font-size: 15px; font-weight: 600; font-family: inherit; transition: all .15s; }
.btn-outline      { display: inline-block; background: transparent; color: var(--text); border: 1.5px solid var(--border); padding: 12px 26px; border-radius: 7px; font-size: 15px; font-weight: 600; font-family: inherit; }
.btn-outline-white{ display: inline-block; background: transparent; color: var(--white); border: 1.5px solid rgba(255,255,255,.35); padding: 12px 26px; border-radius: 7px; font-size: 15px; font-weight: 600; font-family: inherit; }
.btn-orange:hover, .btn-teal:hover, .btn-white:hover { opacity: .88; }
.btn-ghost:hover  { border-color: rgba(255,255,255,.6); opacity: 1; }

/* ════════════════════════════════════════════════════════════
   TYPOGRAPHY HELPERS
   ════════════════════════════════════════════════════════════ */
.section-tag        { font-size: 11px; text-transform: uppercase; letter-spacing: 1px; font-weight: 600; color: var(--teal); margin-bottom: 10px; }
.section-tag-white  { font-size: 11px; text-transform: uppercase; letter-spacing: 1px; font-weight: 600; color: rgba(255,255,255,.6); margin-bottom: 10px; }
.section-h2         { font-size: 38px; font-weight: 800; line-height: 1.12; letter-spacing: -.8px; color: var(--text); margin-bottom: 10px; }
.section-h2-white   { font-size: 38px; font-weight: 800; line-height: 1.12; letter-spacing: -.8px; color: var(--white); margin-bottom: 10px; }
.section-sub        { font-size: 16px; color: var(--muted); font-weight: 300; line-height: 1.7; max-width: 560px; margin-bottom: 40px; }
.section-sub-white  { font-size: 16px; color: rgba(255,255,255,.55); font-weight: 300; line-height: 1.7; max-width: 560px; margin-bottom: 40px; }
.feature-tag        { font-size: 11px; text-transform: uppercase; letter-spacing: 1px; font-weight: 600; color: var(--teal); margin-bottom: 10px; }
.feature-h3         { font-size: 27px; font-weight: 800; line-height: 1.2; letter-spacing: -.5px; color: var(--text); margin-bottom: 12px; }
.feature-p          { font-size: 15px; color: var(--muted); font-weight: 300; line-height: 1.7; margin-bottom: 20px; }
.hl                 { color: var(--amber); }

/* Pro page specific */
.pro-hero { background: var(--black); padding: 80px 0 0; position: relative; overflow: hidden; }
.pro-hero-glow { position: absolute; top: -100px; left: 50%; transform: translateX(-50%); width: 900px; height: 600px; background: radial-gradient(ellipse, rgba(29,172,146,.12) 0%, transparent 70%); pointer-events: none; }
.pro-hero-inner { max-width: var(--max); margin: 0 auto; padding: 0 var(--pad) 72px; display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.pro-hero-badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(29,172,146,.12); border: 0.5px solid rgba(29,172,146,.3); color: var(--teal); font-size: 12px; font-weight: 600; padding: 5px 14px; border-radius: 100px; margin-bottom: 20px; }
.pro-hero-h1 { font-size: 50px; font-weight: 800; color: var(--white); line-height: 1.08; letter-spacing: -1.5px; margin-bottom: 18px; }
.pro-hero-sub { font-size: 17px; color: rgba(255,255,255,.6); line-height: 1.7; font-weight: 300; margin-bottom: 32px; }
.pro-hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.pro-tag { font-size: 11px; text-transform: uppercase; letter-spacing: 1px; font-weight: 600; color: var(--teal); margin-bottom: 10px; }
.pro-h2 { font-size: 36px; font-weight: 800; color: var(--white); letter-spacing: -.8px; margin-bottom: 12px; line-height: 1.15; }
.pro-sub { font-size: 16px; color: rgba(255,255,255,.55); font-weight: 300; line-height: 1.7; margin-bottom: 32px; }
.pro-inner { max-width: var(--max); margin: 0 auto; padding: 0 var(--pad); display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.pro-capabilities, .cap-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; margin-top: 44px; }
.cap-card { background: var(--white); border: 0.5px solid var(--border); border-radius: 14px; padding: 28px 24px; transition: border-color .15s, transform .15s; }
.cap-card:hover { border-color: var(--teal); transform: translateY(-2px); }
.cap-icon { width: 52px; height: 52px; border-radius: 14px; display: flex; align-items: center; justify-content: center; margin-bottom: 16px; }
.cap-title { font-size: 17px; font-weight: 700; color: var(--text); margin-bottom: 10px; }
.cap-desc { font-size: 14px; color: var(--muted); line-height: 1.7; font-weight: 300; }
.pro-cap { display: flex; align-items: flex-start; gap: 14px; padding: 16px 18px; background: rgba(255,255,255,.04); border: 0.5px solid rgba(255,255,255,.07); border-radius: 10px; margin-bottom: 12px; }
.pro-cap-icon { width: 36px; height: 36px; border-radius: 8px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.pro-cap-title { font-size: 14px; font-weight: 700; color: var(--white); margin-bottom: 3px; }
.pro-cap-desc { font-size: 13px; color: rgba(255,255,255,.5); line-height: 1.5; font-weight: 300; }

/* Use case rows */
.uc-row { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; padding: 56px 0; border-bottom: 0.5px solid var(--border); }
.uc-row:last-child { border-bottom: none; }
.uc-row.flip { direction: rtl; }
.uc-row.flip > * { direction: ltr; }
.uc-tag { font-size: 11px; text-transform: uppercase; letter-spacing: 1px; font-weight: 600; color: var(--teal); margin-bottom: 10px; }
.uc-h3 { font-size: 26px; font-weight: 800; color: var(--text); letter-spacing: -.5px; margin-bottom: 12px; line-height: 1.25; }
.uc-p { font-size: 15px; color: var(--muted); line-height: 1.7; font-weight: 300; margin-bottom: 20px; }
.uc-list { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.uc-list li { display: flex; align-items: flex-start; gap: 10px; font-size: 14px; color: var(--text); line-height: 1.5; }
.uc-visual, .uc-dark-box { background: var(--black); border-radius: 16px; padding: 24px; }
.uc-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; margin-top: 44px; }
.uc-card { background: var(--off); border: 0.5px solid var(--border); border-radius: 14px; padding: 28px 24px; transition: border-color .15s, transform .15s; }
.uc-card:hover { border-color: var(--teal); transform: translateY(-2px); }
.uc-icon { width: 40px; height: 40px; border-radius: 10px; margin-bottom: 16px; display: flex; align-items: center; justify-content: center; }
.uc-title { font-size: 15px; font-weight: 700; color: var(--text); margin-bottom: 8px; }
.uc-desc { font-size: 13px; color: var(--muted); line-height: 1.65; font-weight: 300; }

/* ════════════════════════════════════════════════════════════
   HOW IT WORKS — STEPS
   ════════════════════════════════════════════════════════════ */
.steps-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 2px; margin-top: 44px; }
.step-card { background: var(--white); border: 0.5px solid var(--border); padding: 38px 30px; position: relative; }
.step-card:first-child { border-radius: 12px 0 0 12px; }
.step-card:last-child { border-radius: 0 12px 12px 0; }
.step-num { font-size: 52px; font-weight: 800; color: var(--teal); opacity: .14; line-height: 1; position: absolute; top: 18px; right: 22px; }
.step-icon { width: 48px; height: 48px; border-radius: 12px; display: flex; align-items: center; justify-content: center; margin-bottom: 18px; }
.step-title { font-size: 18px; font-weight: 700; color: var(--text); margin-bottom: 10px; }
.step-desc { font-size: 14px; color: var(--muted); line-height: 1.65; font-weight: 300; }

/* ════════════════════════════════════════════════════════════
   WHY GRID
   ════════════════════════════════════════════════════════════ */
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.why-cards { display: flex; flex-direction: column; gap: 14px; }
.why-card { background: var(--off); border: 0.5px solid var(--border); border-radius: 12px; padding: 20px 22px; display: flex; gap: 16px; align-items: flex-start; transition: border-color .15s; }
.why-card:hover { border-color: rgba(0,0,0,.18); }
.why-icon { width: 40px; height: 40px; border-radius: 10px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.why-title { font-size: 15px; font-weight: 700; color: var(--text); margin-bottom: 4px; }
.why-copy { font-size: 13px; color: var(--muted); line-height: 1.65; font-weight: 300; }

/* ════════════════════════════════════════════════════════════
   MINI DASHBOARD (homepage + products)
   ════════════════════════════════════════════════════════════ */
.dash-wrap { max-width: 960px; margin: 0 auto; padding: 0 var(--pad); background: rgba(255,255,255,.06); border-radius: 14px 14px 0 0; border: 0.5px solid rgba(255,255,255,.1); border-bottom: none; padding-top: 12px; }
.dash-inner, .mini-dash { background: var(--dark); border-radius: 10px 10px 0 0; overflow: hidden; border: 0.5px solid rgba(255,255,255,.08); }
.mini-dash { border-radius: 14px; }
.dash-bar, .mini-dash-bar { background: #1A1A2E; padding: 10px 16px; display: flex; justify-content: space-between; align-items: center; border-bottom: 0.5px solid rgba(255,255,255,.05); }
.dash-bar-title, .mini-dash-title { font-size: 11px; color: rgba(255,255,255,.45); font-weight: 600; }
.dash-live { background: var(--teal); color: var(--white); font-size: 10px; padding: 2px 9px; border-radius: 100px; font-weight: 600; }
.dash-kpis, .dash-4up { display: grid; grid-template-columns: repeat(4,1fr); gap: 8px; padding: 14px; }
.mini-dash-body { padding: 14px; }
.dash-4up { padding: 0; margin-bottom: 10px; }
.dkpi, .dash-kpi { background: rgba(255,255,255,.04); border-radius: 8px; padding: 12px; }
.dkpi-l, .dash-kpi-l, .dkl { font-size: 9px; color: rgba(255,255,255,.35); text-transform: uppercase; letter-spacing: .7px; margin-bottom: 6px; }
.dkpi-v, .dash-kpi-v, .dkv { font-size: 20px; font-weight: 700; color: var(--white); }
.dkpi-d, .dash-kpi-d, .dkd { font-size: 10px; margin-top: 3px; }
.dkpi-d.up, .dkd.up, .up { color: var(--teal); }
.dkpi-d.warn, .dkd.warn, .warn { color: var(--amber); }
.dash-charts { display: grid; grid-template-columns: 2fr 1fr; gap: 10px; padding: 0 14px 14px; }
.dchart { background: rgba(255,255,255,.03); border-radius: 8px; padding: 12px; }
.dchart-t { font-size: 9px; color: rgba(255,255,255,.35); text-transform: uppercase; letter-spacing: .5px; margin-bottom: 10px; }
.bars-row { display: flex; align-items: flex-end; gap: 5px; height: 52px; }
.b { flex: 1; border-radius: 3px 3px 0 0; }
.bt { background: var(--teal); } .ba { background: var(--amber); } .bd { background: rgba(255,255,255,.12); }
.loc-list { display: flex; flex-direction: column; gap: 6px; }
.loc-r { display: flex; justify-content: space-between; align-items: center; padding: 6px 8px; background: rgba(255,255,255,.04); border-radius: 5px; }
.loc-n { font-size: 10px; color: rgba(255,255,255,.6); }
.loc-v { font-size: 11px; font-weight: 600; color: var(--white); }
.loc-b { font-size: 9px; padding: 2px 6px; border-radius: 100px; }
.lb-up { background: rgba(29,172,146,.2); color: var(--teal); }
.lb-dn { background: rgba(252,176,65,.15); color: var(--amber); }
.dash-locs { background: rgba(255,255,255,.03); border-radius: 8px; padding: 10px 12px; }
.dl-l, .dash-loc-lbl { font-size: 9px; color: rgba(255,255,255,.3); text-transform: uppercase; letter-spacing: .5px; margin-bottom: 8px; }
.dl-row, .dash-loc-row { display: flex; justify-content: space-between; align-items: center; margin-bottom: 5px; }
.dl-n, .dash-loc-n { font-size: 11px; color: rgba(255,255,255,.6); }
.dl-v, .dash-loc-v { font-size: 11px; font-weight: 600; color: var(--white); }
.dl-b, .dash-loc-b { font-size: 9px; padding: 2px 6px; border-radius: 100px; }
.dlb-up { background: rgba(29,172,146,.2); color: var(--teal); }
.dlb-dn { background: rgba(252,176,65,.15); color: var(--amber); }

/* ════════════════════════════════════════════════════════════
   TESTIMONIAL SECTION
   ════════════════════════════════════════════════════════════ */
.testi-section { background: var(--black); }
.testi-inner { max-width: 740px; margin: 0 auto; padding: 80px var(--pad); text-align: center; }
.testi-stars { display: flex; justify-content: center; gap: 4px; margin-bottom: 22px; }
.star, .tc-star { width: 16px; height: 16px; background: var(--amber); clip-path: polygon(50% 0%,61% 35%,98% 35%,68% 57%,79% 91%,50% 70%,21% 91%,32% 57%,2% 35%,39% 35%); }
.tc-star { width: 13px; height: 13px; }
.testi-q { font-size: 22px; font-weight: 600; color: var(--white); line-height: 1.5; letter-spacing: -.3px; margin-bottom: 22px; font-style: italic; }
.testi-attr { font-size: 13px; color: rgba(255,255,255,.45); }
.testi-attr strong { color: rgba(255,255,255,.8); font-weight: 600; }

/* Testimonial card grid */
.testi-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; margin-top: 44px; }
.testi-card { background: var(--white); border: 0.5px solid var(--border); border-radius: 16px; padding: 26px 22px; transition: border-color .15s, transform .15s; }
.testi-card:hover { border-color: var(--teal); transform: translateY(-2px); }
.tc-stars { display: flex; gap: 3px; margin-bottom: 14px; }
.tc-quote { font-size: 14px; color: var(--text); line-height: 1.7; font-style: italic; margin-bottom: 18px; font-weight: 300; }
.tc-attr-name { font-size: 13px; font-weight: 700; color: var(--text); }
.tc-attr-role { font-size: 12px; color: var(--muted); margin-top: 2px; }
.tc-industry { display: inline-block; margin-top: 10px; font-size: 10px; padding: 3px 9px; border-radius: 100px; font-weight: 600; }

/* Case studies */
.case-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 28px; margin-top: 44px; }
.case-card { background: var(--white); border: 0.5px solid var(--border); border-radius: 16px; overflow: hidden; transition: transform .15s, border-color .15s; }
.case-card:hover { border-color: var(--teal); transform: translateY(-2px); }
.case-header { padding: 28px 28px 0; }
.case-industry { font-size: 11px; text-transform: uppercase; letter-spacing: 1px; font-weight: 600; margin-bottom: 10px; }
.case-title { font-size: 21px; font-weight: 800; color: var(--text); letter-spacing: -.3px; margin-bottom: 10px; line-height: 1.25; }
.case-summary { font-size: 14px; color: var(--muted); line-height: 1.65; font-weight: 300; margin-bottom: 20px; }
.case-stats { display: flex; border-top: 0.5px solid var(--border); }
.case-stat { flex: 1; padding: 16px 18px; text-align: center; border-right: 0.5px solid var(--border); }
.case-stat:last-child { border-right: none; }
.cs-num { font-size: 24px; font-weight: 800; color: var(--teal); letter-spacing: -.5px; }
.cs-lbl { font-size: 11px; color: var(--muted); margin-top: 3px; }

/* ════════════════════════════════════════════════════════════
   SUPPORTERS
   ════════════════════════════════════════════════════════════ */
.supporters { padding: 48px 0; border-top: 0.5px solid var(--border); }
.sup-inner { max-width: var(--max); margin: 0 auto; padding: 0 var(--pad); }
.sup-label { text-align: center; font-size: 11px; text-transform: uppercase; letter-spacing: 1px; color: var(--muted); font-weight: 500; margin-bottom: 26px; }
.sup-logos { display: flex; justify-content: center; align-items: center; gap: 40px; flex-wrap: wrap; }
.sup-logos img { height: 44px; width: auto; max-width: 110px; object-fit: contain; transition: transform .2s; }
.sup-logos img:hover { transform: scale(1.08); }

/* ════════════════════════════════════════════════════════════
   CTA STRIP
   ════════════════════════════════════════════════════════════ */
.cta-strip { background: var(--teal); text-align: center; padding: 80px var(--pad); }
.cta-h2 { font-size: 42px; font-weight: 800; color: var(--white); letter-spacing: -1px; margin-bottom: 14px; line-height: 1.1; }
.cta-sub { font-size: 17px; color: rgba(255,255,255,.8); margin-bottom: 32px; font-weight: 300; }
.cta-btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* ════════════════════════════════════════════════════════════
   FOOTER
   ════════════════════════════════════════════════════════════ */
.footer-bar { border-top: 0.5px solid var(--border); padding: 22px 0; }
.footer-inner { max-width: var(--max); margin: 0 auto; padding: 0 var(--pad); display: flex; justify-content: space-between; align-items: center; font-size: 12px; color: var(--muted); }
.footer-inner img { height: 28px; width: auto; }

/* ════════════════════════════════════════════════════════════
   INTEGRATIONS PAGE
   ════════════════════════════════════════════════════════════ */
.integration-hero-stats { display: flex; margin-top: 40px; background: rgba(255,255,255,.07); border-radius: 12px; border: 0.5px solid rgba(255,255,255,.12); overflow: hidden; }
.ihs { flex: 1; padding: 20px 24px; border-right: 0.5px solid rgba(255,255,255,.1); text-align: center; }
.ihs:last-child { border-right: none; }
.ihs-num { font-size: 28px; font-weight: 800; color: var(--white); }
.ihs-num span { color: var(--amber); }
.ihs-lbl { font-size: 12px; color: rgba(255,255,255,.5); margin-top: 4px; }
.int-filter-bar { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 36px; }
.int-filter { padding: 8px 18px; border-radius: 100px; font-size: 13px; font-weight: 500; border: 1.5px solid var(--border); background: var(--white); color: var(--muted); transition: all .15s; }
.int-filter:hover { border-color: rgba(0,0,0,.2); color: var(--text); }
.int-filter.on { background: var(--black); color: var(--white); border-color: var(--black); }
.int-category { margin-bottom: 56px; }
.int-category-header { display: flex; align-items: center; gap: 14px; padding-bottom: 16px; margin-bottom: 22px; border-bottom: 0.5px solid var(--border); }
.int-cat-icon { width: 44px; height: 44px; border-radius: 12px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.int-cat-title { font-size: 19px; font-weight: 800; color: var(--text); }
.int-cat-desc { font-size: 13px; color: var(--muted); font-weight: 300; margin-top: 2px; }
.int-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 14px; }
.int-card { background: var(--white); border: 0.5px solid var(--border); border-radius: 14px; padding: 18px 16px; display: flex; flex-direction: column; gap: 10px; transition: border-color .15s, transform .15s; }
.int-card:hover { border-color: var(--teal); transform: translateY(-2px); }
.int-card-top { display: flex; align-items: center; gap: 10px; }
.int-logo-wrap { width: 40px; height: 40px; border-radius: 9px; background: var(--off); border: 0.5px solid var(--border); display: flex; align-items: center; justify-content: center; font-size: 12px; font-weight: 800; flex-shrink: 0; }
.int-card-name { font-size: 13px; font-weight: 700; color: var(--text); }
.int-card-type { font-size: 11px; color: var(--muted); }
.int-status { font-size: 9px; padding: 3px 8px; border-radius: 100px; font-weight: 600; margin-left: auto; flex-shrink: 0; }
.status-live { background: var(--teal-lt); color: var(--teal-dk); }
.status-soon { background: var(--amber-lt); color: #7A4E00; }
.int-card-desc { font-size: 12px; color: var(--muted); line-height: 1.6; font-weight: 300; }
.int-industries { display: flex; gap: 4px; flex-wrap: wrap; }
.int-tag { font-size: 10px; padding: 2px 7px; border-radius: 100px; font-weight: 600; }
.t-auto { background: #E0F5F1; color: #0F6E56; }
.t-wash { background: #E6F1FB; color: #185FA5; }
.t-qsr  { background: #FFF5E0; color: #7A4E00; }
.t-fit  { background: #FDEAEE; color: #8B0F2A; }
.t-ret  { background: #FFF0EA; color: #8B3A0A; }
.t-home { background: #EEEDFE; color: #3C3489; }
.t-all  { background: var(--surface); color: #444; }

/* ════════════════════════════════════════════════════════
   PRODUCTS PAGE
   ════════════════════════════════════════════════════════════ */
.prod-hero { background: var(--black); padding: 80px 0 72px; position: relative; overflow: hidden; }
.prod-hero-glow { position: absolute; top: -80px; left: 50%; transform: translateX(-50%); width: 800px; height: 500px; background: radial-gradient(ellipse, rgba(29,172,146,.1) 0%, transparent 70%); pointer-events: none; }
.prod-hero-inner { max-width: var(--max); margin: 0 auto; padding: 0 var(--pad); text-align: center; }
.prod-hero-h1 { font-size: 50px; font-weight: 800; color: var(--white); letter-spacing: -1.5px; line-height: 1.08; margin-bottom: 16px; }
.prod-hero-sub { font-size: 18px; color: rgba(255,255,255,.6); max-width: 620px; margin: 0 auto 36px; font-weight: 300; line-height: 1.6; }
.prod-section { padding: 80px 0; }
.prod-section.alt { background: var(--off); }
.prod-section.dark { background: var(--black); }
.prod-inner { max-width: var(--max); margin: 0 auto; padding: 0 var(--pad); }
.prod-split { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.prod-split.flip { direction: rtl; }
.prod-split.flip > * { direction: ltr; }
.prod-badge-row { margin-bottom: 4px; }
.prod-badge { display: inline-flex; align-items: center; gap: 6px; font-size: 11px; font-weight: 700; padding: 5px 12px; border-radius: 100px; text-transform: uppercase; letter-spacing: .5px; margin-bottom: 14px; }
.prod-badge.core  { background: var(--teal-lt); color: var(--teal-dk); }
.prod-badge.addon { background: var(--amber-lt); color: #7A4E00; }
.prod-h2       { font-size: 34px; font-weight: 800; color: var(--text);  letter-spacing: -.8px; margin-bottom: 12px; line-height: 1.15; }
.prod-h2-white { font-size: 34px; font-weight: 800; color: var(--white); letter-spacing: -.8px; margin-bottom: 12px; line-height: 1.15; }
.prod-sub       { font-size: 15px; color: var(--muted); font-weight: 300; line-height: 1.7; margin-bottom: 22px; }
.prod-sub-white { font-size: 15px; color: rgba(255,255,255,.55); font-weight: 300; line-height: 1.7; margin-bottom: 22px; }
.prod-features { list-style: none; display: flex; flex-direction: column; gap: 10px; margin-bottom: 24px; }
.prod-features li { display: flex; align-items: flex-start; gap: 10px; font-size: 14px; color: var(--text); line-height: 1.5; }
.addon-overview { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; margin-top: 44px; }
.ao-card { background: var(--white); border: 0.5px solid var(--border); border-radius: 16px; padding: 28px 22px; text-align: center; transition: border-color .15s, transform .15s; display: block; }
.ao-card:hover { border-color: var(--teal); transform: translateY(-2px); }
.ao-icon { width: 54px; height: 54px; border-radius: 14px; display: flex; align-items: center; justify-content: center; margin: 0 auto 16px; }
.ao-title { font-size: 16px; font-weight: 700; color: var(--text); margin-bottom: 8px; }
.ao-desc { font-size: 13px; color: var(--muted); line-height: 1.6; font-weight: 300; }
.signal-phone { background: #1A1A2E; border-radius: 14px; padding: 18px; max-width: 300px; margin: 0 auto; }
.signal-sender { font-size: 10px; color: rgba(255,255,255,.3); margin-bottom: 12px; }
.signal-msg { border-radius: 12px; padding: 11px 14px; margin-bottom: 8px; font-size: 12px; line-height: 1.55; font-weight: 300; background: rgba(255,255,255,.07); color: rgba(255,255,255,.8); }
.from { border-radius: 12px 12px 12px 4px; }
.re-cards { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; margin-top: 40px; }
.re-card { background: rgba(255,255,255,.05); border: 0.5px solid rgba(255,255,255,.1); border-radius: 14px; padding: 24px 20px; }
.re-card-icon { width: 44px; height: 44px; border-radius: 12px; display: flex; align-items: center; justify-content: center; margin-bottom: 14px; }
.re-card-title { font-size: 14px; font-weight: 700; color: var(--white); margin-bottom: 6px; }
.re-card-desc { font-size: 12px; color: rgba(255,255,255,.5); line-height: 1.6; font-weight: 300; }
.pipe-step { display: flex; align-items: center; gap: 14px; margin-bottom: 14px; }
.pipe-step-title { font-size: 13px; font-weight: 700; color: var(--text); }
.pipe-step-sub { font-size: 12px; color: var(--muted); font-weight: 300; }
.prod-visual { border-radius: 16px; overflow: hidden; border: 0.5px solid var(--border); background: var(--white); padding: 28px; }
.prod-visual-dark { border-radius: 16px; background: rgba(255,255,255,.05); border: 0.5px solid rgba(255,255,255,.1); padding: 28px; }

/* ════════════════════════════════════════════════════════════
   ABOUT PAGE
   ════════════════════════════════════════════════════════════ */
.team-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; margin-top: 44px; }
.team-card { background: var(--white); border: 0.5px solid var(--border); border-radius: 16px; overflow: hidden; transition: transform .15s, border-color .15s; }
.team-card:hover { transform: translateY(-3px); border-color: rgba(0,0,0,.15); }
.team-photo { width: 100%; aspect-ratio: 1; object-fit: cover; object-position: top; display: block; }
.team-info { padding: 20px 22px; }
.team-name { font-size: 18px; font-weight: 700; color: var(--text); margin-bottom: 3px; }
.team-role { font-size: 13px; color: var(--teal); font-weight: 600; margin-bottom: 10px; }
.team-bio  { font-size: 13px; color: var(--muted); line-height: 1.65; font-weight: 300; }
.value-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; margin-top: 44px; }
.value-card { background: var(--off); border: 0.5px solid var(--border); border-radius: 14px; padding: 28px 24px; }
.value-icon { width: 44px; height: 44px; border-radius: 12px; display: flex; align-items: center; justify-content: center; margin-bottom: 14px; }
.value-title { font-size: 16px; font-weight: 700; color: var(--text); margin-bottom: 8px; }
.value-desc { font-size: 13px; color: var(--muted); line-height: 1.65; font-weight: 300; }

/* ════════════════════════════════════════════════════════════
   CONTACT PAGE
   ════════════════════════════════════════════════════════════ */
.contact-grid { display: grid; grid-template-columns: 1fr 1.6fr; gap: 72px; align-items: start; }
.contact-info { display: flex; flex-direction: column; gap: 28px; }
.ci-item { display: flex; gap: 16px; align-items: flex-start; }
.ci-icon { width: 44px; height: 44px; border-radius: 12px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.ci-label { font-size: 14px; font-weight: 700; color: var(--text); margin-bottom: 3px; }
.ci-value { font-size: 14px; color: var(--muted); font-weight: 300; line-height: 1.6; }
.contact-form { background: var(--white); border: 0.5px solid var(--border); border-radius: 18px; padding: 40px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.full { grid-column: 1 / -1; }
.form-label { font-size: 13px; font-weight: 600; color: var(--text); }
.req { color: var(--pink); }
.form-input, .form-select, .form-textarea { border: 0.5px solid var(--border); border-radius: 8px; padding: 11px 14px; font-size: 14px; font-family: inherit; color: var(--text); background: var(--white); outline: none; transition: border-color .15s; }
.form-input:focus, .form-select:focus, .form-textarea:focus { border-color: var(--teal); }
.form-textarea { min-height: 110px; resize: vertical; }
.form-select { cursor: pointer; }
.form-submit { width: 100%; background: var(--orange); color: var(--white); border: none; padding: 14px; border-radius: 8px; font-size: 15px; font-weight: 600; font-family: inherit; margin-top: 8px; transition: opacity .15s; }
.form-submit:hover { opacity: .9; }
.form-note { font-size: 12px; color: var(--muted); text-align: center; margin-top: 12px; }
.process-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; margin-top: 44px; }
.process-card { background: var(--off); border: 0.5px solid var(--border); border-radius: 14px; padding: 28px 24px; text-align: center; }
.pc-num { font-size: 40px; font-weight: 800; color: var(--teal); opacity: .3; line-height: 1; margin-bottom: 12px; }
.pc-title { font-size: 16px; font-weight: 700; color: var(--text); margin-bottom: 8px; }
.pc-desc { font-size: 13px; color: var(--muted); font-weight: 300; line-height: 1.65; }

/* ════════════════════════════════════════════════════════════
   RESPONSIVE
   ════════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  :root { --pad: 32px; }
  .hero-h1, .pro-hero-h1, .prod-hero-h1 { font-size: 40px; }
  .section-h2 { font-size: 30px; }
  .modules-grid { grid-template-columns: repeat(3,1fr); }
  .addon-overview { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 768px) {
  :root { --pad: 20px; }
  .hero-h1, .pro-hero-h1, .prod-hero-h1, .page-hero-h1 { font-size: 30px; }
  .section-h2, .section-h2-white { font-size: 26px; }
  .feature-split, .feature-split.reverse,
  .why-grid, .uc-row, .uc-row.flip,
  .contact-grid, .ind-panel,
  .pro-hero-inner, .pro-inner,
  .prod-split, .prod-split.flip { grid-template-columns: 1fr !important; direction: ltr !important; }
  .modules-grid, .feature-cards, .value-grid, .process-grid, .team-grid { grid-template-columns: 1fr 1fr; }
  .testi-grid, .case-grid { grid-template-columns: 1fr; }
  .int-grid { grid-template-columns: repeat(2,1fr); }
  .steps-grid { grid-template-columns: 1fr; gap: 12px; }
  .step-card:first-child, .step-card:last-child { border-radius: 12px; }
  .stats-inner { grid-template-columns: repeat(2,1fr); }
  .addon-overview { grid-template-columns: 1fr; }
  .re-cards { grid-template-columns: 1fr 1fr; }
  .dash-kpis { grid-template-columns: 1fr 1fr; }
  .dash-charts { grid-template-columns: 1fr; }
  .hero-stats { flex-wrap: wrap; }
}



/* ââ PRO HERO ââ */
.pro-page-hero {
  background: var(--black);
  padding: 72px 0 0;
  overflow: hidden;
  position: relative;
}
.pro-page-hero-glow {
  position: absolute;
  top: -80px; left: 50%;
  transform: translateX(-50%);
  width: 900px; height: 500px;
  background: radial-gradient(ellipse, rgba(29,172,146,.13) 0%, rgba(252,176,65,.06) 40%, transparent 70%);
  pointer-events: none;
}
.pro-page-hero-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--pad);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: flex-start;
}
.pro-logo-lockup {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 28px;
}
.pro-logo-lockup img {
  height: 42px;
  width: auto;
}
.pro-page-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,.07);
  color: rgba(255,255,255,.8);
  font-size: 12px;
  font-weight: 500;
  padding: 5px 14px;
  border-radius: 100px;
  margin-bottom: 22px;
  border: 0.5px solid rgba(255,255,255,.15);
}
.pro-page-h1 {
  font-size: 48px;
  font-weight: 800;
  color: var(--white);
  line-height: 1.08;
  letter-spacing: -1.5px;
  margin-bottom: 20px;
}
.pro-page-h1 .hl { color: var(--amber); }
.pro-page-sub {
  font-size: 17px;
  color: rgba(255,255,255,.6);
  font-weight: 300;
  line-height: 1.7;
  max-width: 480px;
  margin-bottom: 32px;
}
.pro-page-actions {
  display: flex;
  gap: 12px;
  margin-bottom: 40px;
}
.pro-trust-row {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  padding-top: 20px;
  border-top: 0.5px solid rgba(255,255,255,.1);
}
.pro-trust-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: rgba(255,255,255,.45);
}

/* Hero report preview panel */
.pro-report-preview {
  border-radius: 16px 16px 0 0;
  overflow: hidden;
  border: 0.5px solid rgba(255,255,255,.1);
  box-shadow: 0 -8px 48px rgba(0,0,0,.4);
  margin-top: 16px;
}
.prp-header {
  background: #111118;
  padding: 14px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 0.5px solid rgba(255,255,255,.08);
}
.prp-title-wrap { display: flex; align-items: center; gap: 10px; }
.prp-logo { width: 24px; height: 24px; border-radius: 6px; background: linear-gradient(135deg, #1DAC92, #FCB041); display: flex; align-items: center; justify-content: center; font-size: 9px; font-weight: 800; color: white; }
.prp-title { font-size: 12px; font-weight: 700; color: var(--white); }
.prp-sub { font-size: 10px; color: rgba(255,255,255,.4); }
.prp-status { display: flex; align-items: center; gap: 5px; font-size: 10px; color: var(--teal); font-weight: 600; }
.prp-pulse { width: 6px; height: 6px; border-radius: 50%; background: var(--teal); animation: pulse-live 1.8s ease-in-out infinite; }
@keyframes pulse-live { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:.4;transform:scale(1.3)} }
.prp-body { background: #0D0D18; padding: 16px; }
.prp-kpis { display: grid; grid-template-columns: repeat(3,1fr); gap: 8px; margin-bottom: 12px; }
.prp-kpi { background: rgba(255,255,255,.04); border: 0.5px solid rgba(255,255,255,.07); border-radius: 8px; padding: 10px 12px; }
.prp-kpi-l { font-size: 9px; color: rgba(255,255,255,.35); text-transform: uppercase; letter-spacing: .5px; margin-bottom: 3px; }
.prp-kpi-v { font-size: 16px; font-weight: 800; color: var(--white); letter-spacing: -.5px; line-height: 1; }
.prp-kpi-d { font-size: 10px; font-weight: 600; margin-top: 3px; }
.prp-kpi-d.up { color: var(--teal); }
.prp-kpi-d.dn { color: var(--pink); }
.prp-kpi-d.wn { color: var(--amber); }
.prp-insight { background: rgba(29,172,146,.08); border: 0.5px solid rgba(29,172,146,.2); border-radius: 8px; padding: 12px 14px; }
.prp-insight-tag { font-size: 9px; text-transform: uppercase; letter-spacing: .8px; color: var(--teal); font-weight: 700; margin-bottom: 4px; }
.prp-insight-title { font-size: 12px; font-weight: 700; color: var(--white); margin-bottom: 4px; }
.prp-insight-body { font-size: 11px; color: rgba(255,255,255,.5); line-height: 1.55; }

/* ââ WHAT PRO DELIVERS ââ */
.delivers-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 20px;
  margin-top: 44px;
}
.del-card {
  background: var(--white);
  border: 0.5px solid var(--border);
  border-radius: 16px;
  padding: 28px 24px;
  transition: border-color .15s, transform .15s;
}
.del-card:hover { border-color: var(--teal); transform: translateY(-2px); }
.del-num {
  font-size: 11px;
  font-weight: 700;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 14px;
}
.del-icon { width: 46px; height: 46px; border-radius: 12px; display: flex; align-items: center; justify-content: center; margin-bottom: 16px; }
.del-title { font-size: 17px; font-weight: 800; color: var(--text); margin-bottom: 10px; letter-spacing: -.3px; }
.del-desc { font-size: 13px; color: var(--muted); line-height: 1.7; font-weight: 300; }

/* ââ SAMPLE REPORT SECTION ââ */
.report-section { padding: 80px 0; background: var(--off); }
.report-inner { max-width: var(--max); margin: 0 auto; padding: 0 var(--pad); }
.report-tabs { display: flex; gap: 6px; margin-bottom: 28px; flex-wrap: wrap; }
.rtab {
  display: flex; align-items: center; gap: 7px;
  background: var(--white); border: 0.5px solid var(--border);
  border-radius: 8px; padding: 9px 16px;
  font-size: 13px; font-weight: 600; color: var(--muted);
  cursor: pointer; transition: all .15s; font-family: "Poppins", sans-serif;
}
.rtab:hover { border-color: var(--text); color: var(--text); }
.rtab.on { background: var(--black); color: var(--white); border-color: var(--black); }
.rtab-dot { width: 7px; height: 7px; border-radius: 50%; }
.report-frame {
  background: var(--white);
  border: 0.5px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0,0,0,.07);
}
.rf-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 22px;
  border-bottom: 0.5px solid var(--border);
  background: var(--white);
}
.rf-title-block { display: flex; align-items: center; gap: 12px; }
.rf-logo { height: 28px; width: auto; }
.rf-label { font-size: 13px; font-weight: 700; color: var(--text); }
.rf-sub { font-size: 11px; color: var(--muted); }
.rf-badge { font-size: 11px; font-weight: 600; padding: 4px 12px; border-radius: 100px; }
.rf-badge.strong { background: rgba(29,172,146,.12); color: var(--teal); }
.rf-badge.watch { background: rgba(252,176,65,.15); color: #C88A00; }
.rf-badge.weak { background: rgba(225,42,86,.1); color: var(--pink); }

/* Snapshot KPIs */
.rf-snapshot { display: grid; grid-template-columns: repeat(6,1fr); gap: 0; border-bottom: 0.5px solid var(--border); }
.rf-snap-kpi { padding: 18px 14px; border-right: 0.5px solid var(--border); }
.rf-snap-kpi:last-child { border-right: none; }
.rf-snap-l { font-size: 10px; color: var(--muted); margin-bottom: 4px; }
.rf-snap-v { font-size: 20px; font-weight: 800; color: var(--text); letter-spacing: -.5px; line-height: 1; margin-bottom: 4px; }
.rf-snap-d { font-size: 10px; font-weight: 600; }
.rf-snap-d.up { color: var(--teal); }
.rf-snap-d.dn { color: var(--pink); }
.rf-snap-d.wn { color: var(--amber); }

/* Heatmap table */
.rf-body { padding: 22px; }
.rf-section-title { font-size: 14px; font-weight: 700; color: var(--text); margin-bottom: 6px; }
.rf-section-sub { font-size: 12px; color: var(--muted); margin-bottom: 16px; }
.heatmap-table { width: 100%; border-collapse: collapse; font-size: 11px; }
.heatmap-table th { background: #1a1d2e; color: rgba(255,255,255,.7); font-weight: 600; padding: 8px 6px; text-align: center; font-size: 10px; }
.heatmap-table th:first-child { text-align: left; padding-left: 12px; min-width: 140px; }
.heatmap-table td { padding: 7px 6px; text-align: center; font-weight: 600; border-bottom: 0.5px solid var(--border); }
.heatmap-table td:first-child { text-align: left; padding-left: 12px; font-weight: 700; color: var(--text); font-size: 12px; }
.heatmap-table tr:last-child td { border-bottom: none; }
/* Heatmap colors */
.hm-vg { background: #1DAC92; color: white; border-radius: 4px; }
.hm-g  { background: #82CFC0; color: #0a4038; border-radius: 4px; }
.hm-lg { background: #C8EDE8; color: #1a5c54; border-radius: 4px; }
.hm-n  { background: var(--off); color: var(--muted); border-radius: 4px; }
.hm-lr { background: #FADADD; color: #8B1C2A; border-radius: 4px; }
.hm-r  { background: #F08090; color: #5c0a15; border-radius: 4px; }
.hm-vr { background: #E12A56; color: white; border-radius: 4px; }
.hm-cell { display: inline-block; padding: 3px 6px; min-width: 52px; text-align: center; }

/* Analysis narrative */
.rf-analysis { display: grid; grid-template-columns: 1fr 280px; gap: 24px; padding: 22px; border-top: 0.5px solid var(--border); }
.rf-narrative { }
.rf-narrative-title { font-size: 15px; font-weight: 800; color: var(--text); margin-bottom: 10px; letter-spacing: -.3px; }
.rf-narrative-lede { font-size: 13px; color: var(--muted); line-height: 1.7; font-weight: 300; margin-bottom: 16px; border-left: 3px solid var(--teal); padding-left: 14px; }
.rf-narrative p { font-size: 13px; color: var(--text); line-height: 1.7; font-weight: 400; margin-bottom: 12px; }
.rf-narrative p strong { color: var(--text); }
.rf-key-metrics { }
.rf-km-title { font-size: 11px; text-transform: uppercase; letter-spacing: 1px; font-weight: 700; color: var(--muted); margin-bottom: 12px; }
.rf-km-row { display: flex; align-items: center; justify-content: space-between; padding: 10px 12px; border-radius: 8px; margin-bottom: 6px; border: 0.5px solid var(--border); }
.rf-km-label { font-size: 12px; font-weight: 600; color: var(--text); }
.rf-km-val { font-size: 13px; font-weight: 800; color: var(--text); }
.rf-km-row.strong-row { background: rgba(29,172,146,.06); border-color: rgba(29,172,146,.2); }
.rf-km-row.watch-row { background: rgba(252,176,65,.06); border-color: rgba(252,176,65,.2); }
.rf-km-row.weak-row { background: rgba(225,42,86,.05); border-color: rgba(225,42,86,.15); }

/* Focus boxes */
.rf-focus-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; padding: 16px 22px; background: #FFFBEE; border-top: 0.5px solid rgba(252,176,65,.25); }
.rf-focus { border-left: 3px solid var(--amber); padding-left: 12px; }
.rf-focus-label { font-size: 10px; font-weight: 700; color: var(--amber); text-transform: uppercase; letter-spacing: .8px; margin-bottom: 5px; }
.rf-focus-title { font-size: 12px; font-weight: 700; color: var(--text); margin-bottom: 4px; }
.rf-focus-body { font-size: 11px; color: var(--muted); line-height: 1.55; }

/* Color scale legend */
.hm-legend { display: flex; align-items: center; gap: 6px; margin-top: 10px; flex-wrap: wrap; }
.hm-legend-item { display: flex; align-items: center; gap: 4px; font-size: 10px; color: var(--muted); }
.hm-legend-swatch { width: 14px; height: 14px; border-radius: 3px; }

/* ââ HOW IT WORKS ââ */
.how-steps { display: flex; flex-direction: column; gap: 0; margin-top: 44px; max-width: 680px; }
.how-step { display: flex; gap: 24px; padding: 28px 0; border-bottom: 0.5px solid var(--border); }
.how-step:last-child { border-bottom: none; }
.how-step-num { font-size: 32px; font-weight: 800; color: var(--teal); letter-spacing: -1px; line-height: 1; min-width: 44px; }
.how-step-title { font-size: 16px; font-weight: 700; color: var(--text); margin-bottom: 8px; }
.how-step-desc { font-size: 14px; color: var(--muted); line-height: 1.7; font-weight: 300; }

/* ââ WHO IT'S FOR ââ */
.for-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; margin-top: 40px; }
.for-card { border-radius: 14px; padding: 28px 24px; border: 0.5px solid var(--border); background: var(--white); }
.for-role { font-size: 15px; font-weight: 800; color: var(--text); margin-bottom: 10px; }
.for-desc { font-size: 13px; color: var(--muted); line-height: 1.7; font-weight: 300; margin-bottom: 16px; }
.for-list { list-style: none; display: flex; flex-direction: column; gap: 7px; }
.for-list li { display: flex; align-items: flex-start; gap: 8px; font-size: 12px; color: var(--text); }

/* ââ RESPONSIVE ââ */
@media(max-width:900px){
  .pro-page-hero-inner { grid-template-columns: 1fr; }
  .rf-snapshot { grid-template-columns: repeat(3,1fr); }
  .rf-snap-kpi:nth-child(3) { border-right: none; }
  .rf-analysis { grid-template-columns: 1fr; }
  .delivers-grid { grid-template-columns: 1fr 1fr; }
  .for-grid { grid-template-columns: 1fr; }
}
@media(max-width:600px){
  .pro-page-h1 { font-size: 34px; }
  .rf-snapshot { grid-template-columns: repeat(2,1fr); }
  .delivers-grid { grid-template-columns: 1fr; }
  .rf-focus-row { grid-template-columns: 1fr; }
}

/* ââ ROTATING WORD ââ */
#rotating-word {
  display: inline-block;
  overflow: hidden;
  vertical-align: bottom;
  transition: transform 0.35s cubic-bezier(0.4,0,0.2,1), opacity 0.35s ease;
}
#rotating-word.slide-out {
  transform: translateY(-100%);
  opacity: 0;
}
#rotating-word.slide-in {
  transform: translateY(100%);
  opacity: 0;
}

/* Fix hero logo visibility on dark background */
.pro-page-hero-inner > div:first-child img { filter: brightness(0) invert(1); }

/* Performance fix for hero rendering */
.pro-page-hero { contain: layout style paint; }
.pro-page-hero-glow { will-change: transform; contain: strict; }
.prp-pulse { will-change: opacity, transform; }
.pro-report-preview { contain: layout paint; }


/* ═══════════════════════════════════════════════════
   MOBILE FIXES — April 2026
   Covers: nav dropdowns, home Pro section,
   About page grids, Contact form, general containers
   ═══════════════════════════════════════════════════ */

/* ── GENERAL CONTAINER MOBILE FIX ── */
@media (max-width: 768px) {
  .container {
    max-width: 100% !important;
    padding: 0 20px !important;
    box-sizing: border-box !important;
  }
  .page-hero {
    padding: 60px 20px 40px !important;
  }
  .page-hero h1,
  .page-hero .page-hero-h1 {
    font-size: 28px !important;
    line-height: 1.2 !important;
  }
  .page-hero p,
  .page-hero .page-hero-sub {
    font-size: 14px !important;
  }

  /* ── ABOUT PAGE: Stats & Features Grid ── */
  .value-grid {
    grid-template-columns: 1fr !important;
    gap: 16px !important;
  }
  .value-card {
    padding: 20px !important;
  }

  /* ── ABOUT PAGE: Team Grid ── */
  .team-grid {
    grid-template-columns: 1fr 1fr !important;
    gap: 16px !important;
  }
  .team-card {
    padding: 16px !important;
  }
  .team-card img {
    max-width: 100% !important;
    height: auto !important;
  }

  /* ── CONTACT PAGE: Form Fix ── */
  .contact-form {
    max-width: 100% !important;
    padding: 0 20px !important;
    box-sizing: border-box !important;
  }
  .form-grid {
    grid-template-columns: 1fr !important;
    gap: 12px !important;
  }
  .form-group,
  .form-group.full {
    width: 100% !important;
    min-width: 0 !important;
  }
  .form-group input,
  .form-group select,
  .form-group textarea {
    width: 100% !important;
    min-width: 0 !important;
    box-sizing: border-box !important;
  }
  #contactForm {
    max-width: 100% !important;
    width: 100% !important;
  }

  /* ── HOME PAGE: Pro Section Fix ── */
  .pro-section {
    padding: 50px 0 40px !important;
  }
  .pro-section > div {
    padding: 0 20px !important;
  }
  /* The flex container inside pro-section: force stack */
  .pro-section > div > div:last-child {
    flex-direction: column !important;
    gap: 30px !important;
  }
  .pro-section > div > div:last-child > div {
    min-width: 0 !important;
    max-width: 100% !important;
    width: 100% !important;
  }
  .pro-section img {
    max-width: 100% !important;
    height: auto !important;
  }

  /* ── GENERAL OVERFLOW PREVENTION ── */
  .elementor-widget-text-editor,
  .elementor-text-editor {
    overflow-x: hidden !important;
  }
  img {
    max-width: 100%;
    height: auto;
  }

  /* ── CTA STRIP MOBILE ── */
  .cta-strip {
    padding: 50px 20px !important;
  }
  .cta-h2 {
    font-size: 22px !important;
  }
  .cta-btns {
    flex-direction: column !important;
    gap: 10px !important;
    align-items: center !important;
  }
  .cta-btns a {
    width: 100% !important;
    text-align: center !important;
    box-sizing: border-box !important;
  }
}

@media (max-width: 480px) {
  /* ── ABOUT: Team Grid single column on very small screens ── */
  .team-grid {
    grid-template-columns: 1fr !important;
  }


  /* ── HOME PRO SECTION: Text sizing ── */
  .pro-section h2 {
    font-size: 24px !important;
    line-height: 1.2 !important;
  }
  .pro-section p {
    font-size: 14px !important;
  }

  /* ── CONTACT: even tighter form ── */
  .contact-form {
    padding: 0 16px !important;
  }
}



/* Hide the Pro-section report graphic on mobile */
@media (max-width: 768px) {
  .pro-section div[style*="min-width: 400px"],
  .pro-section div[style*="min-width:400px"] {
    display: none !important;
  }
  /* Tighten the remaining text column spacing */
  .pro-section div[style*="min-width: 320px"],
  .pro-section div[style*="min-width:320px"] {
    min-width: 0 !important;
    max-width: 100% !important;
    width: 100% !important;
    flex: 1 1 100% !important;
  }
}


/* PAGE HERO (dark theme) */
.page-hero { position: relative; background: var(--black, #000); padding: 80px 0 64px; overflow: hidden; }
.page-hero-glow { position: absolute; top: -200px; left: 50%; transform: translateX(-50%); width: 900px; height: 500px; background: radial-gradient(ellipse at center, rgba(29,172,146,0.18), transparent 60%); pointer-events: none; z-index: 0; }
.page-hero-inner { position: relative; max-width: var(--max); margin: 0 auto; padding: 0 var(--pad); z-index: 1; }
.page-hero-tag { font-size: 12px; text-transform: uppercase; letter-spacing: 1.5px; font-weight: 600; color: var(--teal); margin-bottom: 16px; }
.page-hero-h1 { font-size: 52px; font-weight: 800; color: #fff; line-height: 1.08; letter-spacing: -1.5px; margin-bottom: 20px; max-width: 900px; }
.page-hero-sub { font-size: 18px; color: rgba(255,255,255,0.65); line-height: 1.65; font-weight: 300; max-width: 760px; margin-bottom: 40px; }
.integration-hero-stats { display: flex; gap: 48px; flex-wrap: wrap; margin-top: 32px; padding: 24px 32px; background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.08); border-radius: 12px; }
.ihs { display: flex; flex-direction: column; gap: 4px; }
.ihs-num { font-size: 36px; font-weight: 800; color: #fff; letter-spacing: -1px; line-height: 1; }
.ihs-lbl { font-size: 13px; color: rgba(255,255,255,0.55); font-weight: 500; }
@media (max-width: 768px) {
  .page-hero { padding: 48px 0 40px; }
  .page-hero-h1 { font-size: 32px; letter-spacing: -0.8px; }
  .page-hero-sub { font-size: 15px; }
  .integration-hero-stats { gap: 24px; padding: 16px 20px; }
  .ihs-num { font-size: 28px; }
}
}


/* === GLOBAL THEME FIXES (added to fix all pages) === */
.wp-site-blocks > header.wp-block-template-part { display: none !important; height: 0 !important; overflow: hidden !important; margin: 0 !important; padding: 0 !important; }
.wp-site-blocks > header { display: none !important; }
body .entry-content, body .post-content, body .is-layout-constrained > * { max-width: none !important; }
body .entry-content.wp-block-post-content { padding: 0 !important; }
body p { margin-bottom: 0; }
body .nav a { text-decoration: none !important; }
body .nav-links a { color: inherit !important; }
body ul.nav-links { list-style: none !important; padding: 0 !important; margin: 0 !important; }

/* NAV DROPDOWN SPACING */
.nav-dd-col > p { display: none !important; }
.nav-dropdown-menu p { display: none !important; }
.nav-dropdown-menu.nav-dropdown-wide { min-width: 540px !important; padding: 14px 10px !important; }
.nav-dd-col { padding: 0 10px !important; }
.nav-dd-heading { font-size: 15px !important; text-transform: none !important; letter-spacing: 0 !important; font-weight: 600 !important; color: #222 !important; padding: 4px 10px 8px !important; margin: 0 !important; display: block !important; }
.nav-dropdown-item { padding: 7px 10px !important; gap: 10px !important; margin: 1px 0 !important; border-radius: 8px !important; }
.nav-dropdown-title { font-size: 13.5px !important; font-weight: 600 !important; line-height: 1.3 !important; }
.nav-dropdown-sub { font-size: 11.5px !important; color: #888 !important; line-height: 1.3 !important; }
.nav-dd-divider { width: 0.5px !important; background: rgba(0,0,0,0.08) !important; margin: 0 !important; align-self: stretch !important; }
.nav-dd-dot { width: 8px !important; height: 8px !important; border-radius: 50% !important; flex-shrink: 0 !important; }
.nav-dd-icon, .nav-dd-product-icon { width: 34px !important; height: 34px !important; border-radius: 8px !important; display: flex !important; align-items: center !important; justify-content: center !important; flex-shrink: 0 !important; }

/* === HIDE THEME FOOTER === */
.wp-site-blocks > footer.wp-block-template-part { display: none !important; height: 0 !important; overflow: hidden !important; margin: 0 !important; padding: 0 !important; }
.wp-site-blocks > footer { display: none !important; }

/* === PRO PAGE ICON FIXES === */
/* 6 deliverables cards - inject SVG icons */
.delivers-grid .del-card:nth-child(1) .del-icon {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' fill='none' stroke='%230d9488' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M18 20V10M12 20V4M6 20v-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 24px 24px;
}
.delivers-grid .del-card:nth-child(2) .del-icon {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' fill='none' stroke='%23d97706' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='3' width='7' height='7'/%3E%3Crect x='14' y='3' width='7' height='7'/%3E%3Crect x='3' y='14' width='7' height='7'/%3E%3Crect x='14' y='14' width='7' height='7'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 24px 24px;
}
.delivers-grid .del-card:nth-child(3) .del-icon {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' fill='none' stroke='%23e11d48' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='23 6 13.5 15.5 8.5 10.5 1 18'/%3E%3Cpolyline points='17 6 23 6 23 12'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 24px 24px;
}
.delivers-grid .del-card:nth-child(4) .del-icon {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' fill='none' stroke='%23ea580c' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='22 12 18 12 15 21 9 3 6 12 2 12'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 24px 24px;
}
.delivers-grid .del-card:nth-child(5) .del-icon {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' fill='none' stroke='%230d9488' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M3 3v18h18'/%3E%3Cpath d='M18 9l-5 5-4-4-6 6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 24px 24px;
}
.delivers-grid .del-card:nth-child(6) .del-icon {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' fill='none' stroke='%23d97706' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='10'/%3E%3Ccircle cx='12' cy='12' r='6'/%3E%3Ccircle cx='12' cy='12' r='2'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 24px 24px;
}

/* 4 summary stat squares */
div[style*="--teal-lt"][style*="36px"] {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' fill='none' stroke='%230d9488' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 2v14h12'/%3E%3Cpath d='M4 12l4-4 3 3 5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 18px 18px;
}
div[style*="--amber-lt"][style*="36px"] {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' fill='none' stroke='%23d97706' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='2' y='2' width='5' height='5'/%3E%3Crect x='11' y='2' width='5' height='5'/%3E%3Crect x='2' y='11' width='5' height='5'/%3E%3Crect x='11' y='11' width='5' height='5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 18px 18px;
}
div[style*="--pink-lt"][style*="36px"] {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' fill='none' stroke='%23e11d48' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='16 5 10 12 7 9 2 15'/%3E%3Cpolyline points='12 5 16 5 16 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 18px 18px;
}
div[style*="--orange-lt"][style*="36px"] {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' fill='none' stroke='%23ea580c' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='9' cy='9' r='7'/%3E%3Ccircle cx='9' cy='9' r='4'/%3E%3Ccircle cx='9' cy='9' r='1'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 18px 18px;
}

/* =============================================
   WPForms - Request a Demo Form Styling
   ============================================= */

/* Form container */
.wpforms-container {
  max-width: 100%;
}

/* Left-align labels */
.wpforms-container .wpforms-field-label {
  text-align: left;
  font-family: Poppins, sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 6px;
}

/* Form title */
.wpforms-container .wpforms-title {
  font-family: Poppins, sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: #0f172a;
  text-align: center;
  margin-bottom: 24px;
}

/* Input fields */
.wpforms-container input[type="text"],
.wpforms-container input[type="email"],
.wpforms-container input[type="tel"],
.wpforms-container textarea,
.wpforms-container select {
  font-family: Poppins, sans-serif;
  font-size: 15px;
  padding: 12px 16px;
  border: 1px solid #d1d5db;
  border-radius: 8px;
  background-color: #f9fafb;
  color: #0f172a;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  width: 100%;
}

/* Input focus state */
.wpforms-container input[type="text"]:focus,
.wpforms-container input[type="email"]:focus,
.wpforms-container input[type="tel"]:focus,
.wpforms-container textarea:focus,
.wpforms-container select:focus {
  border-color: #F97316;
  box-shadow: 0 0 0 3px rgba(249, 115, 22, 0.15);
  outline: none;
  background-color: #fff;
}

/* Textarea */
.wpforms-container textarea {
  min-height: 120px;
  resize: vertical;
}

/* Submit button */
.wpforms-container .wpforms-submit-container {
  text-align: center;
  margin-top: 8px;
}

.wpforms-container button[type="submit"].wpforms-submit {
  font-family: Poppins, sans-serif;
  font-size: 16px;
  font-weight: 600;
  background-color: #F97316;
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 14px 40px;
  cursor: pointer;
  transition: background-color 0.2s ease, transform 0.1s ease;
  letter-spacing: 0.3px;
  width: 100%;
  max-width: 280px;
}

.wpforms-container button[type="submit"].wpforms-submit:hover {
  background-color: #ea6c10;
  transform: translateY(-1px);
}

.wpforms-container button[type="submit"].wpforms-submit:active {
  transform: translateY(0);
}

/* Required asterisk color */
.wpforms-container .wpforms-required-label {
  color: #F97316;
}

/* Field spacing */
.wpforms-container .wpforms-field {
  margin-bottom: 20px;
}

/* Select dropdown styling */
.wpforms-container select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23666' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}

/* Confirmation message styling */
.wpforms-container .wpforms-confirmation-container-full {
  font-family: Poppins, sans-serif;
  background-color: #f0fdf4;
  border: 1px solid #1DAC92;
  border-radius: 8px;
  padding: 24px;
  color: #0f172a;
  text-align: center;
  font-size: 16px;
}


/* Override centered text for form labels (higher specificity) */
div.wpforms-container-full .wpforms-form .wpforms-field-label {
  text-align: left !important;
}

/* Left-align the required asterisk indicator */
div.wpforms-container-full .wpforms-form .wpforms-field .wpforms-field-label .wpforms-required-label {
  color: #F97316;
}

/* Left-align sub-labels too */
div.wpforms-container-full .wpforms-form .wpforms-field-sublabel {
  text-align: left;
}

/* Override centered text on field descriptions */  
div.wpforms-container-full .wpforms-form .wpforms-field-description {
  text-align: left;
}


/* Submit button override with !important */
div.wpforms-container-full .wpforms-form button[type="submit"].wpforms-submit,
div.wpforms-container-full .wpforms-form .wpforms-submit-container button.wpforms-submit {
  background-color: #F97316 !important;
  color: #fff !important;
  border: none !important;
  border-radius: 8px !important;
  padding: 14px 40px !important;
  font-family: Poppins, sans-serif !important;
  font-size: 16px !important;
  font-weight: 600 !important;
  letter-spacing: 0.3px;
  cursor: pointer;
  transition: background-color 0.2s ease, transform 0.1s ease;
  width: 100%;
  max-width: 280px;
}

div.wpforms-container-full .wpforms-form button[type="submit"].wpforms-submit:hover,
div.wpforms-container-full .wpforms-form .wpforms-submit-container button.wpforms-submit:hover {
  background-color: #ea6c10 !important;
  transform: translateY(-1px);
}


/* Override WPForms CSS variables for button color */
div.wpforms-container-full {
  --wpforms-button-background-color: #F97316 !important;
  --wpforms-button-background-color-alt: #F97316 !important;
}

div.wpforms-container-full button[type="submit"]:hover {
  --wpforms-button-background-color: #ea6c10 !important;
  --wpforms-button-background-color-alt: #ea6c10 !important;
}


/* Nuclear override using button ID for max specificity */
#wpforms-submit-1012,
#wpforms-submit-1012:not(:hover):not(:active),
button#wpforms-submit-1012 {
  background-color: #F97316 !important;
  color: #fff !important;
}

#wpforms-submit-1012:hover {
  background-color: #ea6c10 !important;
}
