/* css/foil.css */

/* ─── HERO ─── */
.fol-hero {
  background: var(--surface);
  padding: 40px 0;
}

.fol-hero__card {
  background: var(--white);
  border-radius: var(--r-lg);
  padding: 52px 56px;
  display: flex;
  align-items: center;
  gap: 48px;
}

.fol-hero__body { flex: 1 1 0; min-width: 0; }

.fol-hero__img-wrap { flex: 0 0 54%; max-width: 580px; }
.fol-hero__img-wrap img { width: 100%; height: auto; display: block; }

.fol-hero__title {
  font-size: clamp(22px, 3vw, 36px);
  font-weight: 800;
  line-height: 1.15;
  color: var(--ink);
  margin-bottom: 14px;
}

.fol-hero__sub {
  font-size: 17px;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 24px;
}

.fol-hero__list {
  list-style: none;
  padding: 0;
  margin: 0 0 32px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.fol-hero__list li {
  font-size: 15px;
  color: var(--ink);
  padding-left: 22px;
  position: relative;
  line-height: 1.5;
}

.fol-hero__list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 7px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--red);
}

.fol-hero__btns { display: flex; gap: 12px; flex-wrap: wrap; }

/* ─── ЧТО МОЖНО ВЫДЕЛИТЬ ─── */
.fol-what { padding: 0 0 40px; }

.fol-what__card {
  background: var(--white);
  border-radius: var(--r-lg);
  padding: 48px 56px;
}

.fol-what__title {
  font-size: clamp(20px, 2.5vw, 28px);
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 24px;
  line-height: 1.2;
}

.fol-what__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 48px;
}

.fol-what__list li {
  font-size: 15px;
  color: var(--ink);
  padding-left: 20px;
  position: relative;
  line-height: 1.5;
}

.fol-what__list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 7px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--red);
}

/* ─── СПОСОБЫ НАНЕСЕНИЯ ─── */
.fol-methods { padding: 0 0 40px; }

.fol-methods__head {
  margin-bottom: 28px;
}

.fol-methods__title {
  font-size: clamp(20px, 2.5vw, 30px);
  font-weight: 800;
  color: var(--ink);
}

.fol-methods__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.fol-method {
  background: var(--white);
  border-radius: var(--r-lg);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.fol-method__img {
  width: 200px;
  height: 200px;
  object-fit: contain;
  display: block;
  margin: 0 auto 8px;
}

.fol-method__tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  color: var(--red);
  background: var(--surface);
  border-radius: 6px;
  padding: 3px 8px;
  align-self: flex-start;
}

.fol-method__title {
  font-size: 17px;
  font-weight: 800;
  color: var(--ink);
  line-height: 1.25;
}

.fol-method__desc {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
}

.fol-method__adv-label {
  font-size: 11px;
  font-weight: 700;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.6px;
  border-top: 1px solid var(--border);
  padding-top: 14px;
  margin-top: 6px;
}

.fol-method__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 7px;
  flex: 1;
}

.fol-method__list li {
  font-size: 13px;
  color: var(--ink);
  padding-left: 18px;
  position: relative;
  line-height: 1.5;
}

.fol-method__list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 6px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--red);
}

.fol-method--accent {
  outline: 2px solid var(--red);
}

/* ─── 4 БЛОКА ПОСЛЕ HERO ─── */
.fol-pros { padding: 0 0 40px; }

.fol-pros__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.fol-pro {
  background: var(--white);
  border-radius: var(--r-lg);
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.fol-pro__icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: var(--surface);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--red);
  margin-bottom: 2px;
}

.fol-pro__title {
  font-size: 14px;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.35;
}

.fol-pro__text {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.55;
}

/* ─── КАК ПОДГОТОВИТЬ МАКЕТ ─── */
.fol-layout { padding: 0 0 40px; }

.fol-layout__card {
  background: var(--white);
  border-radius: var(--r-lg);
  padding: 48px 56px;
}

.fol-layout__title {
  font-size: clamp(20px, 2.5vw, 28px);
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 16px;
  line-height: 1.2;
}

.fol-layout__intro {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.65;
  margin-bottom: 24px;
  max-width: 700px;
}

.fol-layout__sub {
  font-size: 11px;
  font-weight: 700;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.6px;
  margin-bottom: 14px;
}

.fol-layout__list {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  column-count: 2;
  column-gap: 56px;
}

.fol-layout__list li {
  font-size: 14px;
  color: var(--ink);
  padding-left: 18px;
  position: relative;
  line-height: 1.55;
  break-inside: avoid;
  margin-bottom: 10px;
}

.fol-layout__list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 7px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--red);
}

.fol-layout__note {
  background: rgba(255, 0, 0, 0.06);
  border-left: 3px solid var(--red);
  border-radius: 0 8px 8px 0;
  padding: 14px 18px;
  font-size: 14px;
  color: var(--ink);
  line-height: 1.6;
}

/* ─── АДАПТИВ ─── */
@media (max-width: 900px) {
  .fol-hero__card     { padding: 36px 32px; gap: 32px; flex-direction: column; }
  .fol-hero__img-wrap { flex: none; width: 100%; max-width: 420px; margin: 0 auto; }
  .fol-what__card     { padding: 36px 32px; }
  .fol-layout__card   { padding: 36px 32px; }
}

@media (max-width: 860px) {
  .fol-methods__grid  { grid-template-columns: 1fr 1fr; }
  .fol-pros__grid     { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 680px) {
  .fol-what__list     { grid-template-columns: 1fr; }
  .fol-layout__list   { column-count: 1; }
}

@media (max-width: 560px) {
  .fol-hero__card { padding: 28px 24px; }
  .fol-hero__btns { flex-direction: column; }
  .fol-hero__btns .btn { width: 100%; text-align: center; }
  .fol-what__card   { padding: 28px 24px; }
  .fol-layout__card { padding: 28px 24px; }
  .fol-methods__grid { grid-template-columns: 1fr; }
}
