/* Check-up quantistico completo page styles */

:root{
  --g: #15908D;
  --g-b: rgba(255,255,255,.16);
  --g-s: 0 18px 40px rgba(2,8,23,.18);
  --acc-1: #8B5CF6;
  --acc-2: #F472B6;
  --ink: #0f172a;
  --muted: rgba(15,23,42,.72);
  --muted2: rgba(15,23,42,.58);
  --radius: 18px;
  --max: 1320px;
  --padX: 18px;
  --padY: 10px;
  --gap: 18px;
  --r: 22px;
}

html, body{ margin:0; padding:0; background:#fff; }

.ckPage, .ckPage *{
  font-family: ui-sans-serif, system-ui, -apple-system, "SF Pro Display", "SF Pro Text",
               "Inter", "Segoe UI", Roboto, Helvetica, Arial, "Apple Color Emoji","Segoe UI Emoji";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  box-sizing:border-box;
}

/* Header (from homepage style) */
.aofHdrWrap{
  position: fixed;
  top: 14px;
  left: 0;
  right: 0;
  z-index: 9999;
  pointer-events: none;
}
.aofHdr{
  pointer-events: auto;
  width: min(var(--max), calc(100% - 28px));
  margin: 0 auto;
  background: var(--g);
  border: 1px solid var(--g-b);
  border-radius: var(--radius);
  box-shadow: var(--g-s);
  overflow: clip;
  position: relative;
}
.aofHdr::before{
  content:"";
  position:absolute;
  inset:0;
  pointer-events:none;
  background:
    radial-gradient(900px 140px at 18% 0%, rgba(255,255,255,.14), transparent 60%),
    radial-gradient(900px 160px at 82% 0%, rgba(0,0,0,.10), transparent 62%),
    linear-gradient(180deg, rgba(255,255,255,.07), transparent 55%);
  opacity:.95;
}
.aofHdrInner{
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--gap);
  padding: var(--padY) var(--padX);
}
.aofLogo{
  display:flex;
  align-items:center;
  gap: 10px;
  text-decoration:none;
  color: rgba(255,255,255,.97);
  min-width: 180px;
}
.aofLogoMark{
  width: 46px;
  height: 46px;
  border-radius: 14px;
  padding: 2px;
  background: linear-gradient(135deg, #15908D, #0F766E);
  box-shadow: 0 14px 30px rgba(21,144,141,.16);
  flex: 0 0 auto;
}
.aofLogoMark > .aofLogoMark__in{
  width: 100%;
  height: 100%;
  border-radius: 12px;
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.18);
  display:flex;
  align-items:center;
  justify-content:center;
  overflow:hidden;
}
.aofLogoMark img{
  width: 32px;
  height: 32px;
  object-fit: contain;
  display:block;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,.20));
}
.aofLogoText{ display:flex; flex-direction:column; line-height:1.05; }
.aofLogoText strong{
  font-size: 14px;
  letter-spacing:.12em;
  text-transform: uppercase;
  font-weight: 850;
}
.aofLogoText span{
  font-size: 12.5px;
  color: rgba(255,255,255,.68);
  letter-spacing:.01em;
  font-weight: 650;
}
.aofNav{
  display:flex;
  align-items:center;
  gap: 6px;
  padding: 6px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.16);
  background: rgba(255,255,255,.08);
}
.aofNav a{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding: 10.5px 13px;
  border-radius: 12px;
  font-size: 14px;
  text-decoration:none;
  color: rgba(255,255,255,.84);
  transition: transform .18s ease, background .18s ease, color .18s ease;
  white-space: nowrap;
  font-weight: 750;
  letter-spacing: .01em;
}
.aofNav a:hover{ background: rgba(255,255,255,.14); color: rgba(255,255,255,.97); transform: translateY(-1px); }
.aofNav a[aria-current="page"]{ background: rgba(255,255,255,.16); color: rgba(255,255,255,.97); }
.aofRight{ display:flex; align-items:center; gap: 10px; min-width: 180px; justify-content:flex-end; }
.aofBtn{
  display:inline-flex;
  align-items:center;
  gap: 10px;
  padding: 11px 14px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.26);
  color: rgba(255,255,255,.98);
  background: linear-gradient(135deg, var(--acc-1), var(--acc-2));
  text-decoration: none;
  transition: transform .18s ease, box-shadow .18s ease, filter .18s ease;
  font-weight: 900;
  letter-spacing: .01em;
  box-shadow: 0 16px 30px rgba(139,92,246,.14);
  user-select: none;
}
.aofBtn:hover{ transform: translateY(-1px); box-shadow: 0 22px 44px rgba(139,92,246,.16); filter: saturate(1.03); }
.aofBtn svg{ width: 18px; height: 18px; fill: rgba(255,255,255,.96); }
.aofBurger{
  width: 46px;
  height: 46px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.10);
  display:none;
  align-items:center;
  justify-content:center;
  cursor:pointer;
  transition: transform .18s ease, background .18s ease;
}
.aofBurger:hover{ transform: translateY(-1px); background: rgba(255,255,255,.16); }
.aofBurger span{ width: 18px; height: 2px; background: rgba(255,255,255,.92); position: relative; border-radius: 2px; display:block; }
.aofBurger span::before,
.aofBurger span::after{
  content:"";
  position:absolute;
  left:0;
  width: 18px;
  height: 2px;
  background: rgba(255,255,255,.92);
  border-radius: 2px;
  transition: transform .18s ease, top .18s ease, opacity .18s ease;
}
.aofBurger span::before{ top: -6px; }
.aofBurger span::after{ top: 6px; }
.aofDrawer{ display:none; padding: 0 12px 12px; position: relative; }
.aofDrawerInner{
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,.16);
  background: rgba(255,255,255,.08);
  overflow: hidden;
}
.aofDrawerInner a{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding: 14px 14px;
  text-decoration:none;
  color: rgba(255,255,255,.97);
  font-size: 14.5px;
  border-top: 1px solid rgba(255,255,255,.12);
  font-weight: 800;
  letter-spacing: .01em;
}
.aofDrawerInner a:first-child{ border-top: 0; }
.aofDrawerInner a small{ color: rgba(255,255,255,.72); font-size: 12.5px; font-weight: 700; }
.aofHdr.is-open .aofDrawer{ display:block; }
.aofHdr.is-open .aofBurger span{ background: transparent; }
.aofHdr.is-open .aofBurger span::before{ top:0; transform: rotate(45deg); }
.aofHdr.is-open .aofBurger span::after{ top:0; transform: rotate(-45deg); }
@media (max-width: 980px){
  .aofNav{ display:none; }
  .aofBurger{ display:flex; }
  .aofBtn{ display:none; }
}
.aofHdrSpacer{ height: 96px; }

