/* coupon_200.css — цветовая гамма как в рассрочке, но блоки свои */

.breadcrumb {
  background: #f8f9fa;
  padding: 1rem 0;
  margin-top: 70px;
  border-bottom: 1px solid #e5e5e5;
}

.breadcrumb-nav {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
}

.breadcrumb-nav a {
  color: #6a6a6a;
  text-decoration: none;
  transition: color 0.3s ease;
}

.breadcrumb-nav a:hover { color: #1a1a1a; }

.current { color: #1a1a1a; font-weight: 500; }

/* Hero секция */
.cup-hero {
  background: #fff;
  padding: 3rem 0 3rem;
  text-align: center;
  border-bottom: 1px solid #e5e5e5;
}

.cup-badge {
  display: inline-block;
  background: #1a1a1a;
  color: #fff;
  padding: 0.35rem 1rem;
  border-radius: 30px;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  margin-bottom: 1rem;
}

.cup-hero-inner h1 {
  font-size: 3.2rem;
  font-weight: 800;
  color: #1a1a1a;
  margin: 0.5rem 0 0.75rem;
  line-height: 1.2;
}

.cup-hero-inner h1 span {
  color: #6a6a6a;
  font-weight: 400;
  display: block;
  font-size: 2rem;
}

.cup-hero-inner p {
  font-size: 1.3rem;
  color: #6a6a6a;
  margin-bottom: 2.5rem;
}

.cup-stats {
  display: flex;
  justify-content: center;
  gap: 2.5rem;
  max-width: 800px;
  margin: 0 auto;
}

.cup-stat {
  flex: 1;
  background: #f8f9fa;
  border: 1px solid #e5e5e5;
  border-radius: 20px;
  padding: 1.5rem 1rem;
  transition: transform 0.2s;
}

.cup-stat:hover {
  transform: translateY(-5px);
  border-color: #ccc;
}

.cup-stat__value {
  font-size: 2.5rem;
  font-weight: 900;
  color: #1a1a1a;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.cup-stat__label {
  font-size: 1rem;
  color: #4a4a4a;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.cup-stat__note {
  font-size: 0.85rem;
  color: #8a8a8a;
}

/* Контент */
.cup-content {
  padding: 3rem 0 4rem;
  background: #fafafa;
}

.cup-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: #1a1a1a;
  margin: 0;
}

.cup-title span {
  color: #6a6a6a;
  font-weight: 400;
}

.cup-subtitle {
  font-size: 1.2rem;
  color: #6a6a6a;
  margin: 0.5rem 0 2rem;
}

/* Условия — нестандартная сетка */
.cup-conditions-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.cup-conditions-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-bottom: 4rem;
}

.cup-condition {
  background: #fff;
  border: 1px solid #e5e5e5;
  border-radius: 24px;
  padding: 2rem 1.5rem;
  position: relative;
  transition: all 0.2s;
}

.cup-condition:hover {
  border-color: #1a1a1a;
  box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}

.cup-condition--primary {
  border-top: 4px solid #1a1a1a;
}

.cup-condition--secondary {
  border-bottom: 4px solid #1a1a1a;
}

.cup-condition__icon {
  width: 60px;
  height: 60px;
  background: #f8f9fa;
  border: 1px solid #e5e5e5;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.cup-condition__icon svg {
  fill: #1a1a1a;
}

.cup-condition h3 {
  font-size: 1.25rem;
  font-weight: 800;
  color: #1a1a1a;
  margin-bottom: 0.75rem;
}

.cup-condition p {
  color: #4a4a4a;
  line-height: 1.5;
  margin-bottom: 1.5rem;
}

.cup-condition__tag {
  display: inline-block;
  background: #f8f9fa;
  border: 1px solid #e5e5e5;
  padding: 0.35rem 1rem;
  border-radius: 30px;
  font-size: 0.75rem;
  font-weight: 700;
  color: #6a6a6a;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Пример — горизонтальный */
.cup-example-wrapper {
  background: #fff;
  border: 1px solid #e5e5e5;
  border-radius: 32px;
  padding: 2.5rem;
  margin: 3rem 0;
}

.cup-example-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.cup-example-content {
  display: flex;
  gap: 3rem;
  align-items: center;
}

.cup-example-visual {
  flex: 1.5;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.cup-example-step {
  flex: 1;
  background: #f8f9fa;
  border: 1px solid #e5e5e5;
  border-radius: 20px;
  padding: 1.25rem 1rem;
  text-align: center;
  transition: transform 0.2s;
}

.cup-example-step:hover {
  transform: translateY(-3px);
  border-color: #1a1a1a;
}

.cup-example-step--result {
  background: #1a1a1a;
  border-color: #1a1a1a;
}

.cup-example-step--result .cup-example-step__number,
.cup-example-step--result strong,
.cup-example-step--result p {
  color: #fff;
}

.cup-example-step__number {
  width: 36px;
  height: 36px;
  background: #fff;
  border: 1px solid #e5e5e5;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  margin: 0 auto 1rem;
  color: #1a1a1a;
}

.cup-example-step--result .cup-example-step__number {
  background: #fff;
  color: #1a1a1a;
}

.cup-example-step__content strong {
  display: block;
  font-size: 1rem;
  margin-bottom: 0.25rem;
  color: #1a1a1a;
}

.cup-example-step__content p {
  font-size: 0.9rem;
  color: #6a6a6a;
  margin: 0;
}

.cup-example-arrow {
  font-size: 2rem;
  color: #ccc;
  font-weight: 300;
}

.cup-example-card {
  flex: 1;
  background: #f8f9fa;
  border: 1px solid #e5e5e5;
  border-radius: 24px;
  padding: 1.5rem;
}

.cup-example-card__header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.cup-example-card__badge {
  background: #1a1a1a;
  color: #fff;
  padding: 0.25rem 1rem;
  border-radius: 30px;
  font-size: 0.8rem;
  font-weight: 700;
}

.cup-example-card__header h4 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0;
}

.cup-example-card__price {
  text-align: center;
  margin-bottom: 1.5rem;
}

.cup-example-card__price-old {
  font-size: 1.5rem;
  color: #aaa;
  text-decoration: line-through;
  margin-bottom: 0.5rem;
}

.cup-example-card__price-new {
  font-size: 3rem;
  font-weight: 900;
  color: #1a1a1a;
  line-height: 1;
}

.cup-example-card__saving {
  display: flex;
  justify-content: space-between;
  padding: 1rem;
  background: #fff;
  border: 1px solid #e5e5e5;
  border-radius: 16px;
  font-weight: 700;
}

.cup-example-card__saving strong {
  color: #00a97c;
  font-size: 1.2rem;
}

/* Преимущества — нестандартная сетка */
.cup-benefits-header {
  text-align: center;
  margin: 4rem 0 2.5rem;
}

.cup-benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.cup-benefit {
  background: #fff;
  border: 1px solid #e5e5e5;
  border-radius: 24px;
  padding: 2rem 1.5rem;
  position: relative;
  transition: all 0.2s;
  overflow: hidden;
}

.cup-benefit:hover {
  border-color: #1a1a1a;
  transform: translateY(-5px);
}

.cup-benefit::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 80px;
  height: 80px;
  background: #f8f9fa;
  border-radius: 0 0 0 80px;
  z-index: 0;
}

