/**
 * Уборка после потопа — [.chisto-fld-ref] (fld / chisto-fld).
 */
.chisto-fld-ref {
  --fld-blue: #0284c7;
  --fld-blue-light: #0ea5e9;
  --fld-blue-pale: #f0f9ff;
  --fld-blue-dark: #0c4a6e;
  --fld-navy: #1a365d;
  font-family: var(--font);
  color: var(--text);
}

.chisto-fld-ref *,
.chisto-fld-ref *::before,
.chisto-fld-ref *::after {
  box-sizing: border-box;
}

.chisto-fld-ref a {
  text-decoration: none;
  color: inherit;
}

.chisto-fld-ref .chisto-fld-container {
  width: 100%;
  max-width: 1220px;
  margin: 0 auto;
  padding: 0 28px;
}

/* ── HERO ── */
.chisto-fld-ref .fld-page-hero {
  min-height: 560px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  background: linear-gradient(148deg, #061b30 0%, #0a3a5c 45%, #0e6090 100%);
}

.chisto-fld-ref .fld-hero-water {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(14, 165, 233, 0.08) 0%, transparent 60%),
    radial-gradient(ellipse at 20% 80%, rgba(2, 132, 199, 0.12) 0%, transparent 50%);
  pointer-events: none;
}

.chisto-fld-ref .fld-hero-pattern {
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    -45deg,
    transparent,
    transparent 40px,
    rgba(255, 255, 255, 0.006) 40px,
    rgba(255, 255, 255, 0.006) 41px
  );
  pointer-events: none;
}

.chisto-fld-ref .fld-hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr min(380px, 100%);
  gap: 48px;
  align-items: center;
  padding: 72px 0 88px;
  width: 100%;
}

.chisto-fld-ref .fld-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(14, 165, 233, 0.2);
  border: 1px solid rgba(14, 165, 233, 0.4);
  border-radius: 100px;
  padding: 8px 20px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #7dd3fc;
  margin-bottom: 22px;
}

.chisto-fld-ref .fld-hero-title {
  font-size: clamp(28px, 4.2vw, 54px);
  font-weight: 900;
  line-height: 1.08;
  color: var(--white);
  margin: 0 0 20px;
}

.chisto-fld-ref .fld-hero-title .accent {
  color: #7dd3fc;
}

.chisto-fld-ref .fld-hero-desc {
  font-size: 16px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.72);
  max-width: 520px;
  margin: 0 0 28px;
}

.chisto-fld-ref .fld-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.chisto-fld-ref .fld-hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.chisto-fld-ref .fld-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 100px;
  padding: 7px 14px;
  font-size: 12px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.78);
}

.chisto-fld-ref .fld-pill__dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #7dd3fc;
}

/* Кнопки: chisto-buttons.css. Тёмный вариант — цвет страницы. */
.chisto-fld-ref .fld-btn--navy {
  background: var(--fld-navy);
}

/* ── FLOOD LEVELS CARD ── */
.chisto-fld-ref .fld-flood-card {
  background: rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(14, 165, 233, 0.3);
  border-radius: var(--r-lg);
  overflow: hidden;
}

.chisto-fld-ref .fld-flood-card__head {
  background: rgba(14, 165, 233, 0.2);
  border-bottom: 1px solid rgba(14, 165, 233, 0.2);
  padding: 16px 22px;
}

.chisto-fld-ref .fld-flood-card__title {
  font-size: 13px;
  font-weight: 800;
  color: var(--white);
}

.chisto-fld-ref .fld-flood-card__sub {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 2px;
}

.chisto-fld-ref .fld-flood-level {
  display: grid;
  grid-template-columns: 12px 1fr;
  column-gap: 14px;
  row-gap: 4px;
  align-items: start;
  padding: 13px 22px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.chisto-fld-ref .fld-flood-level__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  margin-top: 4px;
  grid-row: 1 / span 2;
  align-self: center;
}

.chisto-fld-ref .fld-flood-level__name {
  font-size: 13px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.85);
  grid-column: 2;
}

.chisto-fld-ref .fld-flood-level__note {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.5);
  grid-column: 2;
}