.hl{
  background: linear-gradient(135deg, var(--acc-1), var(--acc-2));
  -webkit-background-clip:text;
  background-clip:text;
  color: transparent;
}
.ckWrap{ width: min(var(--max), calc(100% - 28px)); margin:0 auto; }

/* Improve anchor jumps (fixed header) */
section[id]{ scroll-margin-top: 118px; }

/* HERO */
.ckHero{ background:#fff; padding: 44px 0 68px; }
.ckHero__grid{
  display:grid;
  grid-template-columns: 1.15fr .85fr;
  gap: clamp(18px, 3vw, 44px);
  align-items:center;
}
.ckKicker{
  display:inline-flex;
  align-items:center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 999px;
  border: 1px solid rgba(15,23,42,.10);
  background: rgba(15,23,42,.03);
  color: rgba(15,23,42,.78);
  font-weight: 800;
  font-size: 13px;
  letter-spacing: .02em;
  margin-bottom: 14px;
}
.ckKicker__dot{
  width: 10px; height: 10px; border-radius: 999px;
  background:
    radial-gradient(circle at 30% 30%, rgba(255,255,255,.9), rgba(255,255,255,0) 60%),
    linear-gradient(135deg, var(--acc-1), var(--acc-2));
  box-shadow: 0 10px 22px rgba(139,92,246,.14);
}
.ckHero__title{
  margin:0 0 12px 0;
  color: var(--ink);
  font-size: clamp(40px, 4.6vw, 56px);
  line-height: 1.04;
  letter-spacing:-0.02em;
  font-weight: 950;
  max-width: 22ch;
}
.ckHero__sub{
  margin:0 0 18px 0;
  color: var(--muted);
  font-size: 16.5px;
  line-height: 1.7;
  max-width: 76ch;
  font-weight: 650;
}
.ckHero__row{ display:flex; align-items:center; gap: 12px; flex-wrap:wrap; margin-top: 10px; }
.ckBtn{
  display:inline-flex;
  align-items:center;
  gap: 10px;
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.26);
  color: rgba(255,255,255,.98);
  background: linear-gradient(135deg, var(--acc-1), var(--acc-2));
  text-decoration:none;
  font-weight: 950;
  letter-spacing:.01em;
  box-shadow: 0 16px 30px rgba(139,92,246,.16);
  transition: transform .18s ease, box-shadow .18s ease, filter .18s ease;
  user-select:none;
}
.ckBtn:hover{ transform: translateY(-2px); box-shadow: 0 22px 44px rgba(139,92,246,.18); filter: saturate(1.03); }
.ckBtn svg{ width: 18px; height: 18px; fill: rgba(255,255,255,.96); }
.ckHint{
  color: rgba(15,23,42,.58);
  font-weight: 650;
  font-size: 13.5px;
  line-height:1.5;
  max-width: 56ch;
}

