/* SSL Page Styles */

/* SSL Hero Section */
.ssl-hero-section {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(
    135deg,
    var(--primary-color) 0%,
    var(--secondary-color) 100%
  );
}

.ssl-hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    var(--primary-color) 0%,
    var(--secondary-color) 100%
  );
  z-index: 1;
}

.ssl-hero-particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(
      circle at 20% 80%,
      rgba(255, 255, 255, 0.1) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 20%,
      rgba(255, 255, 255, 0.08) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 40% 40%,
      rgba(255, 255, 255, 0.05) 0%,
      transparent 50%
    );
  z-index: 2;
  animation: particleFloat 20s ease-in-out infinite;
}

@keyframes particleFloat {
  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }
  33% {
    transform: translateY(-20px) rotate(120deg);
  }
  66% {
    transform: translateY(10px) rotate(240deg);
  }
}

.ssl-hero-gradient {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, rgba(0, 0, 0, 0.1) 0%, transparent 100%);
  z-index: 3;
}

.ssl-hero-content {
  position: relative;
  z-index: 4;
  color: white;
}

.ssl-hero-badge {
  display: inline-block;
  margin-bottom: 1rem;
}

.ssl-hero-badge .badge-text {
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  color: white;
  padding: 0.5rem 1.5rem;
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  position: relative;
  overflow: hidden;
}

.ssl-hero-badge .badge-text::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transition: left 0.6s ease;
}

.ssl-hero-badge:hover .badge-text::before {
  left: 100%;
}

.gradient-text {
  background: linear-gradient(135deg, #fbbf24, #f59e0b);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 700;
}

.ssl-hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.ssl-hero-actions .btn {
  border-radius: 50px;
  padding: 0.75rem 2rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
}

.ssl-hero-actions .btn-primary {
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: white;
}

.ssl-hero-actions .btn-primary:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.ssl-hero-actions .btn-outline-light {
  border: 2px solid rgba(255, 255, 255, 0.5);
  color: white;
  background: transparent;
}

.ssl-hero-actions .btn-outline-light:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: white;
  transform: translateY(-2px);
}

.ssl-hero-stats {
  display: flex;
  gap: 2rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-size: 2rem;
  font-weight: 700;
  color: #fbbf24;
  margin-bottom: 0.5rem;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.stat-label {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* SSL Hero Illustration */
.ssl-hero-illustration {
  position: relative;
  z-index: 4;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 500px;
}

.ssl-shield-container {
  position: relative;
  width: 300px;
  height: 300px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.ssl-shield {
  width: 120px;
  height: 120px;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 3rem;
  color: #fbbf24;
  border: 2px solid rgba(255, 255, 255, 0.3);
  animation: float 3s ease-in-out infinite;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.ssl-lock {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 60px;
  height: 60px;
  background: rgba(16, 185, 129, 0.9);
  border-radius: 15px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.5rem;
  color: white;
  animation: float 3s ease-in-out infinite 0.5s;
  box-shadow: 0 10px 20px rgba(16, 185, 129, 0.3);
}

.ssl-certificate {
  position: absolute;
  bottom: 20px;
  left: 20px;
  width: 60px;
  height: 60px;
  background: rgba(245, 158, 11, 0.9);
  border-radius: 15px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.5rem;
  color: white;
  animation: float 3s ease-in-out infinite 1s;
  box-shadow: 0 10px 20px rgba(245, 158, 11, 0.3);
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
}

.floating-elements {
  position: absolute;
  width: 100%;
  height: 100%;
}

.floating-element {
  position: absolute;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  font-size: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  animation: floatAround 8s ease-in-out infinite;
}

.element-1 {
  top: 10%;
  left: 10%;
  animation-delay: 0s;
}

.element-2 {
  top: 20%;
  right: 10%;
  animation-delay: 2s;
}

.element-3 {
  bottom: 10%;
  right: 20%;
  animation-delay: 4s;
}

@keyframes floatAround {
  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }
  25% {
    transform: translateY(-15px) rotate(90deg);
  }
  50% {
    transform: translateY(0px) rotate(180deg);
  }
  75% {
    transform: translateY(15px) rotate(270deg);
  }
}

/* SSL Plans Section */
.ssl-section {
  background: white;
  position: relative;
}

.ssl-plan-card {
  background: white;
  border-radius: 20px;
  padding: 2rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  border: 1px solid #e5e7eb;
  position: relative;
  overflow: hidden;
}

.ssl-plan-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(
    90deg,
    var(--primary-color),
    var(--secondary-color)
  );
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.ssl-plan-card:hover::before {
  transform: scaleX(1);
}

.ssl-plan-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.ssl-plan-card.featured {
  border: 2px solid var(--primary-color);
  transform: scale(1.05);
  position: relative;
}

.ssl-plan-card.featured::before {
  transform: scaleX(1);
}

.ssl-plan-badge {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--secondary-color)
  );
  color: white;
  padding: 0.5rem 1.5rem;
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
}

.ssl-plan-header {
  text-align: center;
  margin-bottom: 2rem;
}

.ssl-plan-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--secondary-color)
  );
  border-radius: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto 1rem;
  font-size: 2rem;
  color: white;
  box-shadow: 0 10px 20px rgba(102, 126, 234, 0.3);
}

