.logo a {
  width: 65px;
  height: 54px;
  display: block;
  background-image: url(./images/logo.png);
  font-size: 0;
}

.hero-badge .dot {
  background-color: #10b981;
}

.hero-card.security-card {
  background: linear-gradient(135deg, #065f46 0%, #047857 50%, #059669 100%);
}

.security-card .hc-header h3 {
  color: #fff;
}

.security-card .hc-header p {
  color: rgba(255, 255, 255, 0.85);
}

.security-card .hc-price {
  background: rgba(255, 255, 255, 0.15);
}

.security-card .hc-price .from,
.security-card .hc-price .unit {
  color: rgba(255, 255, 255, 0.9);
}

.security-card .hc-price .num {
  color: #fff;
  font-size: 48px;
}

.security-card .hc-includes .hc-item {
  color: rgba(255, 255, 255, 0.95);
}

.security-card .hc-includes .check {
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
}

.security-features {
  padding: 80px 0;
  background-color: #f8f9fa;
}

.section-header {
  text-align: center;
  margin-bottom: 50px;
}

.section-header h2 {
  font-size: 28px;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 12px;
}

.section-header p {
  font-size: 16px;
  color: #6b7280;
}

.security-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
}

.security-card {
  background: white;
  border-radius: 16px;
  padding: 32px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease, opacity 0.5s ease;
  opacity: 0;
  transform: translateY(20px);
}

.security-card.visible {
  opacity: 1;
  transform: translateY(0);
}

.security-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

.security-icon {
  font-size: 48px;
  margin-bottom: 20px;
}

.security-title {
  font-size: 18px;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 12px;
}

.security-desc {
  color: #6b7280;
  line-height: 1.7;
  font-size: 15px;
}

.security-commitment {
  padding: 80px 0;
  background: white;
}

.commitment-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.commitment-left,
.commitment-right {
  padding: 36px;
  border-radius: 16px;
}

.commitment-left {
  background: #fef2f2;
  border: 1px solid #fecaca;
}

.commitment-right {
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
}

.commitment-left h2 {
  font-size: 20px;
  font-weight: 700;
  color: #b91c1c;
  margin-bottom: 8px;
}

.commitment-right h2 {
  font-size: 20px;
  font-weight: 700;
  color: #065f46;
  margin-bottom: 8px;
}

.commitment-left > p,
.commitment-right > p {
  color: #6b7280;
  font-size: 14px;
  margin-bottom: 20px;
}

.commitment-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.commitment-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  line-height: 1.6;
}

.commitment-item.dont {
  color: #374151;
}

.commitment-item.do {
  color: #065f46;
}

.commitment-item .mark {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 14px;
}

.commitment-item.dont .mark {
  background: #fee2e2;
  color: #ef4444;
}

.commitment-item.do .mark {
  background: #d1fae5;
  color: #10b981;
}

.security-cta {
  padding: 80px 0;
  background: linear-gradient(135deg, #f5f7fa 0%, #e5e7eb 100%);
}

.cta-box {
  text-align: center;
  padding: 50px;
  background: white;
  border-radius: 20px;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.08);
}

.cta-box h2 {
  font-size: 26px;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 12px;
}

.cta-box p {
  font-size: 16px;
  color: #6b7280;
  margin-bottom: 28px;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
}

.btn-lg {
  padding: 14px 36px;
  font-size: 16px;
}

@media (max-width: 768px) {
  .security-grid {
    grid-template-columns: 1fr;
  }

  .commitment-wrapper {
    grid-template-columns: 1fr;
  }

  .cta-buttons {
    flex-direction: column;
  }

  .hero-btns {
    flex-direction: column;
  }

  .hero-btns .btn {
    text-align: center;
  }
}