.chisto-fld-ref .fld-flood-card__foot {
  background: rgba(14, 165, 233, 0.15);
  border-top: 1px solid rgba(14, 165, 233, 0.2);
  padding: 14px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.chisto-fld-ref .fld-flood-card__foot-text {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.55);
}

/* ── SECTIONS ── */
.chisto-fld-ref .fld-section {
  padding: 88px 0;
}

.chisto-fld-ref .fld-section--gray {
  background: var(--off);
}

.chisto-fld-ref .fld-section--dark {
  background: var(--navy);
}

.chisto-fld-ref .fld-section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.chisto-fld-ref .fld-section-label::before {
  content: "";
  width: 24px;
  height: 2px;
  background: var(--gold);
}

.chisto-fld-ref .fld-section-label--water {
  color: #7dd3fc;
}

.chisto-fld-ref .fld-section-label--water::before {
  background: #7dd3fc;
}

.chisto-fld-ref .fld-section-label--gold {
  color: #e8cc5a;
}

.chisto-fld-ref .fld-section-label--gold::before {
  background: #e8cc5a;
}

.chisto-fld-ref .fld-section-title {
  font-size: clamp(24px, 3.5vw, 42px);
  font-weight: 800;
  line-height: 1.15;
  color: var(--navy);
  margin: 0 0 16px;
}

.chisto-fld-ref .fld-section-title--white {
  color: var(--white);
}

.chisto-fld-ref .fld-section-sub {
  font-size: 16px;
  line-height: 1.75;
  color: var(--muted);
  max-width: 600px;
  margin: 0;
}

/* ── DAMAGE TYPES GRID ── */
.chisto-fld-ref .fld-damage-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 40px;
}

.chisto-fld-ref .fld-damage-card {
  background: var(--white);
  border: 1px solid var(--g200);
  border-radius: var(--r-md);
  padding: 26px 22px;
  transition: var(--tr);
}

.chisto-fld-ref .fld-damage-card:hover {
  border-color: var(--fld-blue);
  box-shadow: 0 8px 32px rgba(2, 132, 199, 0.12);
  transform: translateY(-4px);
}

.chisto-fld-ref .fld-damage-card__icon {
  font-size: 36px;
  margin-bottom: 12px;
}

.chisto-fld-ref .fld-damage-card__title {
  font-size: 15px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 8px;
}

.chisto-fld-ref .fld-damage-card__desc {
  font-size: 13px;
  line-height: 1.7;
  color: var(--muted);
  margin-bottom: 12px;
}

.chisto-fld-ref .fld-damage-card__method {
  display: inline-flex;
  font-size: 12px;
  font-weight: 700;
  color: var(--fld-blue);
  background: var(--fld-blue-pale);
  padding: 3px 10px;
  border-radius: 4px;
}

/* ── STAGES ── */
.chisto-fld-ref .fld-stages {
  margin-top: 40px;
  border-radius: var(--r-md);
  overflow: hidden;
  box-shadow: var(--sh-md);
}

.chisto-fld-ref .fld-stage {
  display: grid;
  grid-template-columns: 80px 1fr auto;
  gap: 20px;
  align-items: center;
  padding: 22px 28px;
  background: var(--white);
  border-bottom: 1px solid var(--g100);
  transition: var(--tr);
}

.chisto-fld-ref .fld-stage:last-child {
  border-bottom: none;
}

.chisto-fld-ref .fld-stage:hover {
  background: var(--fld-blue-pale);
}

.chisto-fld-ref .fld-stage__num {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--fld-blue-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 900;
  color: var(--fld-blue);
}

.chisto-fld-ref .fld-stage:hover .fld-stage__num {
  background: var(--fld-blue);
  color: var(--white);
}

.chisto-fld-ref .fld-stage__title {
  font-size: 16px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 4px;
}

.chisto-fld-ref .fld-stage__desc {
  font-size: 13px;
  line-height: 1.65;
  color: var(--muted);
  margin: 0;
}

.chisto-fld-ref .fld-stage__badge {
  font-size: 12px;
  font-weight: 700;
  color: var(--fld-blue);
  background: var(--fld-blue-pale);
  padding: 5px 14px;
  border-radius: 100px;
  white-space: nowrap;
}