.ssl-plan-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--dark-gray);
  margin-bottom: 0.5rem;
}

.ssl-plan-subtitle {
  color: var(--text-gray);
  font-size: 1rem;
}

.ssl-plan-price {
  text-align: center;
  margin-bottom: 2rem;
}

.price-currency {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--primary-color);
  vertical-align: top;
}

.price-amount {
  font-size: 3rem;
  font-weight: 700;
  color: var(--primary-color);
}

.price-period {
  font-size: 1rem;
  color: var(--text-gray);
  font-weight: 500;
}

.ssl-plan-features {
  margin-bottom: 2rem;
}

.feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.feature-list li {
  padding: 0.75rem 0;
  border-bottom: 1px solid #f3f4f6;
  display: flex;
  align-items: center;
  color: var(--dark-gray);
}

.feature-list li:last-child {
  border-bottom: none;
}

.feature-list li i {
  color: #10b981;
  margin-right: 0.75rem;
  font-size: 1rem;
}

.ssl-plan-action .btn {
  border-radius: 50px;
  padding: 0.75rem 2rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
}

.ssl-plan-action .btn-primary {
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--secondary-color)
  );
  border: none;
  box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
}

.ssl-plan-action .btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(102, 126, 234, 0.5);
}

.ssl-plan-action .btn-outline-primary {
  border: 2px solid var(--primary-color);
  color: var(--primary-color);
  background: transparent;
}

.ssl-plan-action .btn-outline-primary:hover {
  background: var(--primary-color);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
}

/* Security Features Section */
.security-section {
  background: #f8f9fa;
  position: relative;
}

.security-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
      circle at 25% 25%,
      rgba(102, 126, 234, 0.05) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 75% 75%,
      rgba(118, 75, 162, 0.03) 0%,
      transparent 50%
    );
  pointer-events: none;
}

.security-feature-card {
  background: white;
  border-radius: 20px;
  padding: 2rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  border: 1px solid #e5e7eb;
  position: relative;
  overflow: hidden;
}

.security-feature-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(
    90deg,
    var(--primary-color),
    var(--secondary-color)
  );
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.security-feature-card:hover::before {
  transform: scaleX(1);
}

.security-feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.security-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--secondary-color)
  );
  border-radius: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 1.5rem;
  font-size: 2rem;
  color: white;
  box-shadow: 0 10px 20px rgba(102, 126, 234, 0.3);
}

.security-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--dark-gray);
  margin-bottom: 1rem;
}