.ckHeroFacts{
  display:flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 14px;
}
.ckHeroFact{
  border-radius: 16px;
  border: 1px solid rgba(15,23,42,.10);
  background: rgba(15,23,42,.02);
  padding: 10px 12px;
  min-width: 180px;
}
.ckHeroFact b{
  display:block;
  color: var(--ink);
  font-weight: 950;
  letter-spacing:-.01em;
  font-size: 14.6px;
  line-height: 1.15;
}
.ckHeroFact small{
  display:block;
  margin-top: 3px;
  color: rgba(15,23,42,.62);
  font-weight: 750;
  font-size: 12.8px;
  line-height: 1.2;
}
.ckHeroCard{
  border-radius: var(--r);
  border:1px solid rgba(15,23,42,.10);
  background:#fff;
  overflow:hidden;
  box-shadow: 0 22px 60px rgba(2,8,23,.10);
  position: relative;
}
.ckHeroCard::before{
  content:"";
  position:absolute; inset:0;
  pointer-events:none;
  background:
    radial-gradient(900px 240px at 35% 0%, rgba(139,92,246,.10), transparent 60%),
    radial-gradient(900px 240px at 75% 0%, rgba(244,114,182,.10), transparent 62%);
  opacity:.9;
}
.ckHeroCard img{
  position: relative;
  width:100%;
  height: 520px;
  object-fit: cover;
  object-position: 50% 30%;
  display:block;
  filter: saturate(1.02) contrast(1.02);
  transform: scale(1.02);
}
.ckHeroCard__cap{
  position:absolute;
  left: 14px;
  right: 14px;
  bottom: 14px;
  padding: 12px 12px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,.22);
  background: rgba(15,23,42,.58);
  color: rgba(255,255,255,.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 18px 40px rgba(2,8,23,.22);
  font-weight: 800;
  font-size: 13.5px;
  line-height: 1.35;
}

/* Center card (for “In breve”, “A chi”, “Studio/distanza”) */
.ckCenterCard{
  max-width: 980px;
  margin: 0 auto;
  border-radius: var(--r);
  border: 1px solid rgba(15,23,42,.10);
  background: #fff;
  box-shadow: 0 22px 56px rgba(2,8,23,.08);
  position: relative;
  overflow:hidden;
}
.ckCenterCard::before{
  content:"";
  position:absolute;
  inset:-40% -30%;
  background:
    radial-gradient(circle at 20% 20%, rgba(139,92,246,.10), transparent 55%),
    radial-gradient(circle at 80% 30%, rgba(244,114,182,.10), transparent 55%),
    radial-gradient(circle at 45% 90%, rgba(21,144,141,.08), transparent 55%);
  transform: rotate(10deg);
  opacity: .9;
  pointer-events:none;
}
.ckCenterCard__in{ position: relative; padding: 18px 18px 20px; }
.ckCenterCard__h{
  margin: 0 0 8px 0;
  color: var(--ink);
  font-weight: 950;
  letter-spacing:-.02em;
  line-height: 1.25;
  font-size: 20px;
}
.ckCenterCard__p{
  margin: 0 0 12px 0;
  color: rgba(15,23,42,.72);
  font-weight: 650;
  line-height: 1.7;
  font-size: 14.9px;
}
.ckCenterCard__row{
  display:flex;
  gap: 12px;
  align-items:center;
  flex-wrap: wrap;
  margin-top: 12px;
}
.ckCenterCard__tel{
  color: rgba(15,23,42,.78);
  text-decoration: none;
  font-weight: 850;
  font-size: 14px;
}
.ckCenterCard__tel:hover{ text-decoration: underline; text-underline-offset: 3px; }
.ckLine{
  height: 1px;
  background: rgba(15,23,42,.10);
  margin: 14px 0 14px;
}

