/* ====================================
   SERVICE PAGES STYLES
   ==================================== */

/* Page Header */
.page-header {
  padding: 160px 0 80px;
  background: linear-gradient(135deg, #0a0f1c 0%, #111827 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-header::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 50px 50px;
}

.page-header-content {
  max-width: 700px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.page-badge {
  display: inline-block;
  padding: 6px 16px;
  background: rgba(0, 102, 255, 0.15);
  color: #3385ff;
  font-size: 0.8125rem;
  font-weight: 600;
  border-radius: 50px;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.page-header h1 {
  color: white;
  margin-bottom: 16px;
  font-size: clamp(2rem, 4vw, 3rem);
}

.page-header p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.125rem;
  line-height: 1.7;
}

/* Pricing Toggle */
.pricing-toggle-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 48px;
}

.pricing-toggle-wrapper span {
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.5);
  transition: color 0.3s;
}

.pricing-toggle-wrapper span.active {
  color: white;
  font-weight: 600;
}

.pricing-toggle {
  position: relative;
  width: 60px;
  height: 32px;
}

.pricing-toggle input {
  opacity: 0;
  width: 0;
  height: 0;
}

.toggle-slider {
  position: absolute;
  cursor: pointer;
  inset: 0;
  background: #1e293b;
  border: 2px solid #334155;
  border-radius: 32px;
  transition: 0.3s;
}

.toggle-slider::before {
  position: absolute;
  content: "";
  height: 24px;
  width: 24px;
  left: 2px;
  bottom: 2px;
  background: #0066ff;
  border-radius: 50%;
  transition: 0.3s;
}

.pricing-toggle input:checked + .toggle-slider {
  border-color: #0066ff;
}

.pricing-toggle input:checked + .toggle-slider::before {
  transform: translateX(28px);
}

.save-badge {
  background: #22c55e;
  color: white;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 50px;
}

/* Pricing Section */
.pricing-section {
  padding: 80px 0;
  background: #0f172a;
}

.pricing-section.alt-bg {
  background: #0a0f1c;
}

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

.pricing-section .section-header h2 {
  color: white;
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  margin-bottom: 12px;
}

.pricing-section .section-header p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 1.0625rem;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
}

@media (max-width: 1024px) {
  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

.pricing-card {
  position: relative;
  background: #1e293b;
  border: 1px solid #334155;
  border-radius: 16px;
  padding: 32px;
  transition: all 0.3s ease;
}

.pricing-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  border-color: #0066ff;
}

.pricing-card.featured {
  border-color: #0066ff;
  background: linear-gradient(135deg, rgba(0, 102, 255, 0.1) 0%, #1e293b 100%);
}

.pricing-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  padding: 6px 16px;
  background: #0066ff;
  color: white;
  font-size: 0.75rem;
  font-weight: 600;
  border-radius: 50px;
  white-space: nowrap;
}

.pricing-header {
  text-align: center;
  margin-bottom: 24px;
}

.pricing-header h3 {
  color: white;
  font-size: 1.25rem;
  margin-bottom: 4px;
}

.pricing-header p {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.875rem;
}

.pricing-price {
  text-align: center;
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid #334155;
}

.pricing-price .currency {
  font-size: 1.25rem;
  font-weight: 600;
  color: white;
  vertical-align: super;
}

.pricing-price .amount {
  font-size: 3rem;
  font-weight: 800;
  color: white;
  line-height: 1;
}

.pricing-price .period {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.9375rem;
}

.pricing-features {
  list-style: none;
  padding: 0;
  margin: 0 0 24px 0;
}

.pricing-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 8px 0;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.875rem;
  line-height: 1.5;
}

.pricing-features .check-icon {
  width: 18px;
  height: 18px;
  color: #22c55e;
  flex-shrink: 0;
  margin-top: 2px;
}

/* Features Section */
.features-section {
  padding: 80px 0;
  background: #0a0f1c;
}

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

.features-section .section-header h2 {
  color: white;
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  margin-bottom: 12px;
}

.features-section .section-header p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 1.0625rem;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

