/* =========================================================
   RankingDental – Top 10 (Modern Puzzle UI)
   Modern palette (NO pastel) – Navy + Gold (Tech Premium)
   Scope: SOLO .rd10
   ========================================================= */

.rd10{
  /* Base */
  --bg:#ffffff;
  --text:#0b1220;
  --muted:rgba(11,18,32,.70);
  --line:rgba(11,18,32,.12);

  /* Brand (modern, not pastel) */
  --p:#0b1f3a;                   /* Navy */
  --s:#c9a227;                   /* Gold metal */

  /* Glows (deeper, not “soft pastel”) */
  --pSoft:rgba(11,31,58,.20);    /* deeper navy glow */
  --sSoft:rgba(201,162,39,.18);  /* deeper gold glow */

  /* Semantics */
  --ok:#16a34a;
  --warn:#b45309;
  --danger:#e11d48;

  /* Radius / shadow */
  --r:18px;
  --r2:22px;
  --sh:0 14px 40px rgba(11,18,32,.14);
  --wrap:min(1120px, 92vw);

  color:var(--text);
}

.rd10 *{ box-sizing:border-box; }
.rd10 a{ color:inherit; text-decoration:none; }
.rd10 a:hover{ text-decoration:underline; }

.rd10__wrap{
  width:var(--wrap);
  margin:0 auto;
  padding: 10px 0 30px;
}

.rd10__muted{ color:var(--muted); }

.rd10__h1{
  margin: 10px 0 10px;
  font-size: clamp(32px, 3.2vw, 52px);
  line-height: 1.05;
  letter-spacing: -0.02em;
}
.rd10__h2{
  margin: 0 0 8px;
  font-size: clamp(20px, 2.1vw, 30px);
  letter-spacing:-0.01em;
}
.rd10__h3{
  margin:0 0 8px;
  font-size: 18px;
}

.rd10__lead{
  margin: 0 0 10px;
  font-size: 18px;
  line-height:1.6;
}

/* =========================================================
   HERO (modern glow – no pastel)
   ========================================================= */
.rd10__hero{
  border: 1px solid var(--line);
  border-radius: var(--r2);
  background:
    radial-gradient(740px 320px at 14% 0%, var(--pSoft), transparent 60%),
    radial-gradient(620px 280px at 92% 10%, var(--sSoft), transparent 55%),
    linear-gradient(180deg, rgba(11,18,32,.02), rgba(255,255,255,0)),
    #fff;
  box-shadow: var(--sh);
  overflow:hidden;
}

.rd10__heroGrid{
  display:grid;
  grid-template-columns: 1.3fr .7fr;
  gap: 0;
}
@media (max-width: 960px){
  .rd10__heroGrid{ grid-template-columns: 1fr; }
}

.rd10__heroLeft{
  padding: 18px 18px 18px;
}

.rd10__chipRow{
  display:flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 8px;
}

.rd10__chip{
  display:inline-flex;
  align-items:center;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(11,18,32,.14);
  background: rgba(255,255,255,.92);
  font-weight: 950;
  font-size: 12px;
  box-shadow: 0 8px 18px rgba(11,18,32,.06);
}
.rd10__chip--primary{
  border-color: rgba(201,162,39,.55);
  background: linear-gradient(180deg, rgba(201,162,39,.22), rgba(201,162,39,.10));
}

.rd10__notBox{
  margin-top: 12px;
  border: 1px solid rgba(11,18,32,.10);
  border-radius: var(--r);
  background: rgba(11,18,32,.02);
  padding: 12px;
}

.rd10__notGrid{
  display:grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 10px;
}
@media (max-width: 960px){
  .rd10__notGrid{ grid-template-columns: 1fr; }
}

.rd10__notItem{
  display:flex;
  gap: 10px;
  align-items:flex-start;
  border: 1px solid rgba(11,18,32,.10);
  border-radius: 14px;
  padding: 10px;
  background: rgba(255,255,255,.96);
  box-shadow: 0 10px 24px rgba(11,18,32,.08);
}
.rd10__notItem p{ margin:0; }
.rd10__notDot{
  width: 10px; height: 10px; border-radius: 999px;
  margin-top: 6px;
  background: linear-gradient(135deg, var(--p), var(--s));
}

.rd10__citable{
  margin-top: 12px;
  border: 1px solid rgba(11,18,32,.12);
  border-left: 6px solid var(--s);
  border-radius: var(--r);
  background:
    linear-gradient(135deg, rgba(201,162,39,.14), rgba(255,255,255,.96));
  padding: 12px 12px;
}
.rd10__citableLabel{
  margin: 0 0 6px;
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: .03em;
  color: rgba(11,18,32,.74);
}
.rd10__citableText{ margin:0; }

.rd10__heroBtns{
  margin-top: 12px;
  display:flex;
  gap: 10px;
  flex-wrap: wrap;
}