/* Sections */
.ckSec{ padding: 78px 0; background:#fff; }
.ckSec--soft{
  background: linear-gradient(180deg, rgba(15,23,42,.02), rgba(15,23,42,.00));
}
.ckHead{ text-align:center; margin-bottom: 26px; }
.ckTitle{
  margin:0 auto 10px;
  text-align:center;
  color: var(--ink);
  font-size: clamp(34px, 3.8vw, 46px);
  line-height:1.12;
  letter-spacing:-0.02em;
  font-weight:950;
  max-width: 36ch;
}
.ckSub{
  margin:0 auto;
  text-align:center;
  color: var(--muted);
  font-size:16.5px;
  line-height:1.65;
  max-width: 86ch;
  font-weight: 650;
}
.ckGrid3{
  display:grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 22px;
}
.ckGrid3--wide{
  max-width: 980px;
  margin-left: auto;
  margin-right: auto;
}
.ckCard{
  border-radius: var(--r);
  border: 1px solid rgba(15,23,42,.10);
  background: rgba(15,23,42,.02);
  padding: 18px 18px;
  position: relative;
  overflow: hidden;
}
.ckCard::before{
  content:"";
  position:absolute;
  inset:-40% -30%;
  background:
    radial-gradient(circle at 20% 20%, rgba(139,92,246,.10), transparent 55%),
    radial-gradient(circle at 80% 30%, rgba(244,114,182,.10), transparent 55%),
    radial-gradient(circle at 45% 90%, rgba(21,144,141,.08), transparent 55%);
  transform: rotate(10deg);
  opacity: .9;
  pointer-events:none;
}
.ckCard__in{ position:relative; z-index:2; display:flex; gap: 12px; align-items:flex-start; }
.ckIco{
  width: 40px; height: 40px;
  border-radius: 14px;
  padding: 2px;
  background: linear-gradient(135deg, var(--acc-1), var(--acc-2));
  flex: 0 0 auto;
  box-shadow: 0 14px 30px rgba(139,92,246,.12);
}
.ckIco__in{
  width:100%; height:100%;
  border-radius: 12px;
  background: rgba(255,255,255,.66);
  border: 1px solid rgba(15,23,42,.06);
  display:grid;
  place-items:center;
}
.ckIco svg{ width: 18px; height: 18px; fill: rgba(15,23,42,.72); }
.ckCard h3{
  margin: 0 0 6px 0;
  font-size: 15.8px;
  line-height: 1.25;
  color: var(--ink);
  font-weight: 950;
  letter-spacing: -.01em;
}
.ckCard p{
  margin: 0;
  color: var(--muted2);
  font-size: 14.4px;
  line-height: 1.55;
  font-weight: 650;
}

.ckTwo{
  display:grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 18px;
  align-items:start;
}
.ckTwo--tight{ gap: 14px; }
.ckBox{
  border-radius: var(--r);
  border: 1px solid rgba(15,23,42,.10);
  background:#fff;
  box-shadow: 0 18px 46px rgba(2,8,23,.08);
  overflow:hidden;
  padding: 16px 16px 18px;
}
.ckBox--wide{ padding: 18px 18px 20px; }
.ckBox--padded{ padding: 18px 18px 20px; }
.ckTitleSmall{
  margin:0 0 10px 0;
  color: var(--ink);
  font-size: 20px;
  line-height: 1.2;
  font-weight: 950;
  letter-spacing:-.01em;
}
.ckP{
  margin: 0 0 10px 0;
  color: rgba(15,23,42,.72);
  font-weight: 650;
  line-height: 1.7;
  font-size: 14.9px;
}
.ckP--big{ font-size: 16.1px; }
.ckP:last-child{ margin-bottom:0; }
.ckList{
  margin: 0;
  padding-left: 18px;
  color: rgba(15,23,42,.72);
  font-weight: 650;
  line-height: 1.65;
  font-size: 14.6px;
}
.ckList--cols{
  columns: 2;
  column-gap: 28px;
}
.ckNote{
  margin-top: 12px;
  color: rgba(15,23,42,.62);
  font-size: 13.8px;
  line-height: 1.55;
  font-weight: 650;
}
.ckNote--center{
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  max-width: 86ch;
}
.ckImg{
  border-radius: var(--r);
  border: 1px solid rgba(15,23,42,.10);
  background:#0b1220;
  box-shadow: 0 22px 60px rgba(2,8,23,.10);
  overflow:hidden;
  position: relative;
}
.ckImg img{
  width:100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  display:block;
  opacity:.92;
  filter: saturate(1.02) contrast(1.02);
  transform: scale(1.02);
}

.ckMini{
  margin-top: 12px;
  padding: 12px 12px;
  border-radius: 16px;
  border: 1px solid rgba(15,23,42,.10);
  background: rgba(15,23,42,.02);
  color: rgba(15,23,42,.74);
  font-weight: 700;
  line-height: 1.55;
  font-size: 13.8px;
}

.ckPills{
  display:flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 12px 0 0;
}
.ckPill{
  padding: 10px 12px;
  border-radius: 999px;
  border: 1px solid rgba(15,23,42,.10);
  background: rgba(15,23,42,.02);
  color: rgba(15,23,42,.78);
  font-weight: 800;
  font-size: 13.6px;
  line-height: 1.2;
}

.ckTicks{
  margin: 12px 0 0;
  padding: 0;
  list-style: none;
}
.ckTicks li{
  padding-left: 30px;
  position: relative;
  margin: 10px 0;
  color: rgba(15,23,42,.72);
  font-weight: 650;
  line-height: 1.6;
  font-size: 14.8px;
}

/* Luigina section */
.ckLuigina{
  max-width: 1100px;
  margin: 0 auto;
  display:grid;
  grid-template-columns: 3fr 2fr;
  gap: 18px;
  align-items: start;
}
.ckLuigina__text{
  padding: 18px 18px 20px;
  border-radius: var(--r);
  background: rgba(15,23,42,.02);
  border: 1px solid rgba(15,23,42,.10);
}
.ckLuigina__cta{ margin-top: 12px; }
.ckLuigina__img{
  border-radius: var(--r);
  border: 1px solid rgba(15,23,42,.10);
  background:#0b1220;
  box-shadow: 0 22px 60px rgba(2,8,23,.10);
  overflow:hidden;
}
.ckLuigina__img img{
  width:100%;
  height: 100%;
  min-height: 340px;
  object-fit: cover;
  object-position: 50% 35%;
  display:block;
  opacity:.96;
}

/* A chi: cards in “homepage style” */
.ckWhoGrid{
  max-width: 1100px;
  margin: 0 auto;
  display:grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}
.ckWhoCard{
  border-radius: 18px;
  border: 1px solid rgba(15,23,42,.10);
  background: rgba(255,255,255,.92);
  box-shadow: 0 18px 46px rgba(2,8,23,.06);
  position: relative;
  overflow: hidden;
  transition: transform .18s ease, box-shadow .18s ease;
}
.ckWhoCard::before{
  content:"";
  position:absolute;
  inset:0;
  pointer-events:none;
  background:
    radial-gradient(560px 180px at 20% 0%, rgba(139,92,246,.08), transparent 62%),
    radial-gradient(560px 180px at 80% 0%, rgba(244,114,182,.08), transparent 62%),
    radial-gradient(620px 240px at 60% 100%, rgba(21,144,141,.07), transparent 62%);
  opacity:.95;
}
.ckWhoCard--soft::before{
  background: radial-gradient(620px 240px at 40% 10%, rgba(21,144,141,.10), transparent 62%);
}
.ckWhoCard--soft{
  border: 1px solid rgba(21,144,141,.22);
  background: rgba(21,144,141,.06);
}
.ckWhoCard--soft .ckWhoIco{
  background: linear-gradient(135deg, rgba(21,144,141,1), rgba(139,92,246,1));
  box-shadow: 0 16px 40px rgba(21,144,141,.18);
}
.ckWhoCard__in{
  position: relative;
  z-index: 1;
  display:flex;
  gap: 12px;
  align-items:flex-start;
  padding: 16px 16px 15px;
}
.ckWhoIco{
  width: 44px;
  height: 44px;
  border-radius: 16px;
  padding: 2px;
  background: linear-gradient(135deg, var(--acc-1), var(--acc-2));
  box-shadow: 0 14px 30px rgba(139,92,246,.14);
  flex: 0 0 auto;
}
.ckWhoIco__in{
  width:100%;
  height:100%;
  border-radius: 14px;
  background: rgba(255,255,255,.66);
  border: 1px solid rgba(15,23,42,.06);
  display:grid;
  place-items:center;
}
.ckWhoIco svg{ width: 20px; height: 20px; fill: rgba(15,23,42,.72); }
.ckWhoCard h3{
  margin: 0 0 6px 0;
  font-size: 16.5px;
  line-height: 1.2;
  color: var(--ink);
  font-weight: 950;
  letter-spacing: -.01em;
}
.ckWhoCard p{
  margin: 0;
  color: rgba(15,23,42,.70);
  font-size: 14.6px;
  line-height: 1.55;
  font-weight: 650;
}
.ckWhoCard:hover{
  transform: translateY(-2px);
  box-shadow: 0 22px 56px rgba(2,8,23,.08);
}
.ckWhoCta{
  margin-top: 16px;
  display:flex;
  justify-content:center;
}
.ckWhoBtn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding: 13px 16px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.26);
  background: linear-gradient(135deg, var(--acc-1), var(--acc-2));
  color: rgba(255,255,255,.98);
  text-decoration: none;
  font-weight: 950;
  letter-spacing:.01em;
  box-shadow: 0 18px 40px rgba(139,92,246,.18);
  transition: transform .18s ease, box-shadow .18s ease, filter .18s ease;
}
.ckWhoBtn:hover{
  transform: translateY(-2px);
  box-shadow: 0 22px 56px rgba(139,92,246,.20);
  filter: saturate(1.03);
}

