/* Protection page styles - Redesign */

/* Hero Section */
.protection-hero {
  background: linear-gradient(135deg, #0a0b0d 0%, #131417 50%, #0d1520 100%);
  padding: 120px 0 80px;
  position: relative;
  overflow: hidden;
}
.protection-hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 80%;
  height: 200%;
  background: radial-gradient(ellipse, rgba(0, 174, 228, 0.08) 0%, transparent 60%);
  pointer-events: none;
}
.protection-hero__content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}
.protection-hero__icon {
  width: 120px;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 30px;
}
.protection-hero__icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 8px 24px rgba(0, 174, 228, 0.3));
}
.protection-hero__title {
  font-family: "NEXT ART Bold", sans-serif;
  font-size: 48px;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 20px;
}
.protection-hero__title span {
  background: linear-gradient(90deg, #00aee4, #00d4ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.protection-hero__subtitle {
  font-size: 20px;
  color: rgba(255,255,255,0.7);
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto;
}

/* Main Content */
.protection-main {
  background: #f8fafc;
  padding: 80px 0;
}
.protection-main .container {
  max-width: 1000px;
}

/* Condition Cards */
.condition-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-bottom: 60px;
}
.condition-card {
  background: #fff;
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  border: 1px solid rgba(0,0,0,0.05);
  transition: transform 0.3s, box-shadow 0.3s;
}
.condition-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.1);
}
.condition-card__icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, rgba(0, 174, 228, 0.15) 0%, rgba(0, 174, 228, 0.05) 100%);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin-bottom: 20px;
}
.condition-card__title {
  font-family: "NEXT ART Bold", sans-serif;
  font-size: 20px;
  color: #0f172a;
  margin-bottom: 12px;
}
.condition-card__text {
  font-size: 16px;
  color: #64748b;
  line-height: 1.6;
}
.condition-card__highlight {
  display: inline-block;
  background: linear-gradient(90deg, rgba(0, 174, 228, 0.15), rgba(0, 174, 228, 0.05));
  color: #00aee4;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 6px;
}
.condition-card__highlight--red {
  background: linear-gradient(90deg, rgba(239, 68, 68, 0.15), rgba(239, 68, 68, 0.05));
  color: #ef4444;
}
.condition-card__highlight--green {
  background: linear-gradient(90deg, rgba(34, 197, 94, 0.15), rgba(34, 197, 94, 0.05));
  color: #22c55e;
}

/* Example Section */
.example-section {
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  border-radius: 24px;
  padding: 40px;
  margin-bottom: 60px;
}
.example-section__header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 30px;
}
.example-section__icon {
  width: 48px;
  height: 48px;
  background: rgba(0, 174, 228, 0.2);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
}
.example-section__title {
  font-family: "NEXT ART Bold", sans-serif;
  font-size: 24px;
  color: #fff;
}

/* Calculator Visual */
.calc-visual {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 30px;
}
.calc-item {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px;
  padding: 24px;
  text-align: center;
}
.calc-item__label {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
}
.calc-item__value {
  font-family: "NEXT ART Bold", sans-serif;
  font-size: 28px;
  color: #fff;
}
.calc-item__value--accent {
  color: #00aee4;
}
.calc-item__value--red {
  color: #ef4444;
}
.calc-item__value--green {
  color: #22c55e;
}
.calc-item__note {
  font-size: 13px;
  color: rgba(255,255,255,0.4);
  margin-top: 6px;
}

.example-section__result {
  background: rgba(34, 197, 94, 0.1);
  border: 1px solid rgba(34, 197, 94, 0.3);
  border-radius: 12px;
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 16px;
}
.example-section__result-icon {
  width: 44px;
  height: 44px;
  background: #22c55e;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
}
.example-section__result-text {
  font-size: 16px;
  color: rgba(255,255,255,0.9);
  line-height: 1.5;
}
.example-section__result-text strong {
  color: #22c55e;
}

/* Warning Section */
.warning-section {
  background: linear-gradient(135deg, rgba(251, 191, 36, 0.1) 0%, rgba(251, 191, 36, 0.05) 100%);
  border: 1px solid rgba(251, 191, 36, 0.3);
  border-radius: 16px;
  padding: 24px 30px;
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 60px;
}
.warning-section__icon {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.warning-section__icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.warning-section__content {
  flex: 1;
}
.warning-section__title {
  font-family: "NEXT ART Bold", sans-serif;
  font-size: 18px;
  color: #92400e;
  margin-bottom: 8px;
}
.warning-section__text {
  font-size: 15px;
  color: #78350f;
  line-height: 1.6;
}

/* CTA Section */
.protection-cta {
  text-align: center;
}
.protection-cta__text {
  font-size: 18px;
  color: #64748b;
  margin-bottom: 24px;
}
.protection-cta__buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}
.protection-cta__btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  border-radius: 50px;
  font-family: "NEXT ART Bold", sans-serif;
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-decoration: none;
  transition: all 0.3s;
}
.protection-cta__btn--primary {
  background: linear-gradient(135deg, #00aee4 0%, #0095c8 100%);
  color: #fff;
  box-shadow: 0 4px 20px rgba(0, 174, 228, 0.3);
}
.protection-cta__btn--primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(0, 174, 228, 0.4);
}
.protection-cta__btn--secondary {
  background: #fff;
  color: #0f172a;
  border: 2px solid #e2e8f0;
}
.protection-cta__btn--secondary:hover {
  border-color: #00aee4;
  color: #00aee4;
}

/* Footer mini */
.protection-footer {
  background: #131417;
  padding: 30px 0;
  text-align: center;
}
.protection-footer__text {
  font-size: 14px;
  color: rgba(255,255,255,0.4);
}
.protection-footer__text a {
  color: #00aee4;
  text-decoration: none;
}

/* Responsive */
@media (max-width: 768px) {
  .protection-hero {
    padding: 100px 0 60px;
  }
  .protection-hero__title {
    font-size: 32px;
  }
  .protection-hero__subtitle {
    font-size: 16px;
  }
  .condition-cards {
    grid-template-columns: 1fr;
  }
  .calc-visual {
    grid-template-columns: 1fr;
  }
  .example-section {
    padding: 24px;
  }
  .warning-section {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }
  .protection-cta__buttons {
    flex-direction: column;
    align-items: center;
  }
  .protection-cta__btn {
    width: 100%;
    max-width: 300px;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .protection-hero__title {
    font-size: 26px;
  }
  .protection-hero__icon {
    width: 80px;
    height: 80px;
  }
  .condition-card {
    padding: 24px;
  }
  .calc-item__value {
    font-size: 22px;
  }
}

