/**
 * Уборка 4+ комнатной квартиры — только контент шорткода [.chisto-frr-ref]
 * Токены — assets/css/global.css
 */
.chisto-frr-ref {
  --frr-navy-dark: #0f2240;
  font-family: var(--font);
  color: var(--text);
}

.chisto-frr-ref *,
.chisto-frr-ref *::before,
.chisto-frr-ref *::after { box-sizing: border-box; }

.chisto-frr-ref a { text-decoration: none; color: inherit; }

.chisto-frr-ref .chisto-frr-container {
  width: 100%; max-width: 1220px; margin: 0 auto; padding: 0 28px;
}

/* Hero */
.chisto-frr-ref .page-hero {
  min-height: 520px; position: relative; overflow: hidden;
  display: flex; align-items: center;
  background: linear-gradient(148deg, var(--frr-navy-dark) 0%, var(--navy) 58%, #1d4080 100%);
}
.chisto-frr-ref .page-hero__pattern {
  position: absolute; inset: 0; pointer-events: none;
  background-image: repeating-linear-gradient(-45deg, transparent, transparent 40px,
    rgba(255,255,255,.012) 40px, rgba(255,255,255,.012) 41px);
}
.chisto-frr-ref .page-hero__glow {
  position: absolute; right: -60px; top: 50%; transform: translateY(-50%);
  width: 560px; height: 560px; pointer-events: none;
  background: radial-gradient(circle, rgba(255,170,0,.1) 0%, transparent 65%);
}
.chisto-frr-ref .page-hero__inner {
  position: relative; z-index: 1; display: grid;
  grid-template-columns: 1fr min(380px,100%);
  gap: clamp(32px,5vw,64px); align-items: center;
  padding: clamp(56px,8vw,88px) 0; width: 100%;
}
.chisto-frr-ref .page-hero__badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,170,0,.15); border: 1px solid rgba(255,170,0,.4);
  border-radius: 100px; padding: 8px 20px; font-size: 11px; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase; color: #fcd34d; margin-bottom: 22px;
}
.chisto-frr-ref .page-hero__title {
  font-size: clamp(28px,4.2vw,54px); font-weight: 900; line-height: 1.08;
  color: var(--white); margin: 0 0 20px;
}
.chisto-frr-ref .page-hero__title .accent { color: var(--gold); }
.chisto-frr-ref .page-hero__desc {
  font-size: 16px; line-height: 1.8; color: rgba(255,255,255,.72);
  max-width: 520px; margin: 0 0 32px;
}
.chisto-frr-ref .page-hero__actions { display: flex; flex-wrap: wrap; gap: 14px; }
.chisto-frr-ref .page-hero__pills { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 20px; }
.chisto-frr-ref .hero-pill {
  display: inline-flex; align-items: center; gap: 7px;
  background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.12);
  border-radius: 100px; padding: 7px 14px; font-size: 12px; font-weight: 600;
  color: rgba(255,255,255,.78);
}
.chisto-frr-ref .hero-pill__dot {
  width: 6px; height: 6px; border-radius: 50%; background: var(--gold); flex-shrink: 0;
}

/* Buttons */
.chisto-frr-ref .btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 14px 28px; border-radius: var(--r-sm); font-size: 14px; font-weight: 800;
  letter-spacing: .04em; transition: var(--tr); border: 2px solid transparent;
  font-family: var(--font); cursor: pointer;
}
.chisto-frr-ref .btn--gold { background: var(--gold); color: var(--frr-navy-dark); box-shadow: var(--sh-gold); }
.chisto-frr-ref .btn--gold:hover { filter: brightness(1.05); transform: translateY(-2px); }
.chisto-frr-ref .btn--outline-white { background: transparent; color: var(--white); border-color: rgba(255,255,255,.35); }
.chisto-frr-ref .btn--outline-white:hover { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.55); }
.chisto-frr-ref .btn--navy { background: var(--navy); color: var(--white); border-color: var(--navy); }
.chisto-frr-ref .btn--navy:hover { filter: brightness(1.08); transform: translateY(-2px); }

/* Sections */
.chisto-frr-ref .section { padding: clamp(64px,10vw,96px) 0; }
.chisto-frr-ref .section--gray { background: var(--off); }
.chisto-frr-ref .section-label {
  display: inline-flex; align-items: center; gap: 10px; font-size: 11px; font-weight: 800;
  letter-spacing: .2em; text-transform: uppercase; color: var(--gold); margin-bottom: 14px;
}
.chisto-frr-ref .section-label::before { content: ""; width: 28px; height: 2px; background: var(--gold); }
.chisto-frr-ref .section-title {
  font-size: clamp(26px,3.4vw,40px); font-weight: 900; line-height: 1.15;
  color: var(--navy); margin: 0 0 14px;
}
.chisto-frr-ref .section-subtitle { font-size: 16px; line-height: 1.65; color: var(--muted); margin: 0; }