/* Studio / distanza */
.ckModeGrid{
  max-width: 1100px;
  margin: 0 auto;
  display:grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}
.ckMode{
  border-radius: var(--r);
  border: 1px solid rgba(15,23,42,.10);
  background: rgba(255,255,255,.92);
  box-shadow: 0 18px 46px rgba(2,8,23,.06);
  padding: 18px 18px 20px;
  position: relative;
  overflow:hidden;
}
.ckMode::before{
  content:"";
  position:absolute;
  inset:0;
  pointer-events:none;
  background: radial-gradient(700px 220px at 25% 0%, rgba(21,144,141,.10), transparent 62%);
  opacity:.85;
}
.ckMode > *{ position: relative; z-index:1; }
.ckMode h3{
  margin: 0 0 8px;
  color: var(--ink);
  font-weight: 950;
  letter-spacing:-.01em;
  font-size: 20px;
}
.ckMode p{
  margin: 0 0 12px;
  color: rgba(15,23,42,.72);
  font-weight: 650;
  line-height: 1.7;
  font-size: 15.2px;
}
.ckMode ul{
  margin: 0;
  padding-left: 18px;
  color: rgba(15,23,42,.72);
  font-weight: 650;
  line-height: 1.65;
  font-size: 14.8px;
}
.ckTicks li::before{
  content:"";
  position:absolute;
  left: 0;
  top: 2px;
  width: 18px;
  height: 18px;
  border-radius: 6px;
  background: linear-gradient(135deg, var(--acc-1), var(--acc-2));
  box-shadow: 0 12px 24px rgba(139,92,246,.10);
}
.ckTicks li::after{
  content:"";
  position:absolute;
  left: 5px;
  top: 7px;
  width: 8px;
  height: 4px;
  border-left: 2px solid rgba(255,255,255,.96);
  border-bottom: 2px solid rgba(255,255,255,.96);
  transform: rotate(-45deg);
}

