.photo-container {
  max-width: 1200px;
  margin: auto;
  padding: 30px 20px;
}

/* HERO */
.photo-hero {
  background: linear-gradient(180deg, #FFFFFF 0%, #F6F8FB 100%);
}

.photo-badge {
  display: inline-flex;
  gap: 8px;
  background: #EEF2FF;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 13px;
  margin-bottom: 20px;
}

.photo-hero h1 {
  font-size: 42px;
  line-height: 1.2;
}

.photo-hero h1 span {
  color: #5A50C8;
}

.photo-sub {
  margin-top: 20px;
  font-size: 18px;
  color: #64748B;
  max-width: 600px;
}

/* BUTTON */
.photo-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;

  background: linear-gradient(135deg, #2F7D6B, #38A169);
  color: #fff;

  padding: 14px 26px;
  border-radius: 12px;
  font-weight: 600;
  text-decoration: none;

  transition: all 0.25s ease;
  box-shadow: 0 10px 25px rgba(47, 125, 107, 0.25);
  margin-bottom: 20px;
}

.photo-btn-primary:hover {
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 18px 40px rgba(47, 125, 107, 0.35);
}

.photo-btn-primary.large {
  padding: 18px 32px;
  font-size: 18px;
}

/* GRID */
.photo-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

/* CARDS */
.photo-card,
.photo-feature {
  background: #fff;
  padding: 24px;
  border-radius: 16px;
  border: 1px solid #E2E8F0;
  transition: 0.3s;
}

.photo-card:hover,
.photo-feature:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
}

/* STEPS */
.photo-steps {
  display: flex;
  gap: 20px;
  margin-top: 40px;
}

.photo-step {
  flex: 1;
  background: #fff;
  padding: 24px;
  border-radius: 16px;
  border: 1px solid #E2E8F0;
  text-align: center;
}

/* CASE */
.photo-case-card {
  max-width: 700px;
  margin: auto;
  background: #fff;
  padding: 30px;
  border-radius: 16px;
  border: 1px solid #E2E8F0;
}

.photo-divider {
  height: 1px;
  background: #E2E8F0;
  margin: 20px 0;
}

.photo-highlight {
  font-weight: 600;
  color: #2F7D6B;
}

.photo-result {
  background: #E6F4F1;
  padding: 16px;
  border-radius: 12px;
}

/* FAQ */
.photo-faq-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.photo-faq-item {
  background: #fff;
  border: 1px solid #E2E8F0;
  padding: 18px;
  border-radius: 12px;
}

.photo-faq-q {
  font-weight: 600;
  display: flex;
  gap: 8px;
  margin-bottom: 10px;
}

.photo-faq-a {
  color: #475569;
}

/* FINAL */
.photo-final {
  text-align: center;
  background: #F6F8FB;
}

/* ADAPTIVE */
@media (max-width: 768px) {
  .photo-grid-3 {
    grid-template-columns: 1fr;
  }

  .photo-steps {
    flex-direction: column;
  }

  .photo-hero h1 {
    font-size: 28px;
  }
}

a.prr-link {
    color: #4B42AA;
    text-decoration: none;
    padding-bottom: 1px;
}

/* =========================
   OUTER BLOCK (фон)
========================= */

.crosslink-block {
  width: 100%;
  background: #F6F8FB;
  padding: 30px 0;
  margin-top: 40px;
}

/* =========================
   INNER LAYOUT (ВАЖНО!)
   используем твой дизайн-container
========================= */

.design-container {
    max-width: 1200px;
    margin: auto;
    padding: 30px 20px;
	border-top: 1px solid #E2E8F0;
    border-bottom: 1px solid #E2E8F0;
}

.crosslink-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

/* =========================
   TEXT BLOCK
========================= */

.crosslink-text {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  max-width: 750px;
}

.crosslink-text h3 {
  margin: 0;
  font-size: 16px;
  color: #0F172A;
}

.crosslink-text p {
  margin: 4px 0 0;
  font-size: 13px;
  color: #64748B;
  line-height: 1.4;
}

/* =========================
   BUTTON (в стиле твоего сайта)
========================= */

.crosslink-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;

  background: linear-gradient(135deg, #5A50C8, #7C3AED);
  color: #fff;

  padding: 12px 18px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 600;

  transition: all 0.25s ease;
  box-shadow: 0 10px 25px rgba(90,80,200,0.25);

  white-space: nowrap;
}

.crosslink-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 40px rgba(90,80,200,0.35);
}

/* =========================
   MOBILE
========================= */

@media (max-width: 768px) {

  .crosslink-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .crosslink-btn {
    width: 90%;
    justify-content: center;
  }

  .crosslink-text {
    max-width: 100%;
  }
}