/* Promo page — визуально в стиле about.css / styles.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 */
  .promo-hero{
    background: white;
    padding: 3.25rem 0 2.5rem;
    text-align: center;
    border-bottom: 1px solid #e5e5e5;
  }
  
  .promo-hero-inner h1{
    font-size: 3rem;
    font-weight: 900;
    color: #1a1a1a;
    letter-spacing: 0.2px;
    margin: 0.75rem 0 0.75rem;
  }
  
  .promo-hero-inner p{
    font-size: 1.35rem;
    color: #6a6a6a;
    margin-bottom: 1.25rem;
  }
  
  .promo-badge{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.55rem 0.9rem;
    border-radius: 999px;
    font-weight: 800;
    font-size: 0.9rem;
    border: 1px solid #e5e5e5;
    background: #f8f9fa;
    color: #1a1a1a;
  }
  
  .promo-hero-cta{
    display: flex;
    gap: 0.75rem;
    justify-content: center;
    flex-wrap: wrap;
    margin: 1.25rem 0 1.5rem;
  }
  
  .promo-timer{
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
    max-width: 860px;
    margin: 0 auto;
  }
  
  .promo-timer-item{
    background: #fafafa;
    border: 1px solid #e5e5e5;
    border-radius: 12px;
    padding: 1rem;
  }
  
  .promo-timer-title{
    color: #6a6a6a;
    font-weight: 700;
    font-size: 0.85rem;
    margin-bottom: 0.25rem;
  }
  
  .promo-timer-value{
    color: #1a1a1a;
    font-weight: 900;
    font-size: 1.05rem;
  }
  
  /* CONTENT */
  .promo-content{
    padding: 2rem 0 3rem;
    background: #fafafa;
  }
  
  .promo-title{
    text-align: center;
    font-size: 2.25rem;
    color: #1a1a1a;
    margin: 2.75rem 0 1.5rem;
    font-weight: 900;
  }
  
  .promo-grid{
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.25rem;
  }
  
  .promo-card{
    background: white;
    border: 1px solid #e5e5e5;
    border-radius: 12px;
    padding: 1.5rem;
  }
  
  .promo-card h3{
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.15rem;
    font-weight: 900;
    color: #1a1a1a;
    margin-bottom: 0.75rem;
  }
  
  .promo-card p{
    color: #4a4a4a;
    margin: 0;
    line-height: 1.7;
  }
  
  .promo-icon{
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: #f8f9fa;
    border: 1px solid #e5e5e5;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }
  
  .promo-icon svg{
    width: 22px;
    height: 22px;
    fill: #1a1a1a;
  }
  
  /* STEPS */
  .promo-steps{
    max-width: 900px;
    margin: 0 auto;
    display: grid;
    gap: 1rem;
  }
  
  .promo-step{
    display: grid;
    grid-template-columns: 52px 1fr;
    gap: 1rem;
    background: white;
    border: 1px solid #e5e5e5;
    border-radius: 12px;
    padding: 1.25rem;
  }
  
  .promo-step-num{
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 1.25rem;
    color: #fff;
    background: #1a1a1a;
  }
  
  .promo-step-body h3{
    margin: 0 0 0.25rem;
    color: #1a1a1a;
    font-weight: 900;
    font-size: 1.1rem;
  }
  
  .promo-step-body p{
    margin: 0;
    color: #6a6a6a;
    line-height: 1.7;
  }
  
  /* CONDITIONS BOX */
  .promo-box{
    max-width: 900px;
    margin: 2rem auto 0;
    background: white;
    border: 1px solid #e5e5e5;
    border-radius: 12px;
    padding: 1.5rem;
  }
  
  .promo-box h3{
    margin: 0 0 0.75rem;
    font-weight: 900;
    color: #1a1a1a;
    font-size: 1.2rem;
  }
  
  .promo-list{
    margin: 0;
    padding-left: 1.2rem;
    color: #4a4a4a;
  }
  
  .promo-list li{ margin: 0.5rem 0; }
  
  /* CTA */
  .promo-cta{
    margin-top: 2.5rem;
  }
  
  .promo-cta-buttons{
    display: flex;
    gap: 0.75rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 1.25rem;
  }
  
  /* Responsive */
  @media (max-width: 1024px){
    .promo-grid{ grid-template-columns: 1fr; }
    .promo-timer{ grid-template-columns: 1fr; }
  }
  
  @media (max-width: 768px){
    .promo-hero-inner h1{ font-size: 2rem; }
    .promo-hero-inner p{ font-size: 1.1rem; }
    .promo-title{ font-size: 1.8rem; }
    .promo-step{ grid-template-columns: 44px 1fr; }
    .promo-step-num{
      width: 44px;
      height: 44px;
      border-radius: 12px;
    }
  }