/* Stack helper */
.ckStack{
  max-width: 980px;
  margin: 0 auto;
  display:grid;
  gap: 14px;
}

.ckDetails{
  margin: 18px auto 0;
  max-width: 980px;
  border-radius: 18px;
  border: 1px solid rgba(15,23,42,.10);
  background: #fff;
  box-shadow: 0 18px 46px rgba(2,8,23,.06);
  overflow: hidden;
}
.ckDetails summary{
  list-style: none;
  cursor:pointer;
  padding: 14px 16px;
  font-weight: 950;
  color: var(--ink);
  font-size: 15.6px;
}
.ckDetails summary::-webkit-details-marker{ display:none; }
.ckDetails summary::after{
  content:"";
  float: right;
  width: 10px;
  height: 10px;
  border-right: 2px solid rgba(15,23,42,.55);
  border-bottom: 2px solid rgba(15,23,42,.55);
  transform: rotate(45deg) translateY(2px);
  margin-top: 4px;
}
.ckDetails[open] summary::after{ transform: rotate(-135deg) translateY(0); }
.ckDetails__body{ padding: 0 16px 16px; }

.ckFeat{
  display:grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 18px;
}
.ckFeatCard{
  border-radius: var(--r);
  border: 1px solid rgba(15,23,42,.10);
  background:#fff;
  box-shadow: 0 18px 46px rgba(2,8,23,.08);
  padding: 16px 16px 18px;
}
.ckFeatTop{
  display:flex;
  align-items:center;
  gap: 10px;
  margin-bottom: 10px;
}
.ckFeatTop h3{
  margin:0;
  color: var(--ink);
  font-weight: 950;
  letter-spacing:-.01em;
  font-size: 16.8px;
}
.ckFeatIco{
  width: 40px; height: 40px;
  border-radius: 14px;
  padding: 2px;
  background: linear-gradient(135deg, var(--acc-1), var(--acc-2));
  box-shadow: 0 14px 30px rgba(139,92,246,.12);
  flex: 0 0 auto;
}
.ckFeatIco svg{
  width: 100%; height: 100%;
  padding: 10px;
  border-radius: 12px;
  background: rgba(255,255,255,.66);
  border: 1px solid rgba(15,23,42,.06);
  fill: rgba(15,23,42,.72);
}