/* Placeholders */
.chisto-frr-ref .img-ph,
.chisto-frr-ref .g-ph {
  background: var(--g100); border: 2px dashed var(--g200);
  display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center;
}
.chisto-frr-ref .img-ph { border-radius: var(--r-md); gap: 8px; }
.chisto-frr-ref .img-ph__icon { font-size: 28px; opacity: .45; }
.chisto-frr-ref .img-ph__text { font-size: 11px; font-weight: 600; color: var(--g500); padding: 0 12px; }
.chisto-frr-ref .g-ph { border-radius: var(--r-sm); gap: 5px; }
.chisto-frr-ref .g-ph__icon { font-size: 22px; opacity: .4; }
.chisto-frr-ref .g-ph__text { font-size: 10px; font-weight: 600; color: var(--g500); padding: 0 8px; }

/* Feature grid */
.chisto-frr-ref .chisto-frr-feat-grid {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; margin-top: 40px;
}
.chisto-frr-ref .chisto-frr-feat-card {
  background: var(--white); border: 1px solid var(--g200); border-radius: var(--r-md);
  padding: 28px 24px; transition: var(--tr);
}
.chisto-frr-ref .chisto-frr-feat-card:hover { border-color: var(--gold); box-shadow: var(--sh-sm); transform: translateY(-3px); }
.chisto-frr-ref .chisto-frr-feat-card__ico { font-size: 30px; margin-bottom: 12px; line-height: 1; }
.chisto-frr-ref .chisto-frr-feat-card__title { font-size: 15px; font-weight: 800; color: var(--navy); margin: 0 0 7px; }
.chisto-frr-ref .chisto-frr-feat-card__desc { font-size: 13px; line-height: 1.65; color: var(--muted); margin: 0; }

/* Scope */
.chisto-frr-ref .chisto-frr-two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: start; margin-top: 40px; }
.chisto-frr-ref .chisto-frr-scope-list { display: flex; flex-direction: column; gap: 10px; margin: 0; padding: 0; list-style: none; }
.chisto-frr-ref .chisto-frr-scope-item {
  display: flex; align-items: flex-start; gap: 10px; font-size: 14px; line-height: 1.55;
  color: var(--muted); padding: 12px 16px; background: var(--white); border: 1px solid var(--g200);
  border-radius: var(--r-sm); transition: var(--tr);
}
.chisto-frr-ref .chisto-frr-scope-item:hover { border-color: var(--gold); background: #fff8e6; }
.chisto-frr-ref .chisto-frr-scope-item__check {
  width: 18px; height: 18px; border-radius: 50%; background: #fff8e6;
  display: flex; align-items: center; justify-content: center;
  font-size: 9px; color: var(--navy); font-weight: 900; flex-shrink: 0; margin-top: 2px;
}
.chisto-frr-ref .chisto-frr-ba-row { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }

/* Pricing cards (разметка: .chisto-frr-price-cards / .chisto-frr-pc) */
.chisto-frr-ref .chisto-frr-price-cards { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; margin-top: 40px; }
.chisto-frr-ref .chisto-frr-pc {
  background: var(--white); border: 1px solid var(--g200); border-radius: var(--r-md);
  padding: 28px 24px; text-align: center; position: relative; transition: var(--tr);
}
.chisto-frr-ref .chisto-frr-pc--feat { border-color: var(--gold); box-shadow: var(--sh-sm); }
.chisto-frr-ref .chisto-frr-pc:hover { box-shadow: var(--sh-md); transform: translateY(-4px); }
.chisto-frr-ref .chisto-frr-pc__name { font-size: 15px; font-weight: 800; color: var(--navy); margin: 0 0 8px; }
.chisto-frr-ref .chisto-frr-pc__price { font-size: clamp(28px,3vw,40px); font-weight: 900; color: var(--gold); line-height: 1; margin: 0 0 10px; }
.chisto-frr-ref .chisto-frr-pc__note { font-size: 12px; color: var(--muted); line-height: 1.5; margin: 0; }

/* Gallery */
.chisto-frr-ref .gallery-grid { display: grid; gap: 12px; margin-top: 32px; }
.chisto-frr-ref .gallery-grid--4 { grid-template-columns: repeat(4,1fr); }
.chisto-frr-ref .gallery-grid .g-ph { aspect-ratio: 4/3; }

/* Link cards */
.chisto-frr-ref .link-row { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; margin-top: 40px; }
.chisto-frr-ref .link-card {
  background: var(--white); border: 1px solid var(--g200); border-radius: var(--r-md);
  padding: 18px 16px; display: flex; align-items: center; justify-content: space-between;
  gap: 10px; transition: var(--tr);
}
.chisto-frr-ref .link-card:hover { border-color: var(--navy); box-shadow: var(--sh-sm); }
.chisto-frr-ref .link-card__title { font-size: 14px; font-weight: 700; color: var(--navy); }
.chisto-frr-ref .link-card__arrow { color: var(--gold); font-size: 18px; flex-shrink: 0; }

/* Reviews */
.chisto-frr-ref .reviews-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; margin-top: 56px; }
.chisto-frr-ref .rev {
  background: var(--white); border: 1px solid var(--g200); border-radius: var(--r-md);
  padding: 26px 22px; transition: var(--tr); position: relative;
}
.chisto-frr-ref .rev::before {
  content: "❝"; position: absolute; top: 14px; right: 18px; font-size: 44px;
  color: var(--g100); line-height: 1; font-family: Georgia,serif;
}
.chisto-frr-ref .rev:hover { transform: translateY(-4px); box-shadow: var(--sh-md); border-color: transparent; }
.chisto-frr-ref .rev__stars { color: var(--gold); font-size: 14px; margin-bottom: 10px; }
.chisto-frr-ref .rev__text { font-size: 14px; line-height: 1.75; color: var(--muted); font-style: italic; margin: 0 0 14px; position: relative; z-index: 1; }
.chisto-frr-ref .rev__author { display: flex; align-items: center; gap: 11px; padding-top: 14px; border-top: 1px solid var(--g100); }
.chisto-frr-ref .rev__avatar {
  width: 38px; height: 38px; border-radius: 50%; background: var(--navy);
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; font-weight: 900; color: var(--gold); flex-shrink: 0;
}
.chisto-frr-ref .rev__name { font-size: 13px; font-weight: 800; color: var(--navy); }
.chisto-frr-ref .rev__meta { font-size: 11px; color: var(--g500); margin-top: 2px; }