@media (max-width: 1024px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

.feature-card {
  background: #1e293b;
  border: 1px solid #334155;
  border-radius: 16px;
  padding: 32px;
  transition: all 0.3s ease;
}

.feature-card:hover {
  border-color: #0066ff;
  transform: translateY(-4px);
}

.feature-icon {
  width: 48px;
  height: 48px;
  background: rgba(0, 102, 255, 0.15);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.feature-icon svg {
  width: 24px;
  height: 24px;
  color: #0066ff;
}

.feature-card h3 {
  color: white;
  font-size: 1.125rem;
  margin-bottom: 8px;
}

.feature-card p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9375rem;
  line-height: 1.6;
}

/* Comparison Section */
.comparison-section {
  padding: 80px 0;
  background: #0f172a;
}

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

.comparison-section .section-header h2 {
  color: white;
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  margin-bottom: 12px;
}

.comparison-section .section-header p {
  color: rgba(255, 255, 255, 0.6);
}

.comparison-table-wrapper {
  overflow-x: auto;
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  background: #1e293b;
  border-radius: 16px;
  overflow: hidden;
}

.comparison-table th,
.comparison-table td {
  padding: 16px 24px;
  text-align: left;
  border-bottom: 1px solid #334155;
}

.comparison-table th {
  background: #0f172a;
  color: white;
  font-weight: 600;
}

.comparison-table td {
  color: rgba(255, 255, 255, 0.7);
}

.comparison-table td.highlight {
  color: #22c55e;
  font-weight: 600;
}

.comparison-table tr:last-child td {
  border-bottom: none;
}

/* FAQ Section */
.faq-section {
  padding: 80px 0;
  background: #0a0f1c;
}

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

.faq-section .section-header h2 {
  color: white;
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  margin-bottom: 12px;
}

.faq-section .section-header p {
  color: rgba(255, 255, 255, 0.6);
}

.faq-grid {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: #1e293b;
  border: 1px solid #334155;
  border-radius: 12px;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  background: transparent;
  border: none;
  color: white;
  font-size: 1rem;
  font-weight: 500;
  text-align: left;
  cursor: pointer;
  transition: background 0.3s;
}

.faq-question:hover {
  background: rgba(255, 255, 255, 0.05);
}

.faq-icon {
  width: 20px;
  height: 20px;
  color: rgba(255, 255, 255, 0.5);
  transition: transform 0.3s;
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
}

.faq-item.active .faq-answer {
  max-height: 500px;
}

.faq-answer p {
  padding: 0 24px 20px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9375rem;
  line-height: 1.7;
}

/* CTA Section */
.cta-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #0066ff 0%, #0047b3 100%);
}

.cta-content {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.cta-content h2 {
  color: white;
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  margin-bottom: 12px;
}

.cta-content p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.0625rem;
  margin-bottom: 32px;
}

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

.cta-buttons .btn-primary {
  background: white;
  color: #0066ff;
}

.cta-buttons .btn-primary:hover {
  background: rgba(255, 255, 255, 0.9);
}

.cta-buttons .btn-outline {
  border-color: white;
  color: white;
}

.cta-buttons .btn-outline:hover {
  background: rgba(255, 255, 255, 0.1);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  font-size: 0.9375rem;
  font-weight: 600;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: #0066ff;
  color: white;
}

.btn-primary:hover {
  background: #0052cc;
}

.btn-outline {
  background: transparent;
  border: 2px solid #334155;
  color: white;
}

.btn-outline:hover {
  border-color: #0066ff;
  background: rgba(0, 102, 255, 0.1);
}

.btn-block {
  width: 100%;
}

.btn-lg {
  padding: 16px 32px;
  font-size: 1rem;
}

/* Footer */
.footer {
  background: #0a0f1c;
  padding: 60px 0 24px;
  border-top: 1px solid #1e293b;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

.footer-brand .logo {
  display: inline-block;
  margin-bottom: 16px;
}

.footer-brand .logo img {
  height: 40px;
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9375rem;
  line-height: 1.6;
  margin-bottom: 24px;
}

.payment-methods span {
  display: block;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.8125rem;
  margin-bottom: 12px;
}

.payment-logos {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.payment-logos img {
  height: 24px;
  opacity: 0.7;
  transition: opacity 0.3s;
}

.payment-logos img:hover {
  opacity: 1;
}

.footer-links h4 {
  color: white;
  font-size: 0.9375rem;
  font-weight: 600;
  margin-bottom: 16px;
}

.footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  font-size: 0.875rem;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: #0066ff;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 24px;
  border-top: 1px solid #1e293b;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.875rem;
}

.footer-legal {
  display: flex;
  gap: 24px;
}

.footer-legal a {
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  font-size: 0.875rem;
  transition: color 0.3s;
}

.footer-legal a:hover {
  color: #0066ff;
}

/* WhatsApp Button */
.whatsapp-btn {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 56px;
  height: 56px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
  transition: transform 0.3s, box-shadow 0.3s;
  z-index: 1000;
}

.whatsapp-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
}

