/* ===== ALPA TEST PAGE ===== */
:root{
  --brand-1: #631af4;
  --accent: #0ea5e9;
  --logo-blue: #053141; /* тёмно-синий/сине-зелёный — под логотип */
  --ring: #e6eef8;
  --bg: #f7fbff;
}

/* ===== BACKGROUND ===== */
html, body {
  height: 100%;
}

body {
  background-image: url("/static/assets/bg.png"); 
  background-size: cover;          
  background-position: center top; 
  background-repeat: no-repeat;
  background-attachment: fixed;    

  margin: 0;
}
/* ===== BACKGROUND ===== */

/* ===== HERO===== */

.hero {
  width: 100%;
  min-height: 60vh;              /* ВЫСОТА */
  display: flex;
  align-items: center;
  
}

.hero-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 80px 40px;

  display: grid;
  grid-template-columns: 1.1fr 1fr;
  align-items: center;
  gap: 80px;
}

/* ЛЕВАЯ ЧАСТЬ */
.hero-left {
  max-width: 560px;
}

.hero-eyebrow {
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #475569;
  margin-bottom: 18px;
  display: block;
}

.hero-text {
  font-family: "Montserrat", sans-serif;
  font-size: 18px;
  line-height: 1.7;
  color: #334155;
  margin: 0 0 32px;
  max-width: 620px;
}

.hero-title {
  font-family: "Playfair Display", serif;
  font-size: 56px;
  line-height: 1.08;
  color: #0f172a;
  margin-bottom: 24px;
}

/* КНОПКА */
.hero-btn {
  display: inline-block;
  padding: 16px 36px;
  background: #2563eb;
  color: #fff;
  border-radius: 14px;
  font-weight: 600;
  text-decoration: none;
}

/* ПРАВАЯ ЧАСТЬ */
.hero-right {
  position: relative;
}

.hero-image {
  height: 70vh;        /* было меньше */
  max-height: 720px;
  transform: translateX(40px); /* эффект выхода за сетку */
}


/* ===== MOBILE ===== */
@media (max-width: 768px) {
  .hero {
    min-height: auto;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    padding: 48px 20px;
    text-align: center;
  }

  .hero-title {
    font-size: 28px;
  }

  .hero-right {
    display: none;
  }

  .hero-image {
    height: auto;
    max-width: 300px;
  }
}

/* ===== HERO===== */

/* ===== ALPA ACCORDION ===== */

.alpa-info{
  padding: 80px 0;
  background: #fff;
}

.alpa-container{
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 16px;
}

.alpa-title{
  font-family: "Playfair Display", serif;
  font-size: 34px;
  line-height: 1.1;
  color: #0f172a;
  margin-bottom: 40px;
}

.alpa-accordion{
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.alpa-item{
  border-radius: 18px;
  overflow: hidden;
  background: rgba(255,255,255,.92);
  border: 1px solid #dbe7f5;
  box-shadow: 0 10px 35px rgba(15,23,42,.08);
}

.alpa-header{
  width: 100%;
  border: none;
  cursor: pointer;

  display: flex;
  align-items: center;
  justify-content: space-between;

  padding: 8px 34px;

  background: linear-gradient(180deg,#28459d 0%, #0f4a86 100%);

  color: #ffffff;

  font-family: "Montserrat", sans-serif;
  font-size: 17px;
  font-weight: 700;
  text-align: left;
}

.alpa-header::after{
  content:"+";
  font-size: 34px;
  font-weight: 400;
  transition:.25s;
}

.alpa-item.active .alpa-header::after{
  content:"−";
}

.alpa-content{
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease;
  background: #ffffff;
}

.alpa-content-inner{
  padding: 34px;
}

.alpa-content p,
.alpa-content li{
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  line-height: 1.8;
  color: #334155;
}

.alpa-content ol,
.alpa-content ul{
  padding-left: 22px;
}

/* MOBILE */

@media(max-width:768px){

  .alpa-info{
    padding: 70px 0;
  }

  .alpa-title{
    font-size: 34px;
    margin-bottom: 32px;
  }

  .alpa-accordion{
    gap: 18px;
  }

  .alpa-item{
  width: 92%;
  margin: 0 auto;
}
  .alpa-header{
    min-height: 55px;
    padding: 0 26px;
    font-size: 18px;
    border-radius: 16px;
  }

  .alpa-header::after{
    font-size: 30px;
  }

  .alpa-content-inner{
    padding: 24px;
  }

  .alpa-content p,
  .alpa-content li{
    font-size: 15px;
    line-height: 1.7;
  }

}

/* ===== ALPA ACCORDION ===== */
/* ===== ALPA TEST PAGE ===== */