/* right “puzzle panel” */
.rd10__heroRight{
  border-left: 1px solid rgba(11,18,32,.10);
  background: linear-gradient(180deg, rgba(11,18,32,.03), rgba(255,255,255,.55));
  padding: 16px;
}
@media (max-width: 960px){
  .rd10__heroRight{ border-left:0; border-top:1px solid rgba(11,18,32,.10); }
}

.rd10__kpiStack{ display:grid; gap: 10px; }

.rd10__kpi{
  border: 1px solid rgba(11,18,32,.12);
  border-radius: var(--r);
  background: rgba(255,255,255,.96);
  box-shadow: 0 10px 24px rgba(11,18,32,.08);
  padding: 12px;
}

.rd10__kpi--big{
  background:
    radial-gradient(520px 220px at 12% 0%, rgba(11,31,58,.16), transparent 60%),
    radial-gradient(520px 220px at 90% 10%, rgba(201,162,39,.16), transparent 55%),
    rgba(255,255,255,.96);
}

.rd10__kpiTitle{
  margin:0 0 6px;
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: .03em;
  color: rgba(11,18,32,.70);
}

.rd10__kpiValue{
  margin:0;
  display:flex;
  align-items:baseline;
  gap: 8px;
}
.rd10__kpiValue span{
  font-size: 44px;
  line-height:1;
  font-weight: 1100;
}
.rd10__kpiValue em{
  font-style: normal;
  font-weight: 900;
  color: rgba(11,18,32,.70);
}

.rd10__kpiRow{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
@media (max-width: 960px){
  .rd10__kpiRow{ grid-template-columns: 1fr; }
}

.rd10__kpiValueSm{
  margin:0;
  font-size: 20px;
  font-weight: 1000;
}
.rd10__kpiText{ margin:0; }

.rd10__kpi--soft{
  background: rgba(11,18,32,.03);
}

/* =========================================================
   Buttons (modern, not pastel)
   ========================================================= */
.rd10__btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(11,18,32,.16);
  background: rgba(255,255,255,.96);
  font-weight: 1000;
  letter-spacing: .01em;
  transition: transform .10s ease, background .14s ease, border-color .14s ease, box-shadow .14s ease;
}
.rd10__btn:active{ transform: translateY(1px); }

.rd10__btn--primary{
  color: #0b1220;
  border-color: rgba(201,162,39,.70);
  background: linear-gradient(180deg, rgba(226,195,90,.92), rgba(201,162,39,.78));
  box-shadow:
    0 18px 34px rgba(201,162,39,.18),
    0 10px 22px rgba(11,18,32,.12);
}
.rd10__btn--primary:hover{
  text-decoration:none;
  transform: translateY(-1px);
  background: linear-gradient(180deg, rgba(226,195,90,.98), rgba(201,162,39,.84));
}

.rd10__btn--ghost{
  background: rgba(11,18,32,.04);
}
.rd10__btn--ghost:hover{
  background: rgba(11,18,32,.07);
  text-decoration:none;
}
.rd10__btn--full{ width: 100%; }

/* =========================================================
   Puzzle sections (same layout, modern shadow/lines)
   ========================================================= */
.rd10__puzzle{ margin-top: 14px; }

.rd10__puzzleGrid{
  display:grid;
  gap: 12px;
}
.rd10__puzzleGrid--2{ grid-template-columns: 1.25fr .75fr; }
.rd10__puzzleGrid--3{ grid-template-columns: 1fr 1fr 1fr; }

@media (max-width: 980px){
  .rd10__puzzleGrid--2, .rd10__puzzleGrid--3{ grid-template-columns: 1fr; }
}

.rd10__tile{
  border: 1px solid rgba(11,18,32,.12);
  border-radius: var(--r2);
  background: rgba(255,255,255,.96);
  box-shadow: var(--sh);
  padding: 14px;
  position: relative;
  overflow: hidden;
}

.rd10__tile--accent{
  background:
    radial-gradient(520px 220px at 10% 0%, rgba(11,31,58,.16), transparent 60%),
    radial-gradient(480px 200px at 90% 10%, rgba(201,162,39,.14), transparent 55%),
    rgba(255,255,255,.96);
}

.rd10__tile--soft{
  background: linear-gradient(135deg, rgba(11,18,32,.03), rgba(255,255,255,.96));
}

.rd10__tileHead{ margin-bottom: 10px; }

/* checklist */
.rd10__check{
  list-style:none;
  margin: 10px 0 0;
  padding: 0;
  display:grid;
  gap: 8px;
}
.rd10__check li{
  position: relative;
  padding-left: 28px;
}
.rd10__check li:before{
  content:"✓";
  position:absolute;
  left:0; top:0;
  font-weight: 1100;
  color: var(--ok);
}