.chisto-fld-ref .fld-stage:hover .fld-stage__badge {
  background: var(--fld-blue);
  color: var(--white);
}

/* ── DRYING SECTION ── */
.chisto-fld-ref .fld-drying-section {
  background: linear-gradient(135deg, var(--navy), var(--fld-blue-dark));
}

.chisto-fld-ref .fld-drying-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.chisto-fld-ref .fld-drying-title {
  font-size: clamp(26px, 3.5vw, 42px);
  font-weight: 800;
  line-height: 1.15;
  color: var(--white);
  margin: 0 0 16px;
}

.chisto-fld-ref .fld-drying-lead {
  font-size: 16px;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.72);
  margin: 0 0 28px;
}

.chisto-fld-ref .fld-drying-feats {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.chisto-fld-ref .fld-drying-feat {
  display: flex;
  gap: 14px;
  padding: 16px 18px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--r-md);
}

.chisto-fld-ref .fld-drying-feat__icon {
  font-size: 22px;
  flex-shrink: 0;
}

.chisto-fld-ref .fld-drying-feat__title {
  font-size: 14px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 3px;
}

.chisto-fld-ref .fld-drying-feat__desc {
  font-size: 12px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
}

.chisto-fld-ref .fld-drying-visual {
  text-align: center;
}

.chisto-fld-ref .fld-drying-circle {
  width: 200px;
  height: 200px;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  border: 2px solid rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.chisto-fld-ref .fld-drying-circle__emoji {
  font-size: 80px;
}

.chisto-fld-ref .fld-drying-circle__ring {
  position: absolute;
  inset: -12px;
  border-radius: 50%;
  border: 2px solid rgba(14, 165, 233, 0.3);
  animation: fld-spin 8s linear infinite;
}

@keyframes fld-spin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

.chisto-fld-ref .fld-drying-stat {
  font-size: 13px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.6;
}

/* ── GUARANTEES ── */
.chisto-fld-ref .fld-g-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 40px;
}

.chisto-fld-ref .fld-g-tile {
  padding: 32px 24px;
  text-align: center;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--r-md);
  transition: var(--tr);
}

.chisto-fld-ref .fld-g-tile:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(212, 175, 55, 0.35);
}

.chisto-fld-ref .fld-g-tile__icon {
  font-size: 36px;
  margin-bottom: 12px;
}

.chisto-fld-ref .fld-g-tile__title {
  font-size: 15px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 8px;
}

.chisto-fld-ref .fld-g-tile__desc {
  font-size: 13px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
}

/* ── REVIEWS ── */
.chisto-fld-ref .fld-reviews-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 8px;
}

.chisto-fld-ref .fld-reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 28px;
}

.chisto-fld-ref .fld-rev {
  background: var(--white);
  border: 1px solid var(--g200);
  border-radius: var(--r-md);
  padding: 24px 20px;
  position: relative;
}

.chisto-fld-ref .fld-rev::before {
  content: "❝";
  position: absolute;
  top: 12px;
  right: 16px;
  font-size: 44px;
  color: var(--g100);
  line-height: 1;
  font-family: Georgia, serif;
}

.chisto-fld-ref .fld-rev__stars {
  color: var(--gold);
  font-size: 14px;
  margin-bottom: 10px;
}

.chisto-fld-ref .fld-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-fld-ref .fld-rev__author {
  display: flex;
  gap: 11px;
  align-items: center;
  padding-top: 12px;
  border-top: 1px solid var(--g100);
}

.chisto-fld-ref .fld-rev__avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
}

.chisto-fld-ref .fld-rev__name {
  font-size: 13px;
  font-weight: 800;
  color: var(--navy);
}

.chisto-fld-ref .fld-rev__meta {
  font-size: 11px;
  color: var(--g500);
}

/* ── FAQ ── */
.chisto-fld-ref .fld-faq-list {
  max-width: 780px;
  margin: 32px auto 0;
}

.chisto-fld-ref .fld-faq-i {
  border: 1px solid var(--g200);
  border-radius: var(--r-sm);
  margin-bottom: 10px;
  background: var(--white);
  overflow: hidden;
}

.chisto-fld-ref .fld-faq-i.fld-faq-i--open {
  border-color: var(--navy);
}

