/* ===== Design tokens ===== */
:root{
  /* Light theme palette */
  --bg:#FAF9F7;              /* off-white background */
  --panel:#FFFFFF;           /* cards and panels */
  --ink:#1A1D21;             /* primary text (charcoal) */
  --muted:#606975;           /* secondary text */
  --accent:#ff7179;          /* brand pink */
  --accent-2:#ff4b5a;        /* deeper pink for gradient depth */
  --teal:#2FA6A0;            /* brand teal for focus + lines */
  --stroke:#E6E8EE;          /* light borders */
  --focus:#76D1CF;           /* focus ring (meets contrast) */
  --outcome-bg:#F4F6FA;      /* soft section background */
  --shadow:0 8px 24px rgba(0,0,0,.06), 0 2px 8px rgba(0,0,0,.04);
  --header-h:72px;           /* updated at runtime by JS */
}

.mobile-sep {
  height: 1px;
  opacity: .15;
  margin: 10px 0;
  background: currentColor;
}


/* ===== Base ===== */
*{box-sizing:border-box}
html{scroll-behavior:smooth;overflow-x:hidden;scroll-padding-top:var(--header-h)}
body{
  margin:0;
  font-family:Inter,ui-sans-serif,system-ui,-apple-system,"Segoe UI",Roboto,Helvetica,Arial;
  background:var(--bg);
  color:var(--ink);
  -webkit-font-smoothing:antialiased;
  line-height:1.5;
  overflow-x:hidden;
}
a{color:inherit;text-decoration:none}
:focus-visible{outline:3px solid var(--focus);outline-offset:2px}

/* Explicit, author-defined h1 sizing so we don't rely on UA defaults */
:where(h1) {
  font-size: clamp(2rem, 4vw, 3rem);   /* tune to your scale */
  line-height: 1.15;
  margin-block: 0.67em;
  font-weight: 700;                     /* if your scale expects it */
}

/* Ensure nested h1s aren't accidentally tiny/huge due to UA changes */
:where(article, aside, nav, section) :where(h1) {
  font-size: clamp(2rem, 4vw, 3rem);    /* same as top-level, or set a different size if you want */
  margin-block: 0.67em;
}

