/* Front styles for the landing-like Plan section */

/* Prevent wrong placement flash: hidden until JS moves into place */
.vti-plan-section.vti-plan-pending{
  visibility:hidden;
  opacity:0;
  transform: translateY(10px);
}
.vti-plan-section.vti-plan-ready{
  visibility:visible;
  opacity:1;
  transform:none;
  transition: opacity .25s ease, transform .25s ease;
}

.vti-plan-section{
  position:relative;
  padding:64px 18px;
  background: #05060a;
  background-image: var(--vti-bg);
  background-size: cover;
  background-position: center;
  overflow:hidden;
}
.vti-plan-overlay{
  position:absolute;inset:0;
  background: radial-gradient(circle at 20% 20%, rgba(255,255,255,.10), transparent 42%),
              linear-gradient(90deg, rgba(0,0,0,var(--vti-ov-strong,0.35)), rgba(0,0,0,var(--vti-ov-soft,0.22)));
}
.vti-plan-inner{
  position:relative;
  max-width: 1200px;
  margin:0 auto;
  display:grid;
  grid-template-columns: 1.15fr .85fr;
  gap:24px;
  align-items:center;
}
@media(max-width:980px){
  .vti-plan-inner{grid-template-columns:1fr}
}
.vti-plan-title{
  margin:0 0 12px;
  font-size: clamp(30px, 4vw, 56px);
  line-height:1.05;
  color:#fff;
  letter-spacing: .2px;
}
.vti-plan-text{
  color: rgba(255,255,255,.88);
  font-size: 18px;
  line-height:1.7;
  max-width: 62ch;
}
.vti-plan-icons{
  margin-top:18px;
  display:grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap:10px 14px;
  max-width: 560px;
}
@media(max-width:520px){
  .vti-plan-icons{grid-template-columns:1fr}
}
.vti-plan-icon{
  display:flex;
  gap:10px;
  align-items:center;
  padding:10px 12px;
  border:1px solid rgba(255,255,255,.14);
  border-radius:14px;
  background: rgba(0,0,0,.22);
  backdrop-filter: blur(6px);
}
.vti-plan-icon img{
  width:26px;height:26px;object-fit:contain;display:block;
  filter: drop-shadow(0 6px 10px rgba(0,0,0,.35));
}
.vti-icon-dot{
  width:10px;height:10px;border-radius:50%;
  background: rgba(255,255,255,.9);
  box-shadow: 0 0 0 6px rgba(255,255,255,.12);
}
.vti-plan-icon-label{
  color:#fff;
  font-weight:600;
}
.vti-plan-cta{
  margin-top:18px;
  display:flex;
  gap:10px;
  flex-wrap:wrap;
}
.vti-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding: 12px 16px;
  border-radius: 14px;
  text-decoration:none;
  font-weight:700;
  border: 1px solid rgba(255,255,255,.18);
  transition: transform .12s ease, opacity .12s ease;
  min-width: 140px;
}
.vti-btn:hover{transform: translateY(-1px);opacity:.98}
.vti-btn-primary{
  background: #fff;
  color:#000;
}
.vti-btn-ghost{
  background: rgba(0,0,0,.25);
  color:#fff;
}
.vti-plan-side-frame{
  max-width: 420px;
  margin-inline-start:auto;
  border-radius: 24px;
  overflow:hidden;
  border: 1px solid rgba(255,255,255,.18);
  box-shadow: 0 22px 60px rgba(0,0,0,.45);
  transform: rotate(1deg);
}
.vti-plan-side-frame img{
  width:100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  display:block;
}