.rd10__badgeWarn{
  margin-top: 12px;
  border: 1px solid rgba(201,162,39,.35);
  background: rgba(201,162,39,.10);
  border-radius: 14px;
  padding: 10px 12px;
}

/* mini grid */
.rd10__miniGrid{
  display:grid;
  grid-template-columns: 1fr;
  gap: 10px;
}
.rd10__mini{
  border: 1px solid rgba(11,18,32,.10);
  border-radius: 16px;
  padding: 10px 12px;
  background: rgba(255,255,255,.96);
  box-shadow: 0 10px 24px rgba(11,18,32,.08);
}
.rd10__miniTitle{
  margin:0 0 4px;
  font-weight: 1000;
  font-size: 13px;
  color: rgba(11,18,32,.88);
}
.rd10__miniText{ margin:0; color: rgba(11,18,32,.86); }

/* steps */
.rd10__steps{
  margin: 10px 0 0;
  padding-left: 18px;
  display:grid;
  gap: 10px;
}
.rd10__steps li strong{ font-weight: 1100; }

.rd10__pillRow{
  margin-top: 12px;
  display:flex;
  gap: 8px;
  flex-wrap: wrap;
}
.rd10__pill{
  border: 1px solid rgba(11,18,32,.12);
  background: rgba(11,18,32,.03);
  border-radius: 999px;
  padding: 7px 10px;
  font-size: 13px;
}

.rd10__bullets{
  margin: 10px 0 0;
  padding-left: 18px;
}
.rd10__bullets li{ margin: 6px 0; }

.rd10__hardRule{
  margin-top: 12px;
  border: 1px solid rgba(225,29,72,.22);
  background: rgba(225,29,72,.06);
  border-radius: 14px;
  padding: 10px 12px;
}

/* waitlist */
.rd10__wait{
  display:grid;
  gap: 10px;
  margin-top: 10px;
}
.rd10__waitBox{
  border: 1px solid rgba(11,18,32,.12);
  background: rgba(255,255,255,.96);
  border-radius: 16px;
  padding: 10px 12px;
}
.rd10__waitBox--accent{
  background: linear-gradient(135deg, rgba(11,31,58,.12), rgba(255,255,255,.96));
  border-color: rgba(11,31,58,.20);
}
.rd10__waitTitle{
  margin:0 0 6px;
  font-weight: 1000;
}
.rd10__waitText{ margin:0; }

/* =========================================================
   Pricing
   ========================================================= */
.rd10__pricing{
  margin-top: 14px;
  border: 1px solid rgba(11,18,32,.12);
  border-radius: var(--r2);
  background:
    radial-gradient(760px 320px at 15% 0%, rgba(11,31,58,.16), transparent 60%),
    radial-gradient(640px 280px at 90% 10%, rgba(201,162,39,.14), transparent 55%),
    #fff;
  box-shadow: var(--sh);
  overflow:hidden;
}

.rd10__pricingGrid{
  display:grid;
  grid-template-columns: 1.2fr .8fr;
}
@media (max-width: 980px){
  .rd10__pricingGrid{ grid-template-columns: 1fr; }
}

.rd10__priceCard{ padding: 16px; }

.rd10__priceTag{
  margin:0 0 6px;
  font-size: 12px;
  font-weight: 1100;
  text-transform: uppercase;
  letter-spacing: .03em;
  color: rgba(11,18,32,.74);
}

.rd10__priceValue{
  margin:0;
  display:flex;
  align-items: baseline;
  gap: 6px;
}
.rd10__priceValue span{ font-size: 54px; font-weight: 1200; line-height:1; }
.rd10__priceValue em{ font-style: normal; font-weight: 1100; font-size: 22px; }
.rd10__priceValue strong{ font-weight: 1100; color: rgba(11,18,32,.74); }