.ckTimeline{
  max-width: 980px;
  margin: 0 auto;
  border-radius: var(--r);
  border: 1px solid rgba(15,23,42,.10);
  background: #fff;
  box-shadow: 0 22px 56px rgba(2,8,23,.08);
  padding: 16px 16px 18px;
}
.ckTItem{
  display:grid;
  grid-template-columns: 14px 1fr;
  gap: 12px;
  padding: 14px 6px;
  border-top: 1px solid rgba(15,23,42,.08);
}
.ckTItem:first-child{ border-top: 0; }
.ckTDot{
  width: 12px;
  height: 12px;
  border-radius: 999px;
  margin-top: 4px;
  background: linear-gradient(135deg, var(--acc-1), var(--acc-2));
  box-shadow: 0 14px 30px rgba(139,92,246,.12);
}
.ckTItem h3{
  margin: 0 0 6px;
  color: var(--ink);
  font-weight: 950;
  letter-spacing:-.01em;
  font-size: 16.6px;
}
.ckTItem p{
  margin:0;
  color: rgba(15,23,42,.72);
  font-weight: 650;
  line-height: 1.65;
  font-size: 14.6px;
}

.ckFaq{
  max-width: 980px;
  margin: 0 auto;
  display:grid;
  gap: 12px;
}
.ckFaqItem{
  border-radius: 18px;
  border: 1px solid rgba(15,23,42,.10);
  background:#fff;
  box-shadow: 0 18px 46px rgba(2,8,23,.06);
  overflow: hidden;
}
.ckFaqItem summary{
  list-style:none;
  cursor:pointer;
  padding: 14px 16px;
  font-weight: 950;
  color: var(--ink);
  font-size: 15.8px;
  line-height: 1.3;
}
.ckFaqItem summary::-webkit-details-marker{ display:none; }
.ckFaqItem summary::after{
  content:"";
  float:right;
  width: 10px;
  height: 10px;
  border-right: 2px solid rgba(15,23,42,.55);
  border-bottom: 2px solid rgba(15,23,42,.55);
  transform: rotate(45deg) translateY(2px);
  margin-top: 4px;
}
.ckFaqItem[open] summary::after{ transform: rotate(-135deg) translateY(0); }
.ckFaqBody{ padding: 0 16px 16px; }

.ckSteps{
  display:grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}
.ckStep{
  border-radius: var(--r);
  border: 1px solid rgba(15,23,42,.10);
  background:#fff;
  box-shadow: 0 18px 46px rgba(2,8,23,.08);
  padding: 16px 16px 18px;
  display:flex;
  gap: 12px;
  align-items:flex-start;
}
.ckStep__n{
  width: 42px;
  height: 42px;
  border-radius: 14px;
  display:grid;
  place-items:center;
  color: #fff;
  font-weight: 950;
  background: linear-gradient(135deg, var(--acc-1), var(--acc-2));
  box-shadow: 0 14px 30px rgba(139,92,246,.16);
  flex: 0 0 auto;
}
.ckStep h3{
  margin:0 0 6px 0;
  color: var(--ink);
  font-weight: 950;
  font-size: 16.6px;
  letter-spacing:-.01em;
}
.ckStep p{
  margin:0;
  color: rgba(15,23,42,.70);
  font-weight: 650;
  line-height: 1.6;
  font-size: 14.6px;
}