/* Skip link */
.skip-link{position:absolute;left:-9999px;top:auto;width:1px;height:1px;overflow:hidden}
.skip-link:focus{left:10px;top:10px;width:auto;height:auto;padding:8px 12px;background:var(--ink);color:#fff;border-radius:8px;z-index:1200}

/* ===== Header (single source of truth) ===== */
.site-header{
  position:fixed;top:0;left:0;right:0;z-index:1000;
  background:rgba(255,255,255,.92);
  backdrop-filter:saturate(160%) blur(6px);
  -webkit-backdrop-filter:saturate(160%) blur(6px);
  border-bottom:1px solid var(--stroke);
  transition:box-shadow .2s ease, background-color .2s ease;
}
.site-header.is-stuck{box-shadow:0 4px 16px rgba(0,0,0,.08)}

.nav{max-width:880px;margin:0 auto;padding:12px 16px;display:flex;align-items:center;justify-content:space-between}
.brand{display:flex;align-items:center;gap:10px;font-weight:800;letter-spacing:.2px;font-size:16px;color:var(--ink)}
.brand .dot{width:10px;height:10px;border-radius:50%;background:linear-gradient(180deg,var(--accent),var(--accent-2));display:inline-block}
.menu{display:flex;gap:14px;font-weight:600;font-size:14px;color:var(--ink)}
.menu a{opacity:.9;padding:8px 10px;border-radius:8px}
.menu a:hover{opacity:1;background:rgba(0,0,0,.04)}

/* Active and focus styles for header links */
.nav a.active,
.mobile-links a.active{
  text-decoration:underline;
  text-underline-offset:6px;
  text-decoration-thickness:2px;
}
.nav a:focus-visible{outline:2px solid var(--focus);outline-offset:2px}

/* Reserve space while header partial loads (prevents CLS) */
#site-header{display:block;min-height:var(--header-h)}

/* ===== Buttons ===== */
.btn{
  display:inline-block;padding:12px 16px;border-radius:12px;font-weight:800;
  border:1px solid var(--stroke);color:var(--ink);
  background:#fff;box-shadow:var(--shadow);
  transition:transform .2s ease,background .2s ease,border-color .2s ease,box-shadow .2s ease;
}
.btn.primary{
  color:#fff;
  background:linear-gradient(180deg,var(--accent),var(--accent-2));
  border-color:transparent;
  box-shadow:0 10px 22px rgba(255,113,121,.25);
}
.btn.primary:hover{background:linear-gradient(180deg,#ff6b79,#ff2f44)}
.btn:hover{transform:translateY(-1px)}

/* ===== Mobile menu ===== */
.menu-toggle{display:none;align-items:center;gap:8px;font-weight:800;color:var(--ink);background:#fff;border:1px solid var(--stroke);padding:8px 12px;border-radius:10px;box-shadow:var(--shadow)}
.menu-toggle .burger{width:18px;height:2px;background:currentColor;position:relative;display:inline-block}
.menu-toggle .burger:before,.menu-toggle .burger:after{content:"";position:absolute;left:0;right:0;height:2px;background:currentColor}
.menu-toggle .burger:before{top:-6px}.menu-toggle .burger:after{top:6px}
@media(max-width:900px){.desktop-menu{display:none}.menu-toggle{display:inline-flex}}

.mobile-backdrop{position:fixed;inset:0;width:100vw;height:100vh;background:rgba(0,0,0,.35);backdrop-filter:blur(2px);z-index:900;display:none}
.mobile-drawer{
  position:fixed;right:0;height:calc(100vh - var(--header-h));top:var(--header-h);
  width:min(92vw,380px);background:#fff;border-left:1px solid var(--stroke);
  box-shadow:-24px 0 48px rgba(0,0,0,.10);
  transform:translate3d(110%,0,0);transition:transform .25s ease-out;
  display:grid;grid-template-rows:1fr auto;padding:20px;gap:12px;z-index:1100;will-change:transform;contain:layout;
}
.mobile-drawer.open{transform:translate3d(0,0,0)}
@media(max-width:380px){.mobile-drawer{width:100vw}}
.mobile-links{display:grid;gap:8px}
.mobile-links a{padding:10px 12px;border-radius:10px;background:#FAFCFE;border:1px solid var(--stroke);font-size:14px;color:var(--ink)}
.mobile-links a.btn{padding:10px 12px}
.mobile-links a:focus-visible{outline:3px solid var(--focus);outline-offset:2px;border-color:var(--focus)}
.drawer-close{border:1px solid var(--stroke);background:#fff;color:var(--ink);padding:10px 12px;border-radius:10px}

/* ===== Layout ===== */
.wrap{max-width:880px;margin:0 auto;padding:40px 16px 72px}
main.wrap{padding-top:var(--header-h)} /* make room for fixed header */
section{margin:56px 0}

/* ===== Type ===== */
h1{font-size:clamp(28px,5vw,44px);line-height:1.15;margin:8px 0 10px;color:var(--ink)}
h2{font-size:clamp(22px,3.5vw,32px);margin:0 0 10px;color:var(--ink)}
p.lede,p.section-lede{color:var(--muted);font-size:18px;max-width:65ch}
.kicker{color:var(--teal);letter-spacing:.08em;text-transform:uppercase;font-weight:700;font-size:12px}
.strapline{font-size:20px;font-weight:600;margin:6px 0 18px;color:var(--ink)}

/* ===== Surfaces ===== */
.panel,.card,.tier,.contact,details,.tcard,.stat,.story{
  background:var(--panel);border:1px solid var(--stroke);border-radius:16px;padding:18px;box-shadow:var(--shadow);
}

/* Hero CTAs */
.hero-cta{display:flex;gap:10px;flex-wrap:wrap;margin-top:16px}

/* ===== Story ===== */
.story{display:grid;gap:10px}
.story-list{list-style:none;padding:0;margin:0;display:grid;gap:8px;color:var(--muted)}
/* Logos row */
.experience-logos{display:flex;flex-wrap:wrap;gap:2rem;align-items:center;margin:2rem 0;justify-content:center}
.experience-logos img{max-height:40px;width:auto;opacity:.85;filter:grayscale(100%);transition:filter .2s,opacity .2s}
.experience-logos img:hover{opacity:1;filter:none}
.story .section-lede{margin-bottom:0}
.story .experience-logos{margin-top:.5rem}

/* Inline about */
.about-inline{display:flex;align-items:center;gap:2rem;margin:1.5rem 0}
.about-inline-img{
  width:200px;height:200px;border-radius:50%;object-fit:cover;flex-shrink:0;
  box-shadow:0 6px 20px rgba(0,0,0,.08);border:2px solid rgba(0,0,0,.05);
}
.about-inline .section-lede{margin:0;max-width:50ch;line-height:1.55}
@media (max-width: 720px){
  .about-inline{flex-direction:column;align-items:center;text-align:center}
  .about-inline-img{width:100%;height:auto;border-radius:0;max-width:500px}
  .about-inline .section-lede{max-width:60ch;text-align:left}
}

/* ===== Steps ===== */
.steps{display:grid;gap:12px}
.step{display:grid;grid-template-columns:34px 1fr;gap:10px;align-items:start}
.num{width:34px;height:34px;border-radius:9px;background:linear-gradient(180deg,var(--accent),var(--accent-2));display:grid;place-items:center;font-weight:900;color:#fff}

/* ===== Pricing ===== */
.price-section{
  display:grid;
  gap:28px;
}

.price-cards{
  display:flex;
  flex-direction:column;
  gap:14px;
}

@media(min-width:720px){
  .price-cards{flex-direction:row}
  .card{flex:1}
}

.card{
  position:relative;
  display:flex;
  flex-direction:column;
  overflow:hidden;
}

.title{
  font-size:18px;
  font-weight:700;
}

.price{
  font-size:28px;
  font-weight:800;
  margin-bottom:4px;
}

.small{
  color:var(--muted);
  font-size:14px;
}

ul.feats{
  list-style:none;
  margin:8px 0 16px;
  padding:0;
  display:grid;
  gap:8px;
  min-height:96px;
}

.feats li{
  display:grid;
  grid-template-columns:20px 1fr;
  align-items:start;
  gap:8px;
}

.tick{
  width:18px;
  height:18px;
  border-radius:5px;
  background:linear-gradient(180deg,var(--accent),var(--accent-2));
  display:inline-grid;
  place-items:center;
  font-size:12px;
  font-weight:900;
  color:#fff;
}

.card .btn{
  margin-top:auto;
}

.card:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.14);
}

/* Ribbon – stays fully visible inside the card */
.ribbon{
  position:absolute;
	top: 70px;
    right: -30px;
  width:140px;
  text-align:center;
  transform:rotate(45deg);
  transform-origin:top right;
  background:linear-gradient(180deg,var(--accent),var(--accent-2));
  color:#fff;
  font-weight:900;
  font-size:12px;
  padding:8px 0;
  letter-spacing:.2px;
  box-shadow:0 8px 20px rgba(255,113,121,.35);
  border:1px solid rgba(255,255,255,.18);
  pointer-events:none;
  z-index:2;
}

/* Credibility section */

.credibility {
  margin-top: 40px;
}

.credibility-line {
  font-size: 1rem;
  color: var(--text-muted);
  margin-bottom: 24px;
  max-width: 760px;
}

/* Logos */

.credibility-logos {
  display: flex;
  align-items: center;
  gap: 8px;
}

.credibility-logos img {
  height: 96px; /* desktop */
  width: auto;
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
  filter: grayscale(100%);
  opacity: 0.95;
}

/* Mobile */

@media (max-width: 768px) {
  .credibility-logos img {
    height: 64px;
  }
}




/* ===== Outcomes strip ===== */
#outcomes{background:var(--outcome-bg);border-radius:18px;padding:32px 20px;border:1px solid var(--stroke)}
#outcomes h2{margin-top:0}
.ocards{display:grid;gap:12px}
@media(min-width:680px){.ocards{grid-template-columns:repeat(2,1fr)}}
@media(min-width:1040px){.ocards{grid-template-columns:repeat(3,1fr)}}
.ocard{
  background:var(--panel);border:1px solid var(--stroke);border-radius:14px;padding:16px;
  display:grid;grid-template-columns:34px 1fr;gap:10px;align-items:start;box-shadow:var(--shadow);
}
.oicon{width:34px;height:34px;border-radius:9px;background:linear-gradient(180deg,var(--accent),var(--accent-2));display:grid;place-items:center;color:#fff}
.oicon svg{width:18px;height:18px;stroke:currentColor;fill:none;stroke-width:2}
.otitle{font-weight:700;font-size:16px;color:var(--ink)}
.oline{color:var(--muted);font-size:14px}

/* ===== Proof/KPIs ===== */
.proof{display:grid;gap:12px}
@media(min-width:720px){.proof{grid-template-columns:repeat(2,1fr)}}
@media(min-width:1040px){.proof{grid-template-columns:repeat(3,1fr)}}
.kpicard{
  position:relative;overflow:hidden;
  background:linear-gradient(180deg,rgba(255,113,121,.08),rgba(255,113,121,.03));
  border:1px solid var(--stroke);border-radius:16px;padding:16px;box-shadow:var(--shadow);
}
.kpicard:after{
  content:"";position:absolute;right:-40px;top:-40px;width:140px;height:140px;
  background:radial-gradient(closest-side,rgba(47,166,160,.18),transparent 70%);
  transform:rotate(25deg);pointer-events:none;
}
.kpi{font-size:34px;font-weight:900;letter-spacing:-.5px;line-height:1.1;color:var(--ink)}
.kpi .unit{font-size:.6em;opacity:.85;font-weight:800;margin-left:2px}
.kpi small{display:block;font-size:14px;color:var(--muted);font-weight:600;margin-top:6px}

/* ===== Testimonials ===== */
.testis{display:grid;gap:12px}
@media(min-width:820px){.testis{grid-template-columns:repeat(2,1fr)}}
.tcard{position:relative}
.tcard:before{content:"";position:absolute;left:0;top:0;bottom:0;width:4px;background:linear-gradient(180deg,var(--accent),var(--accent-2));border-top-left-radius:16px;border-bottom-left-radius:16px}
.tquote{font-size:16px;color:var(--ink);margin:0 0 8px}
.twho{color:var(--muted);font-size:13px}

/* ===== Contact + forms ===== */
.contact{display:grid;gap:12px}
form{display:grid;gap:12px;max-width:560px}
label span{display:block;margin-bottom:6px}
input,textarea,select{
  background:#fff;color:var(--ink);border:1px solid var(--stroke);
  border-radius:10px;padding:12px;font:inherit;width:100%;
  box-shadow:inset 0 1px 0 rgba(0,0,0,.02);
}
textarea{min-height:120px}
.hint{color:var(--muted);font-size:12px;margin-top:4px}
.legal{color:var(--muted);font-size:12px}
.contact .actions{display:flex;gap:10px;align-items:center}
.contact button.btn{width:max-content}
.consent{display:grid;grid-template-columns:20px 1fr;align-items:start;gap:8px}
.consent input[type=checkbox]{margin-top:4px}

/* ===== Footer ===== */
footer{text-align:center;padding:22px;color:var(--muted);border-top:1px solid var(--stroke);background:#FFF}

/* ===== Responsive tweaks ===== */
@media(max-width:480px){
  .wrap{padding:28px 14px 72px}
  h1{font-size:clamp(24px,7vw,36px)}
  h2{font-size:clamp(18px,5.5vw,26px)}
  .panel,.card,.tier,.contact,details,.tcard,.story{padding:14px}
  .menu a{padding:8px}
}

/* ===== Reveal animation ===== */
.reveal{opacity:0;transform:translateY(12px);transition:opacity .5s ease, transform .5s ease}
.reveal.on{opacity:1;transform:none}
@media (prefers-reduced-motion: reduce){
  .reveal{opacity:1 !important;transform:none !important;transition:none !important}
}

/* ===== Link underlines in content ===== */
p a, li a, small a{
  text-decoration:underline;
  text-decoration-thickness:1.5px;
  text-underline-offset:3px;
}
.ocard a{color:inherit;text-decoration:underline;text-decoration-thickness:1.5px;text-underline-offset:3px}
.ocard a:hover,.ocard a:focus{text-decoration-thickness:2px;text-underline-offset:2px}
a.btn, a.primary, a.btn.primary{text-decoration:none !important}

/* Add space between boxes in 'For growth and scale clients' section */
.price-cards,
.tiers,
.growth-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem; /* 24px space between boxes */
}

/* Ensure cards don’t stick together on mobile */
.tier,
.card {
  margin-bottom: 1.5rem;
}

/* --- Extra spacing between FAQ accordions --- */
details + details {
  margin-top: 1rem; /* space between each accordion */
}

/* --- Make FAQ summary clickable and user-friendly --- */
details summary {
  cursor: pointer;
  padding: 0.25rem 0; /* small vertical breathing space */
  font-weight: 600; /* optional: gives the question a bit more presence */
  list-style: none; /* remove default triangle on some browsers */
}

/* Remove the default marker cleanly across browsers */
details summary::-webkit-details-marker {
  display: none;
}

/* Optional: subtle hover to show interactivity */
details summary:hover {
  color: var(--accent);
}

/* Optional: when open, tone down slightly or underline for feedback */
details[open] summary {
  color: var(--ink);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* =========================================================
   Option B CSS for Related services blocks
   Add once to your main stylesheet
   ========================================================= */
.scards{
  display:grid;
  gap: 14px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

@media (max-width: 980px){
  .scards{ grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 640px){
  .scards{ grid-template-columns: 1fr; }
}

.scard{
  display:block;
  border: 1px solid rgba(0,0,0,.08);
  border-radius: 14px;
  padding: 16px 16px;
  text-decoration: none;
  color: inherit;
  background: #fff;
}

.scard:hover{
  transform: translateY(-1px);
}

.stitle{
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.sline{
  margin-top: 8px;
  opacity: .8;
  line-height: 1.45;
}
/* Participation Studio CTA */
.btn.ps-primary{
  color: #06101A;
  background: linear-gradient(90deg, #7C4DFF, #2FE6C8);
  border: none;
  box-shadow: 0 12px 28px rgba(47,230,200,.35);
}

.btn.ps-primary:hover{
  transform: translateY(-1px);
  box-shadow: 0 16px 36px rgba(47,230,200,.45);
}

.tlogo {
  display: block;
  max-width: 80px;
  max-height: 40px;
  margin: 0 0 12px 0;
  object-fit: contain;
  opacity: 0.85;
}
