/* Hosting & Domain Management Page Styles */

/* Hero Section */
.hosting-hero {
  background: linear-gradient(180deg, var(--color-bg) 0%, #eef7fb 100%);
  padding: 4rem 1.25rem;
  text-align: center;
}

.hosting-hero__inner {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  align-items: center;
}

.hosting-hero__title {
  font-size: clamp(2rem, 4vw, 2.75rem);
  line-height: 1.15;
  font-weight: 700;
  background: linear-gradient(90deg, var(--color-primary) 0%, var(--color-primary-600) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  max-width: 20ch;
}

.kicker {
  display: inline-block;
  padding: 0.35rem 0.75rem;
  background: rgba(var(--color-brand-rgb), 0.08);
  color: var(--color-primary-600);
  font-weight: 700;
  font-size: 0.875rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 999px;
}

/* Benefits Grid */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.benefit-card {
  padding: 1.5rem;
  text-align: center;
  transition: transform 0.3s cubic-bezier(0.2, 1, 0.3, 1), box-shadow 0.3s ease;
}

.benefit-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 32px rgba(0, 147, 202, 0.15);
}

.benefit-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  margin: 0 auto 1rem;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(0,147,202,0.1) 0%, rgba(0,147,202,0.05) 100%);
  color: var(--color-primary);
}

.benefit-card h3 {
  font-size: 1.125rem;
  margin-bottom: 0.75rem;
  color: var(--color-text);
}

.benefit-card p {
  color: rgba(11,33,48,0.8);
  line-height: 1.6;
  margin: 0;
}

/* Domain Section */
.domain-content {
  max-width: 800px;
  margin: 2rem auto 0;
}

.domain-info {
  padding: 2rem;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-1);
}

.domain-info h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--color-text);
}

.domain-info > p {
  font-size: 1.0625rem;
  line-height: 1.7;
  color: rgba(11,33,48,0.85);
  margin-bottom: 2rem;
}

.domain-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 0.875rem;
  margin-bottom: 2rem;
}

.domain-feature {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.5rem;
}

.domain-feature svg {
  flex-shrink: 0;
  color: var(--color-primary);
  margin-top: 2px;
}

.domain-feature span {
  color: var(--color-text);
  font-weight: 500;
  line-height: 1.5;
}

.domain-extensions {
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--color-border);
}

.domain-extensions h4 {
  font-size: 1rem;
  margin-bottom: 1rem;
  color: var(--color-text);
}

.extensions-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.extension-tag {
  display: inline-flex;
  align-items: center;
  padding: 0.5rem 1rem;
  background: linear-gradient(135deg, rgba(0,147,202,0.08) 0%, rgba(0,147,202,0.04) 100%);
  border: 1px solid rgba(0,147,202,0.12);
  border-radius: 8px;
  color: var(--color-primary-600);
  font-weight: 600;
  font-size: 0.9375rem;
}

/* Hosting Packages */
.hosting-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.hosting-card {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform 0.3s cubic-bezier(0.2, 1, 0.3, 1), box-shadow 0.3s ease;
}

.hosting-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 32px rgba(0, 147, 202, 0.15);
}

.hosting-card--featured {
  border: 2px solid var(--color-primary);
}

.hosting-card__badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  padding: 0.35rem 1rem;
  background: var(--color-primary);
  color: white;
  font-weight: 700;
  font-size: 0.8125rem;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.hosting-card__header {
  text-align: center;
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--color-border);
}

.hosting-card__header h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--color-text);
}

.hosting-card__price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.25rem;
}

.price-currency {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--color-primary-600);
}

.price-amount {
  font-size: 3rem;
  font-weight: 700;
  color: var(--color-primary);
  line-height: 1;
}

.price-period {
  font-size: 1rem;
  color: var(--color-muted);
}

.hosting-card__desc {
  text-align: center;
  color: rgba(11,33,48,0.8);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.hosting-features {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem 0;
  flex: 1;
}

.hosting-features li {
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--color-border);
  color: var(--color-text);
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.hosting-features li:last-child {
  border-bottom: none;
}

.hosting-features li::before {
  content: '✓';
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(var(--color-brand-rgb), 0.1);
  color: var(--color-primary-600);
  font-weight: 700;
  font-size: 0.875rem;
  flex-shrink: 0;
}

.hosting-card__cta {
  width: 100%;
  justify-content: center;
  text-align: center;
}

.hosting-note {
  text-align: center;
  margin-top: 2rem;
  color: var(--color-muted);
}

/* Included Items */
.included-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}

.included-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-1);
}

.included-item svg {
  flex-shrink: 0;
  color: var(--color-primary);
}

.included-item span {
  color: var(--color-text);
  font-weight: 500;
}

/* FAQ Section */
.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.faq-item {
  padding: 1.5rem;
}

.faq-item h3 {
  font-size: 1.125rem;
  margin-bottom: 0.75rem;
  color: var(--color-text);
}

.faq-item p {
  color: rgba(11,33,48,0.85);
  line-height: 1.6;
  margin: 0;
}

/* Final CTA */
.hosting-final-cta {
  text-align: center;
  padding: 3rem 2rem;
  max-width: 700px;
  margin: 0 auto;
}

.hosting-final-cta h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: var(--color-text);
}

.hosting-final-cta .lead {
  margin-bottom: 2rem;
}

/* Section Header */
.section-header {
  text-align: center;
  margin-bottom: 1.5rem;
}

.section-header h2 {
  font-size: 2rem;
  margin-bottom: 0.75rem;
  color: var(--color-text);
}

.section-header .lead {
  color: rgba(11,33,48,0.8);
  max-width: 60ch;
  margin-left: auto;
  margin-right: auto;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .hosting-hero {
    padding: 3rem 1.25rem;
  }

  .benefits-grid,
  .hosting-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .domain-features {
    grid-template-columns: 1fr;
  }

  .hosting-card__price {
    flex-direction: row;
  }

  .price-amount {
    font-size: 2.5rem;
  }
}

@media (max-width: 480px) {
  .hosting-hero__title {
    font-size: 1.75rem;
  }

  .hosting-final-cta {
    padding: 2rem 1.5rem;
  }

  .hosting-final-cta h2 {
    font-size: 1.5rem;
  }
}

/* Animations */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