.rd10__pricePoints{
  margin-top: 12px;
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
@media (max-width: 980px){
  .rd10__pricePoints{ grid-template-columns: 1fr; }
}

.rd10__pp{
  border: 1px solid rgba(11,18,32,.12);
  background: rgba(255,255,255,.84);
  border-radius: 18px;
  padding: 12px;
}
.rd10__ppTitle{ margin:0 0 6px; font-weight: 1100; }

.rd10__microDisclaimer{
  margin-top: 12px;
  border: 1px solid rgba(11,18,32,.12);
  border-left: 6px solid var(--gold);
  border-radius: 16px;
  background: rgba(255,255,255,.86);
  padding: 10px 12px;
}

/* pricing side */
.rd10__priceAside{
  border-left: 1px solid rgba(11,18,32,.10);
  background: rgba(11,18,32,.02);
  padding: 16px;
  display:grid;
  gap: 10px;
}
@media (max-width: 980px){
  .rd10__priceAside{ border-left:0; border-top: 1px solid rgba(11,18,32,.10); }
}
.rd10__capCard,
.rd10__trustCard{
  border: 1px solid rgba(11,18,32,.12);
  border-radius: 18px;
  background: rgba(255,255,255,.96);
  box-shadow: 0 10px 24px rgba(11,18,32,.08);
  padding: 12px;
}
.rd10__capTitle,
.rd10__trustTitle{ margin:0 0 6px; font-weight: 1100; }
.rd10__capValue{ margin:0; font-size: 28px; font-weight: 1200; }

/* =========================================================
   FAQ
   ========================================================= */
.rd10__faq{
  margin-top: 14px;
  border: 1px solid rgba(11,18,32,.12);
  border-radius: var(--r2);
  background: rgba(255,255,255,.96);
  box-shadow: var(--sh);
  padding: 14px;
}

.rd10__faqHead{ margin-bottom: 10px; }

.rd10__qaGrid{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
@media (max-width: 980px){
  .rd10__qaGrid{ grid-template-columns: 1fr; }
}

.rd10__qa{
  border: 1px solid rgba(11,18,32,.12);
  border-radius: 16px;
  background: rgba(11,18,32,.02);
  padding: 10px 12px;
}
.rd10__qa summary{ cursor:pointer; font-weight: 1100; }
.rd10__qa p{ margin: 10px 0 0; color: rgba(11,18,32,.92); }

/* =========================================================
   CTA
   ========================================================= */
.rd10__cta{ margin-top: 14px; }

.rd10__ctaBox{
  border: 1px solid rgba(11,18,32,.12);
  border-radius: 26px;
  box-shadow: var(--sh);
  background:
    radial-gradient(860px 360px at 10% 0%, rgba(11,31,58,.16), transparent 60%),
    radial-gradient(700px 320px at 95% 10%, rgba(201,162,39,.16), transparent 55%),
    linear-gradient(135deg, rgba(11,18,32,.02), #fff);
  display:grid;
  grid-template-columns: 1.2fr .8fr;
  overflow:hidden;
}
@media (max-width: 980px){
  .rd10__ctaBox{ grid-template-columns: 1fr; }
}

.rd10__ctaLeft{ padding: 18px; }
.rd10__ctaKicker{
  margin:0 0 8px;
  display:inline-block;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(11,18,32,.12);
  background: rgba(255,255,255,.82);
  font-weight: 1100;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .03em;
}
.rd10__ctaTitle{
  margin: 6px 0 8px;
  font-size: clamp(22px, 2.2vw, 34px);
  letter-spacing:-0.01em;
}
.rd10__ctaText{
  margin: 0 0 10px;
  font-size: 16px;
  line-height:1.6;
}

.rd10__ctaBadges{
  display:flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 10px;
}
.rd10__ctaBadge{
  border: 1px solid rgba(11,18,32,.12);
  background: rgba(255,255,255,.82);
  border-radius: 999px;
  padding: 7px 10px;
  font-weight: 1000;
  font-size: 13px;
}

.rd10__ctaFine{
  margin: 10px 0 0;
  color: rgba(11,18,32,.75);
  font-size: 13px;
}

.rd10__ctaRight{
  border-left: 1px solid rgba(11,18,32,.10);
  background: rgba(11,18,32,.02);
  padding: 18px;
}
@media (max-width: 980px){
  .rd10__ctaRight{ border-left:0; border-top: 1px solid rgba(11,18,32,.10); }
}

.rd10__ctaPanel{
  border: 1px solid rgba(11,18,32,.12);
  border-radius: 22px;
  background: rgba(255,255,255,.96);
  box-shadow: 0 12px 26px rgba(11,18,32,.10);
  padding: 14px;
}

.rd10__ctaPanelTitle{ margin:0 0 8px; font-weight: 1100; }
.rd10__ctaList{
  list-style:none;
  margin: 0;
  padding: 0;
  display:grid;
  gap: 8px;
}
.rd10__ctaList li{
  position: relative;
  padding-left: 28px;
}
.rd10__ctaList li:before{
  content:"✓";
  position:absolute;
  left:0; top:0;
  font-weight: 1100;
  color: var(--ok);
}

.rd10__ctaBtns{
  margin-top: 12px;
  display:grid;
  gap: 10px;
}

.rd10__ctaMicro{
  margin: 10px 0 0;
  font-size: 13px;
  color: rgba(11,18,32,.75);
}

/* =========================================================
   Blocksy/Gutenberg safety: prevent overlaps + consistent spacing
   ========================================================= */
.rd10__heroLeft,
.rd10__heroRight,
.rd10__tile,
.rd10__kpi,
.rd10__qa,
.rd10__priceAside,
.rd10__ctaLeft,
.rd10__ctaRight{
  min-width: 0;
}

/* Extra: if Gutenberg columns exist inside rd10, ensure gap */
.rd10 .wp-block-columns{ gap: 12px !important; }