.security-description {
  color: var(--text-gray);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.security-features {
  list-style: none;
  padding: 0;
  margin: 0;
}

.security-features li {
  padding: 0.5rem 0;
  color: var(--dark-gray);
  position: relative;
  padding-left: 1.5rem;
}

.security-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #10b981;
  font-weight: bold;
}

.security-cta {
  background: white;
  border-radius: 20px;
  padding: 3rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border: 1px solid #e5e7eb;
}

.security-cta .btn {
  border-radius: 50px;
  padding: 0.75rem 2rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
}

.security-cta .btn-primary {
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--secondary-color)
  );
  border: none;
  box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
}

.security-cta .btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(102, 126, 234, 0.5);
}

.security-cta .btn-outline-primary {
  border: 2px solid var(--primary-color);
  color: var(--primary-color);
  background: transparent;
}

.security-cta .btn-outline-primary:hover {
  background: var(--primary-color);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
}

/* Responsive Design */
@media (max-width: 992px) {
  .ssl-hero-section {
    min-height: auto;
    padding: 120px 0 60px;
  }

  .ssl-hero-content h1 {
    font-size: 2.5rem;
  }

  .ssl-hero-illustration {
    height: 400px;
    margin-top: 2rem;
  }
}

@media (max-width: 768px) {
  .ssl-hero-section {
    text-align: center;
    padding: 100px 0 40px;
    min-height: auto;
  }

  .ssl-hero-content {
    padding: 0 1rem;
  }

  .ssl-hero-content h1 {
    font-size: 2rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
  }

  .ssl-hero-content .lead {
    font-size: 1rem;
    margin-bottom: 2rem;
  }

  .ssl-hero-actions {
    justify-content: center;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
  }

  .ssl-hero-actions .btn {
    width: 100%;
    max-width: 280px;
    padding: 0.75rem 1.5rem;
  }

  .ssl-hero-stats {
    justify-content: center;
    gap: 1.5rem;
    margin-top: 2rem;
  }

  .ssl-hero-illustration {
    height: 300px;
    margin-top: 2rem;
  }

  .ssl-shield-container {
    width: 200px;
    height: 200px;
  }

  .ssl-shield {
    width: 80px;
    height: 80px;
    font-size: 2rem;
  }

  .ssl-lock,
  .ssl-certificate {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }

  .ssl-plan-card.featured {
    transform: none;
    margin-bottom: 2rem;
  }

  .security-feature-card {
    margin-bottom: 2rem;
  }

  .security-cta {
    padding: 2rem;
  }

  .security-cta .btn {
    display: block;
    width: 100%;
    margin-bottom: 1rem;
  }
}

@media (max-width: 576px) {
  .ssl-hero-section {
    padding: 90px 0 30px;
  }

  .ssl-hero-content {
    padding: 0 0.5rem;
  }

  .ssl-hero-content h1 {
    font-size: 1.75rem;
    line-height: 1.3;
  }

  .ssl-hero-content .lead {
    font-size: 0.95rem;
    line-height: 1.5;
  }

  .ssl-hero-actions .btn {
    width: 100%;
    max-width: none;
    margin-bottom: 0.75rem;
    padding: 0.75rem 1rem;
    font-size: 0.9rem;
  }

  .ssl-hero-stats {
    gap: 1rem;
    margin-top: 1.5rem;
  }

  .stat-number {
    font-size: 1.5rem;
  }

  .stat-label {
    font-size: 0.8rem;
  }

  .ssl-hero-illustration {
    height: 250px;
    margin-top: 1.5rem;
  }

  .ssl-shield-container {
    width: 150px;
    height: 150px;
  }

  .ssl-shield {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
  }

  .ssl-lock,
  .ssl-certificate {
    width: 30px;
    height: 30px;
    font-size: 0.8rem;
  }

  .price-amount {
    font-size: 2.5rem;
  }

  .ssl-plan-card,
  .security-feature-card {
    padding: 1.5rem;
  }
}