/* CTA */
.chisto-frr-ref .cta-section { background: linear-gradient(135deg,var(--gold) 0%,#c4941f 100%); padding: 72px 0; }
.chisto-frr-ref .cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 40px; }
.chisto-frr-ref .cta-title { font-size: clamp(24px,3vw,40px); font-weight: 900; color: var(--frr-navy-dark); line-height: 1.15; margin: 0; }
.chisto-frr-ref .cta-sub { font-size: 16px; color: rgba(15,34,64,.7); margin: 10px 0 0; }
.chisto-frr-ref .cta-actions { display: flex; flex-direction: column; gap: 10px; flex-shrink: 0; }
.chisto-frr-ref .cta-phone { font-size: 28px; font-weight: 900; color: var(--frr-navy-dark); text-align: center; }
.chisto-frr-ref .cta-phone:hover { color: var(--white); }
.chisto-frr-ref .cta-note { font-size: 12px; color: rgba(15,34,64,.6); text-align: center; font-weight: 600; margin: 0; }

/* FAQ */
.chisto-frr-ref .faq-list { margin-top: 40px; }

/* Floating CTA */
.chisto-frr-ref .chisto-frr-floating-cta {
  display: none; position: fixed; bottom: 24px; left: 50%; transform: translateX(-50%); z-index: 100;
}

/* Reveal */
.chisto-frr-ref .chisto-frr-reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s ease, transform .7s ease; }
.chisto-frr-ref .chisto-frr-reveal--visible { opacity: 1; transform: translateY(0); }
.chisto-frr-ref .chisto-frr-reveal--d1 { transition-delay: .1s; }
.chisto-frr-ref .chisto-frr-reveal--d2 { transition-delay: .2s; }
.chisto-frr-ref .chisto-frr-reveal--d3 { transition-delay: .3s; }
.chisto-frr-ref .chisto-frr-reveal--d4 { transition-delay: .4s; }

/* Price note */
.chisto-frr-ref .chisto-frr-price-note {
  margin-top: 20px; font-size: 13px; color: var(--muted); text-align: center;
}

@media (max-width: 1100px) {
  .chisto-frr-ref .page-hero__inner { grid-template-columns: 1fr; }
}
@media (max-width: 900px) {
  .chisto-frr-ref .chisto-frr-feat-grid { grid-template-columns: 1fr 1fr; }
  .chisto-frr-ref .chisto-frr-two-col { grid-template-columns: 1fr; }
  .chisto-frr-ref .chisto-frr-price-cards { grid-template-columns: 1fr 1fr; }
  .chisto-frr-ref .gallery-grid--4 { grid-template-columns: repeat(2,1fr); }
  .chisto-frr-ref .link-row { grid-template-columns: 1fr 1fr; }
  .chisto-frr-ref .reviews-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .chisto-frr-ref .section { padding: 60px 0; }
  .chisto-frr-ref .chisto-frr-feat-grid { grid-template-columns: 1fr; }
  .chisto-frr-ref .chisto-frr-price-cards { grid-template-columns: 1fr; }
  .chisto-frr-ref .gallery-grid--4 { grid-template-columns: 1fr; }
  .chisto-frr-ref .link-row { grid-template-columns: 1fr; }
  .chisto-frr-ref .reviews-grid { grid-template-columns: 1fr; }
  .chisto-frr-ref .cta-inner { flex-direction: column; text-align: center; }
  .chisto-frr-ref .cta-actions { width: 100%; }
  .chisto-frr-ref .chisto-frr-floating-cta { display: flex; justify-content: center; }
  .chisto-frr-ref .chisto-frr-container { padding: 0 16px; }
  .chisto-frr-ref .btn { padding: 13px 20px; font-size: 13px; }
}
@media (max-width: 600px) {
  .chisto-frr-ref .chisto-frr-ba-row { grid-template-columns: 1fr; }
}