.chisto-fld-ref .fld-faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 17px 22px;
  font-size: 15px;
  font-weight: 800;
  color: var(--navy);
  text-align: left;
  background: var(--white);
  border: none;
  font-family: var(--font);
  cursor: pointer;
}

.chisto-fld-ref .fld-faq-i.fld-faq-i--open .fld-faq-q {
  background: #f0f9ff;
}

.chisto-fld-ref .fld-faq-ico {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--off);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  flex-shrink: 0;
  transition: var(--tr);
}

.chisto-fld-ref .fld-faq-i.fld-faq-i--open .fld-faq-ico {
  background: var(--gold);
  transform: rotate(45deg);
}

.chisto-fld-ref .fld-faq-a {
  padding: 0 22px 18px;
  font-size: 14px;
  line-height: 1.8;
  color: var(--muted);
}

.chisto-fld-ref .fld-faq-a[hidden] {
  display: none !important;
}

.chisto-fld-ref .fld-faq-a p {
  margin: 0;
}

/* ── CTA ── */
.chisto-fld-ref .fld-cta {
  background: linear-gradient(135deg, var(--fld-blue-dark), var(--fld-blue));
  padding: 72px 0;
}

.chisto-fld-ref .fld-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.chisto-fld-ref .fld-cta-title {
  font-size: clamp(24px, 3vw, 40px);
  font-weight: 900;
  color: var(--white);
  line-height: 1.15;
  margin: 0;
}

.chisto-fld-ref .fld-cta-sub {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.8);
  margin: 10px 0 0;
}

.chisto-fld-ref .fld-cta-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.chisto-fld-ref .fld-cta-phone {
  font-size: 28px;
  font-weight: 900;
  color: var(--white);
  text-align: center;
}

.chisto-fld-ref .fld-cta-phone:hover {
  color: #e8cc5a;
}

.chisto-fld-ref .fld-cta-note {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.65);
  text-align: center;
  margin: 0;
}

/* ── FLOATING CTA ── */
.chisto-fld-ref .chisto-fld-floating-cta {
  display: none;
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 100;
}

/* ── REVEAL ANIMATIONS ── */
.chisto-fld-ref .chisto-fld-reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.chisto-fld-ref .chisto-fld-reveal--visible {
  opacity: 1;
  transform: translateY(0);
}

.chisto-fld-ref .chisto-fld-reveal--d1 { transition-delay: 0.1s; }
.chisto-fld-ref .chisto-fld-reveal--d2 { transition-delay: 0.2s; }
.chisto-fld-ref .chisto-fld-reveal--d3 { transition-delay: 0.3s; }
.chisto-fld-ref .chisto-fld-reveal--d4 { transition-delay: 0.4s; }

/* ── RESPONSIVE ── */
@media (max-width: 1100px) {
  .chisto-fld-ref .fld-hero-inner {
    grid-template-columns: 1fr;
  }
  .chisto-fld-ref .fld-drying-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 900px) {
  .chisto-fld-ref .fld-damage-grid {
    grid-template-columns: 1fr 1fr;
  }
  .chisto-fld-ref .fld-g-row {
    grid-template-columns: 1fr 1fr;
  }
  .chisto-fld-ref .fld-reviews-grid {
    grid-template-columns: 1fr 1fr;
  }
  .chisto-fld-ref .fld-stage {
    grid-template-columns: 60px 1fr;
  }
  .chisto-fld-ref .fld-stage__badge {
    display: none;
  }
}

@media (max-width: 768px) {
  .chisto-fld-ref .fld-damage-grid {
    grid-template-columns: 1fr;
  }
  .chisto-fld-ref .fld-g-row {
    grid-template-columns: 1fr;
  }
  .chisto-fld-ref .fld-reviews-grid {
    grid-template-columns: 1fr;
  }
  .chisto-fld-ref .fld-cta-inner {
    flex-direction: column;
    text-align: center;
  }
  .chisto-fld-ref .chisto-fld-floating-cta {
    display: flex;
    justify-content: center;
  }
  .chisto-fld-ref .chisto-fld-container {
    padding: 0 16px;
  }
  .chisto-fld-ref .fld-stage {
    grid-template-columns: 1fr;
    gap: 12px;
  }
}
