/* Page-specific styles only. Shared styles are in ../style.css. */


/* HERO */

.hero {
  background: var(--t950);
  padding: 80px 48px 96px;
  position: relative;
  overflow: hidden;
  background-image: url("../../images/vlaga-i-budj.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}


/* STEPS / PROCESS LIST */

.steps-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 20px;
}

.step-item {
  display: flex;
  gap: 20px;
  padding: 20px 0;
  border-bottom: 0.5px solid var(--t100);
}

.step-item:last-child {
  border-bottom: none;
}

.step-num {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--t800);
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.step-body {
  flex: 1;
}

.step-body strong {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 4px;
}

.step-body p {
  font-size: 14px;
  color: var(--mid);
  line-height: 1.7;
}

/* PREVENT LIST */

.prevent-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 20px;
}

.prevent-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  background: var(--white);
  border: 0.5px solid var(--t100);
  border-radius: var(--rmd);
  padding: 16px 18px;
}

.prevent-icon {
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}

.prevent-icon svg {
  width: 15px;
  height: 15px;
  stroke: #0D8B7A;
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.prevent-body strong {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 3px;
}

.prevent-body p {
  font-size: 13px;
  color: var(--mid);
  line-height: 1.6;
}

/* PRICING */

.insurance-note {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: rgba(29,200,176,.06);
  border: 0.5px solid rgba(29,200,176,.2);
  border-left: 2px solid var(--t400);
  border-radius: var(--rmd);
  padding: 14px 18px;
  margin-top: 14px;
}

.insurance-note svg {
  width: 16px;
  height: 16px;
  stroke: var(--t400);
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  flex-shrink: 0;
  margin-top: 2px;
}

.insurance-note p {
  font-size: 13px;
  color: var(--t200);
  line-height: 1.65;
  margin: 0;
}


/* RESPONSIVE */

@media (max-width: 900px) {
    .hero {
        padding: 40px 20px 20px;
        background-position: 60% center;
        background-size: cover;
    }
    .hero::before {
        background: linear-gradient(
            90deg,
            rgba(6, 21, 20, 0.95) 0%,
            rgba(6, 21, 20, 0.85) 60%,
            rgba(6, 21, 20, 0.6) 100%
        );
    }
    .hero h1 {
        font-size: 26px;
    }
    .mob-br {
        display: block;
    }
    .s-title {
        font-size: 22px;
    }
    .s-body {
        font-size: 14px;
    }
    .h3-card p {
        padding-left: 0;
    }
    .cap-grid {
        grid-template-columns: 1fr 1fr;
    }
    
}

@media (max-width: 768px) {
    .price-grid{ grid-template-columns: 1fr; }
    .cap-grid {
        grid-template-columns: 1fr;
    }
    .price-row {
        flex-direction: column;
        gap: 8px;
    }
    .h3-card-icon svg{
        align-items: center;
    }
}
