/* Protection page — dark theme */

/* ── Hero ─────────────────────────────────────────── */
.protection-hero {
  background: linear-gradient(135deg, #0a0b0d 0%, #0d1015 50%, #0a0e18 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,.09) 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: 88px; height: 88px;
  background: rgba(0,174,228,.12);
  border: 1px solid rgba(0,174,228,.25);
  border-radius: 24px;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 30px;
}
.protection-hero__title {
  font-family: "Geologica", sans-serif;
  font-size: 52px; font-weight: 900; font-stretch: 115%;
  color: #fff; line-height: 1.1;
  letter-spacing: -0.02em;
  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: 19px; font-weight: 400;
  color: rgba(255,255,255,.65);
  line-height: 1.65;
  max-width: 580px; margin: 0 auto;
}

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

/* ── Condition Cards ──────────────────────────────── */
.condition-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 56px;
}
.condition-card {
  background: #181a1d;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 20px;
  padding: 30px;
  transition: border-color .25s, transform .25s;
}
.condition-card:hover {
  border-color: rgba(0,174,228,.3);
  transform: translateY(-3px);
}
.condition-card__icon {
  width: 52px; height: 52px;
  background: rgba(0,174,228,.1);
  border: 1px solid rgba(0,174,228,.2);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
}
.condition-card__title {
  font-family: "Geologica", sans-serif;
  font-size: 18px; font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
}
.condition-card__text {
  font-size: 15px;
  color: rgba(255,255,255,.6);
  line-height: 1.65;
}
.condition-card__highlight {
  display: inline;
  color: #00aee4;
  font-weight: 700;
}
.condition-card__highlight--red  { color: #f87171; }
.condition-card__highlight--green { color: #4ade80; }

/* ── Example Section ──────────────────────────────── */
.example-section {
  background: #181a1d;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 20px;
  padding: 40px;
  margin-bottom: 48px;
}
.example-section__header {
  display: flex; align-items: center; gap: 16px;
  margin-bottom: 30px;
}
.example-section__icon {
  width: 44px; height: 44px;
  background: rgba(0,174,228,.12);
  border: 1px solid rgba(0,174,228,.2);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.example-section__title {
  font-family: "Geologica", sans-serif;
  font-size: 22px; font-weight: 700;
  color: #fff;
}

/* ── Calc Visual ──────────────────────────────────── */
.calc-visual {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 28px;
}
.calc-item {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 14px;
  padding: 22px;
  text-align: center;
}
.calc-item__label {
  font-size: 11px; font-weight: 600;
  color: rgba(255,255,255,.4);
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 8px;
}
.calc-item__value {
  font-family: "Geologica", sans-serif;
  font-size: 30px; font-weight: 900; font-stretch: 112%;
  letter-spacing: -0.025em;
  color: #fff; line-height: 1;
  font-variant-numeric: tabular-nums;
}
.calc-item__value--accent { color: #00aee4; }
.calc-item__value--red    { color: #f87171; }
.calc-item__value--green  { color: #4ade80; }
.calc-item__note {
  font-size: 12px; font-weight: 400;
  color: rgba(255,255,255,.4);
  margin-top: 8px;
}

.example-section__result {
  background: rgba(74,222,128,.08);
  border: 1px solid rgba(74,222,128,.25);
  border-radius: 12px;
  padding: 18px 22px;
  display: flex; align-items: center; gap: 16px;
}
.example-section__result-icon {
  width: 40px; height: 40px;
  background: rgba(74,222,128,.15);
  border: 1px solid rgba(74,222,128,.3);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.example-section__result-text {
  font-size: 15px;
  color: rgba(255,255,255,.85);
  line-height: 1.55;
}
.example-section__result-text strong { color: #4ade80; }

/* ── Warning ──────────────────────────────────────── */
.warning-section {
  background: rgba(251,191,36,.06);
  border: 1px solid rgba(251,191,36,.22);
  border-radius: 16px;
  padding: 22px 28px;
  display: flex; align-items: flex-start; gap: 18px;
  margin-bottom: 56px;
}
.warning-section__icon {
  width: 44px; height: 44px;
  background: rgba(251,191,36,.12);
  border: 1px solid rgba(251,191,36,.25);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.warning-section__content { flex: 1; }
.warning-section__title {
  font-family: "Geologica", sans-serif;
  font-size: 16px; font-weight: 700;
  color: #fbbf24;
  margin-bottom: 6px;
}
.warning-section__text {
  font-size: 14px;
  color: rgba(255,255,255,.6);
  line-height: 1.65;
}

/* ── CTA ──────────────────────────────────────────── */
.protection-cta { text-align: center; }
.protection-cta__text {
  font-size: 17px;
  color: rgba(255,255,255,.55);
  margin-bottom: 24px;
}
.protection-cta__buttons {
  display: flex; justify-content: center;
  gap: 14px; flex-wrap: wrap;
}
.protection-cta__btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 15px 30px;
  border-radius: 12px;
  font-family: "Geologica", sans-serif;
  font-size: 14px; font-weight: 800; font-stretch: 108%;
  text-transform: uppercase; letter-spacing: .04em;
  text-decoration: none;
  transition: all .22s;
}
.protection-cta__btn--primary {
  background: #00aee4; color: #fff;
  box-shadow: 0 4px 20px rgba(0,174,228,.3);
}
.protection-cta__btn--primary:hover {
  background: #0095c8;
  box-shadow: 0 6px 24px rgba(0,174,228,.45);
  transform: translateY(-2px);
}
.protection-cta__btn--secondary {
  background: transparent;
  color: rgba(255,255,255,.7);
  border: 1.5px solid rgba(255,255,255,.18);
}
.protection-cta__btn--secondary:hover {
  border-color: #00aee4;
  color: #00aee4;
}

/* ── Footer ───────────────────────────────────────── */
.protection-footer {
  background: #0a0b0d;
  border-top: 1px solid rgba(255,255,255,.06);
  padding: 28px 0;
  text-align: center;
}
.protection-footer__text {
  font-size: 13px;
  color: rgba(255,255,255,.3);
}
.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: 36px; }
  .protection-hero__subtitle { font-size: 16px; }
  .condition-cards { grid-template-columns: 1fr; }
  .calc-visual { grid-template-columns: 1fr; }
  .example-section { padding: 24px 20px; }
  .warning-section { flex-direction: column; align-items: flex-start; }
  .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: 28px; }
  .protection-hero__icon { width: 68px; height: 68px; }
  .condition-card { padding: 22px 18px; }
  .calc-item__value { font-size: 24px; }
}
