.hero-section{
  max-width:1120px;
  margin:0 auto;
  padding:72px 20px 64px;
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:48px;
  align-items:center;
  background:#ffffff;
}

.hero-content{
  display:flex;
  flex-direction:column;
  gap:24px;
  max-width:520px;
  background:transparent;
  padding:0;
}

.hero-text-container{display:flex;flex-direction:column;gap:12px}

.hero-text-container .hero-main-title{
  color:#0f172a;
  font-size:clamp(2.2rem,4vw,3.2rem);
  font-weight:800;
  line-height:1.1;
  margin:0;
}
.hero-highlight{color:var(--bg-hero)}

.hero-text-container .hero-price-info{
  display:flex;
  align-items:baseline;
  gap:12px;
  margin:0;
  font-size:1rem;
  color:#6b7280;
}

.hero-text-container .hero-price-info .hero-price{
  color:var(--bg-hero);
  font-size:clamp(2.6rem,5vw,3.6rem);
  font-weight:900;
}

.hero-image-container{
  border-radius:24px;
  overflow:hidden;
  box-shadow:0 24px 50px rgba(15,23,42,.18);
}

.hero-image-container .hero-main-image{
  width:100%;
  height:320px;
  object-fit:cover;
  display:block;
}

.hero-content .hero-btn-call{
  width:fit-content;
  background:var(--bg-hero);
  color:#ffffff;
  padding:.9rem 1.4rem;
  border-radius:12px;
  text-align:center;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:.6rem;
  font-weight:700;
  font-size:1rem;
  box-shadow:0 12px 28px rgba(54,170,167,.3);
  text-decoration:none;
}

.hero-form-container{
  background:#ffffff;
  padding:32px;
  border-radius:24px;
  max-width:460px;
  flex:0 1 420px;
  min-width:320px;
  border:1px solid var(--border-soft);
  box-shadow:0 20px 50px rgba(15,23,42,.12);
}

.hero-form-container .hero-form-title{
  color:#0f172a;
  font-size:1.5rem;
  margin-bottom:6px;
  margin-top:0;
  text-align:center;
  font-weight:700;
}

.hero-form-container .hero-form-subtitle{
  color:#6b7280;
  font-size:.85rem;
  margin-bottom:22px;
  text-align:center;
}

.hero-form-container .hero-form .hero-form-group{margin-bottom:14px;}

.hero-form-container .hero-form .hero-form-group .hero-label{
  display:block;
  margin-bottom:6px;
  color:#475569;
  font-size:.85rem;
  text-align:start;
  font-weight:600;
}

.hero-form-container .hero-form .hero-form-group .hero-input{
  width:100%;
  padding:12px 14px;
  border:1px solid var(--border-soft);
  border-radius:12px;
  font-size:.95rem;
  box-sizing:border-box;
  transition:border-color .2s ease, box-shadow .2s ease;
  background:#ffffff;
}

.hero-form-container .hero-form .hero-form-group .hero-input:focus{
  border-color:var(--bg-hero);
  box-shadow:0 0 0 3px rgba(54,170,167,.15);
  outline:none;
}

.hero-form-container .hero-form .hero-input::placeholder{color:#94a3b8;}

.hero-form-container .hero-form .hero-checkbox-group{
  display:flex;
  align-items:flex-start;
  gap:10px;
  margin-bottom:18px;
}

.hero-form-container .hero-form .hero-checkbox-group .hero-checkbox-label{
  color:#6b7280;
  font-size:.72rem;
  line-height:1.4;
  text-align:start;
}

.hero-form-container .hero-form .hero-checkbox-group .hero-checkbox-label .hero-link{
  color:var(--bg-hero);
  text-decoration:underline;
}

.hero-form-container .hero-form .hero-submit-button{
  width:100%;
  padding:14px;
  background:var(--bg-hero);
  color:#ffffff;
  border:none;
  border-radius:12px;
  font-size:.85rem;
  font-weight:700;
  cursor:pointer;
  transition:background-color .3s ease;
  text-transform:uppercase;
  letter-spacing:.08em;
  box-shadow:0 12px 28px rgba(54,170,167,.3);
}

.hero-form-container .hero-benefits{
  margin-top:20px;
  border-top:1px solid var(--border-soft);
  padding-top:16px;
}

.hero-form-container .hero-benefits .hero-benefit-item{
  color:#64748b;
  font-size:.75rem;
  margin-bottom:10px;
  display:flex;
  align-items:flex-start;
  gap:8px;
  text-align:start;
}

.hero-form-container .hero-benefits .hero-benefit-item .hero-check-icon{
  color:var(--bg-hero);
  font-size:1rem;
  font-weight:bold;
}

@media (max-width: 900px){
  .hero-section{
    grid-template-columns:1fr;
    gap:32px;
    padding:56px 16px 40px;
  }
  .hero-content{max-width:100%;}
  .hero-image-container .hero-main-image{height:260px;}
  .hero-content .hero-btn-call{width:100%;}
  .hero-form-container{max-width:100%;}
}

@media (max-width: 640px){
  .hero-text-container .hero-main-title{font-size:2rem;}
  .hero-text-container .hero-price-info .hero-price{font-size:2.4rem;}
  .hero-form-container{padding:24px;}
}
