/* IPTV Kopen Page Styles */

/* Hero Section */
.kopen-hero {
  padding: 120px 0 60px;
  position: relative;
  overflow: hidden;
  background-color: var(--bg-primary, #0a0e17);
  background-image: 
    radial-gradient(circle at 15% 50%, rgba(232, 25, 44, 0.08) 0%, transparent 40%),
    radial-gradient(circle at 85% 30%, rgba(30, 37, 64, 0.5) 0%, transparent 40%);
}

.kopen-hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.kopen-hero__content {
  max-width: 600px;
}

.kopen-hero__title {
  font-size: 3.5rem;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  color: var(--text-primary, #ffffff);
}

.kopen-hero__title span {
  display: block;
  font-size: 2.25rem;
  font-weight: 500;
  color: var(--text-secondary, #b0b8c9);
  margin-top: 0.5rem;
}

.kopen-hero__desc {
  font-size: 1.125rem;
  color: var(--text-secondary, #b0b8c9);
  margin-bottom: 2rem;
  line-height: 1.6;
}

.kopen-hero__trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

.kopen-hero__trust-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--text-primary, #ffffff);
  background: var(--bg-card, #1a1f35);
  padding: 0.5rem 1rem;
  border-radius: 50px;
  border: 1px solid var(--border-color, #1e2540);
}

.kopen-hero__trust-badge svg {
  width: 16px;
  height: 16px;
  color: var(--accent, #e8192c);
}

.kopen-hero__visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.kopen-hero__mockup-img {
  width: 100%;
  max-width: 500px;
  height: auto;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.7));
  transition: transform 0.3s ease;
}

.kopen-hero__mockup-img:hover {
  transform: translateY(-8px) scale(1.02);
}

/* Pricing Section */
.pricing-card {
  background: var(--bg-card, #1a1f35);
  border: 1px solid var(--border-color, #1e2540);
  border-radius: var(--radius-lg, 16px);
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
}

.pricing-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.pricing-card--popular {
  border-color: var(--accent, #e8192c);
  box-shadow: 0 0 20px rgba(232, 25, 44, 0.15);
  transform: scale(1.05);
  z-index: 2;
}

.pricing-card--popular:hover {
  transform: scale(1.05) translateY(-5px);
  box-shadow: 0 15px 40px rgba(232, 25, 44, 0.2);
}

.pricing-card__badge {
  position: absolute;
  top: 1rem;
  right: -2rem;
  background: var(--accent, #e8192c);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  padding: 0.25rem 2.5rem;
  transform: rotate(45deg);
  letter-spacing: 1px;
}

.pricing-card__name {
  font-size: 1.25rem;
  color: var(--text-secondary, #b0b8c9);
  margin-bottom: 1rem;
  font-weight: 600;
}

.pricing-card__price {
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--text-primary, #ffffff);
  line-height: 1;
  margin-bottom: 0.5rem;
  display: flex;
  align-items: flex-start;
}

.pricing-card__currency {
  font-size: 1.5rem;
  margin-top: 0.5rem;
  margin-right: 0.25rem;
}

.pricing-card__period {
  font-size: 1rem;
  color: var(--text-muted, #6b7280);
  margin-left: 0.25rem;
  align-self: flex-end;
  margin-bottom: 0.5rem;
}

.pricing-card__old-price {
  font-size: 1rem;
  color: var(--text-muted, #6b7280);
  text-decoration: line-through;
  margin-bottom: 2rem;
  display: block;
}

.pricing-card__features {
  list-style: none;
  padding: 0;
  margin: 0 auto 2.5rem auto;
  flex-grow: 1;
  width: fit-content;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.pricing-card__feature {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
  color: var(--text-secondary, #b0b8c9);
}

.pricing-card__feature svg {
  width: 20px;
  height: 20px;
  color: var(--accent, #e8192c);
  flex-shrink: 0;
}

.pricing-card__btn {
  margin-top: auto;
}

/* Compare Section */
.compare-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.compare-card {
  background: var(--bg-primary, #0a0e17);
  padding: 2rem;
  border-radius: var(--radius-md, 10px);
  border: 1px solid var(--border-color, #1e2540);
  text-align: center;
}

.compare-card__icon {
  width: 64px;
  height: 64px;
  background: rgba(232, 25, 44, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

.compare-card__icon svg {
  width: 32px;
  height: 32px;
  color: var(--accent, #e8192c);
}

.compare-card__title {
  font-size: 1.25rem;
  margin-bottom: 1rem;
  color: var(--text-primary, #ffffff);
}

.compare-card__text {
  color: var(--text-secondary, #b0b8c9);
  line-height: 1.6;
}

/* Steps Section */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.5rem;
  margin-top: 3rem;
  position: relative;
}

.steps-grid::before {
  content: '';
  position: absolute;
  top: 40px;
  left: 50px;
  right: 50px;
  height: 2px;
  background: var(--border-color, #1e2540);
  z-index: 0;
}

.step-card {
  position: relative;
  z-index: 1;
  text-align: center;
}

.step-card__number {
  width: 80px;
  height: 80px;
  background: var(--bg-card, #1a1f35);
  border: 2px solid var(--accent, #e8192c);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent, #e8192c);
  margin: 0 auto 1.5rem;
  box-shadow: 0 0 20px rgba(0,0,0,0.5);
}

.step-card__title {
  font-size: 1.25rem;
  margin-bottom: 1rem;
  color: var(--text-primary, #ffffff);
}

.step-card__text {
  color: var(--text-secondary, #b0b8c9);
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 992px) {
  .kopen-hero__inner {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .kopen-hero__content {
    margin: 0 auto;
  }
  .kopen-hero__trust-badges {
    justify-content: center;
  }
  .pricing-card--popular {
    transform: none;
  }
  .pricing-card--popular:hover {
    transform: translateY(-5px);
  }
  .steps-grid::before {
    display: none;
  }
}

@media (max-width: 768px) {
  .kopen-hero__title {
    font-size: 2.5rem;
  }
  .kopen-hero__title span {
    font-size: 1.5rem;
  }
}

.included-card {
  background: var(--bg-card, #1a1f35);
  padding: 2rem;
  border-radius: var(--radius-md, 10px);
  border: 1px solid var(--border-color, #1e2540);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.included-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.included-card__icon {
  font-size: 2.5rem;
  color: var(--accent, #e8192c);
  margin-bottom: 1rem;
}

.included-card__title {
  font-size: 1.25rem;
  margin-bottom: 1rem;
  color: var(--text-primary, #ffffff);
}

.included-card__text {
  color: var(--text-secondary, #b0b8c9);
  line-height: 1.6;
}

.testimonial-card {
  background: var(--bg-card, #1a1f35);
  padding: 2.5rem;
  border-radius: var(--radius-lg, 16px);
  border: 1px solid var(--border-color, #1e2540);
  position: relative;
}