.whatsapp-btn svg {
  width: 28px;
  height: 28px;
  color: white;
}

/* ====================================
   ZENTHOST-STYLE REFINEMENTS
   (Service / inner pages)
   ==================================== */

/* Header of all service pages */
.page-header {
  background:
    radial-gradient(circle at 0% 0%, rgba(96, 165, 250, 0.22), transparent 55%),
    radial-gradient(circle at 100% 0%, rgba(129, 140, 248, 0.4), transparent 60%),
    linear-gradient(135deg, #020617 0%, #020617 55%, #000 100%);
  color: #e5e7eb;
}

.page-header h1 {
  color: #f9fafb;
  letter-spacing: -0.03em;
}

.page-header p {
  color: rgba(226, 232, 240, 0.8);
}

/* Section backgrounds */
.pricing-section,
.features-section,
.faq-section,
.cta-section {
  background: transparent;
}

/* Unified pricing card style */
.pricing-card {
  position: relative;
  background: radial-gradient(circle at top left,
              rgba(37, 99, 235, 0.18),
              transparent 55%),
              rgba(15, 23, 42, 0.98);
  border-radius: 20px;
  border: 1px solid rgba(148, 163, 184, 0.35);
  padding: 32px 28px;
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.85);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.pricing-card:hover {
  transform: translateY(-6px);
  border-color: rgba(96, 165, 250, 0.9);
  box-shadow: 0 30px 70px rgba(15, 23, 42, 0.95);
}

/* Featured plan */
.pricing-card.featured {
  border-color: rgba(52, 211, 153, 0.9);
  box-shadow: 0 30px 80px rgba(22, 163, 74, 0.65);
}

.pricing-badge {
  top: 18px;
  right: 18px;
  padding: 4px 10px;
  border-radius: 999px;
}

/* Title + price */
.pricing-header h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: #e5e7eb;
}

.pricing-header p {
  font-size: 0.875rem;
  color: rgba(148, 163, 184, 0.95);
}

.pricing-price {
  margin-top: 16px;
  margin-bottom: 22px;
  text-align: center;
}

.pricing-price .currency {
  font-size: 0.9rem;
  color: rgba(148, 163, 184, 0.9);
}

.pricing-price .amount {
  font-size: 1.6rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #f9fafb;
}

.pricing-price .period,
.pricing-price .period-text,
.pricing-price .one-time {
  font-size: 0.85rem;
  color: rgba(148, 163, 184, 0.95);
}

/* Features list */
.pricing-features li {
  color: rgba(148, 163, 184, 0.96);
  font-size: 0.85rem;
}

/* Check icon tone */
.check-icon {
  color: #22c55e;
}

/* Monthly / annually toggle (if exists) */
.pricing-toggle {
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.95);
  border: 1px solid rgba(148, 163, 184, 0.45);
}

.toggle-slider {
  background: rgba(15, 23, 42, 0.9);
}

.pricing-toggle input:checked + .toggle-slider::before {
  background: linear-gradient(135deg, #4f46e5, #6366f1);
}

/* Features cards on service pages */
.features-grid .feature-card,
.feature-card {
  background: rgba(15, 23, 42, 0.96);
  border-radius: 18px;
  border: 1px solid rgba(148, 163, 184, 0.35);
  box-shadow: 0 22px 55px rgba(15, 23, 42, 0.85);
}

/* CTA area */
.cta-section {
  padding-bottom: 96px;
}

.cta-inner {
  border-radius: 22px;
  background:
    radial-gradient(circle at left,
      rgba(45, 212, 191, 0.18),
      transparent 55%),
    rgba(15, 23, 42, 0.98);
  border: 1px solid rgba(148, 163, 184, 0.4);
  box-shadow: 0 28px 70px rgba(15, 23, 42, 0.9);
}

/* CTA buttons inherit main button style */
.cta-buttons .btn-primary {
  border-radius: 999px;
  background: linear-gradient(135deg, #4f46e5, #6366f1);
  color: #f9fafb;
}

.cta-buttons .btn-primary:hover {
  background: linear-gradient(135deg, #4338ca, #4f46e5);
  color: #fff;
}

.cta-buttons .btn-outline {
  border-radius: 999px;
}

/* FAQ cards */
.faq-item {
  border-radius: 18px;
  background: rgba(15, 23, 42, 0.98);
  border: 1px solid rgba(148, 163, 184, 0.4);
}