.cup-benefit__number {
  position: relative;
  z-index: 1;
  font-size: 2.5rem;
  font-weight: 900;
  color: #e5e5e5;
  line-height: 1;
  margin-bottom: 1rem;
}

.cup-benefit h3 {
  position: relative;
  z-index: 1;
  font-size: 1.3rem;
  font-weight: 800;
  color: #1a1a1a;
  margin-bottom: 0.75rem;
}

.cup-benefit p {
  position: relative;
  z-index: 1;
  color: #6a6a6a;
  line-height: 1.5;
  margin: 0;
}

/* CTA — как в рассрочке */
.cta-section{
  margin-top: 3rem;
  background: #1a1a1a;
  border-radius: 16px;
  padding: 2.5rem 1.5rem;
  border: 1px solid #333;
}

.cta-inner{
  text-align: center;
  max-width: 820px;
  margin: 0 auto;
}

.cta-title{
  color: #fff;
  font-size: 2rem;
  font-weight: 900;
  margin-bottom: 0.75rem;
}

.cta-text{
  color: rgba(255,255,255,0.9);
  font-size: 1.15rem;
  margin-bottom: 1.25rem;
}

/* Кнопка — повтор стиля */
.btn-white{
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background: #fff;
  color: #111;
  border: 1px solid rgba(0,0,0,.14);
  border-radius: 14px;
  box-shadow: 0 10px 22px rgba(0,0,0,.10), 0 1px 0 rgba(255,255,255,.9) inset;
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.btn-white::after{
  content:"";
  position:absolute;
  inset:0;
  pointer-events:none;
  z-index: 0;
  background: linear-gradient(135deg, rgba(0,0,0,.035) 0%, rgba(0,0,0,0) 40%, rgba(255,255,255,.55) 65%, rgba(255,255,255,0) 100%);
  opacity: .45;
}

.btn-white::before{
  content:"";
  position:absolute;
  top:-70%;
  left:-60%;
  width: 70%;
  height: 260%;
  pointer-events:none;
  z-index: 0;
  background: linear-gradient(115deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0) 42%, rgba(0,0,0,.06) 49%, rgba(255,255,255,.95) 52%, rgba(0,0,0,.05) 56%, rgba(0,0,0,0) 68%, rgba(0,0,0,0) 100%);
  filter: blur(6px);
  opacity: 0;
  transform: translateX(-160%) rotate(14deg);
  transition: transform .85s cubic-bezier(.2,.85,.2,1), opacity .22s ease;
}

.btn-white .shine-line{
  position:absolute;
  inset:-80% auto -80% -60%;
  width: 34%;
  pointer-events:none;
  z-index: 0;
  background: linear-gradient(115deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0) 40%, rgba(255,255,255,.95) 50%, rgba(255,255,255,0) 60%, rgba(255,255,255,0) 100%);
  filter: blur(0.8px);
  opacity: 0;
  transform: translateX(-160%) rotate(14deg);
  transition: transform .78s cubic-bezier(.2,.85,.2,1), opacity .18s ease;
}

.btn-white > *{ position: relative; z-index: 1; }

.button{
  display: inline-block;
  padding: 1rem 2rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  font-size: 1rem;
}

@media (prefers-reduced-motion: reduce){
  .btn-white::before,
  .btn-white .shine-line{ display:none; }
}

/* Responsive */
@media (max-width: 1200px){
  .cup-conditions-grid { grid-template-columns: repeat(2, 1fr); }
  .cup-example-content { flex-direction: column; }
  .cup-example-visual { flex-wrap: wrap; justify-content: center; }
  .cup-example-arrow { display: none; }
}

@media (max-width: 768px){
  .cup-hero-inner h1 { font-size: 2.2rem; }
  .cup-hero-inner h1 span { font-size: 1.5rem; }
  .cup-stats { flex-direction: column; gap: 1rem; }
  .cup-conditions-grid { grid-template-columns: 1fr; }
  .cup-benefits-grid { grid-template-columns: 1fr; }
  .cup-title { font-size: 2rem; }
  .cup-example-wrapper { padding: 1.5rem; }
}