/* CTA */
.ckCta{ padding: 62px 0 78px; }
.ckMidCta{ padding: 0 0 66px; }
.ckCtaBox{
  width: min(var(--max), calc(100% - 28px));
  margin:0 auto;
  border-radius: var(--r);
  border: 1px solid rgba(15,23,42,.10);
  background: linear-gradient(180deg, rgba(15,23,42,.02), rgba(15,23,42,.00));
  position: relative;
  overflow:hidden;
  box-shadow: 0 22px 56px rgba(2,8,23,.08);
  padding: 18px;
}
.ckCtaBox--mid{ margin-top: -8px; }
.ckMidCta__mini{
  color: rgba(15,23,42,.70);
  font-weight: 750;
  font-size: 13.5px;
  width: 100%;
}
.ckMidCta__mini a{ color: rgba(15,23,42,.84); text-decoration: none; font-weight: 900; }
.ckMidCta__mini a:hover{ text-decoration: underline; text-underline-offset: 3px; }
.ckCtaBox::before{
  content:"";
  position:absolute;
  inset:-30% -20%;
  background:
    radial-gradient(900px 260px at 20% 20%, rgba(21,144,141,.12), transparent 60%),
    radial-gradient(900px 300px at 80% 70%, rgba(15,23,42,.06), transparent 62%);
  pointer-events:none;
  opacity:.95;
}
.ckCtaBox__in{
  position: relative;
  z-index:2;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 14px;
  flex-wrap:wrap;
}
.ckCtaTitle{
  margin:0;
  color: var(--ink);
  font-size: clamp(26px, 3vw, 34px);
  line-height: 1.15;
  letter-spacing:-.02em;
  font-weight: 950;
  max-width: 30ch;
}
.ckCtaSub{
  margin:6px 0 0;
  color: var(--muted);
  font-size: 15.5px;
  line-height:1.6;
  font-weight: 650;
  max-width: 78ch;
}

@media (max-width: 980px){
  .ckHero{ padding: 34px 0 58px; }
  .ckHero__grid{ grid-template-columns: 1fr; }
  .ckHeroCard img{ height: 420px; }
  .ckSec{ padding: 62px 0; }
  .ckGrid3{ grid-template-columns: 1fr; }
  .ckFeat{ grid-template-columns: 1fr; }
  .ckTwo{ grid-template-columns: 1fr; }
  .ckSteps{ grid-template-columns: 1fr; }
  .ckList--cols{ columns: 1; }
  .ckImg img{ min-height: 320px; }
  .ckLuigina{ grid-template-columns: 1fr; }
  .ckWhoGrid{ grid-template-columns: 1fr; }
  .ckModeGrid{ grid-template-columns: 1fr; }
}

@media (max-width: 560px){
  .ckHero__title{ font-size: clamp(42px, 10.2vw, 56px); }
  .ckTitle{ font-size: 38px; }
  .ckTitleSmall{ font-size: 21px; }
}

/* Desktop sizing: make all cards feel bigger */
@media (min-width: 981px){
  .ckCenterCard__in{ padding: 24px 24px 26px; }
  .ckLuigina__text{ padding: 24px 24px 26px; }
  .ckLuigina__img img{ min-height: 380px; }

  .ckBox{ padding: 20px 20px 22px; }
  .ckBox--padded{ padding: 22px 22px 24px; }

  .ckHeroFact{ padding: 12px 14px; min-width: 200px; }
  .ckHeroFact b{ font-size: 15.4px; }
  .ckHeroFact small{ font-size: 13.2px; }

  .ckP{ font-size: 15.6px; }
  .ckP--big{ font-size: 16.8px; }

  .ckTitleSmall{ font-size: 22px; }

  .ckWhoGrid{ grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; }
  .ckWhoCard__in{ padding: 20px 20px 18px; }
  .ckWhoCard h3{ font-size: 17.2px; }
  .ckWhoCard p{ font-size: 15.1px; }

  .ckMode{ padding: 22px 22px 24px; }
  .ckMode h3{ font-size: 21px; }
  .ckMode p{ font-size: 15.8px; }
  .ckMode ul{ font-size: 15.2px; }

  .ckStep{ padding: 20px 20px 22px; }
  .ckStep__n{ width: 46px; height: 46px; border-radius: 16px; }
  .ckStep h3{ font-size: 17.4px; }
  .ckStep p{ font-size: 15.2px; }

  .ckFeatCard{ padding: 20px 20px 22px; }
  .ckFeatTop h3{ font-size: 17.6px; }

  .ckTimeline{ padding: 20px 20px 22px; }
  .ckTItem{ padding: 16px 8px; }
  .ckTItem h3{ font-size: 17.2px; }
  .ckTItem p{ font-size: 15.2px; }

  .ckFaqItem summary{ padding: 16px 18px; font-size: 16.4px; }
  .ckFaqBody{ padding: 0 18px 18px; }

  .ckCtaBox{ padding: 22px; }
}
