/* pricing-styles.css - Premium Apple-style pricing page */

/* ===== VARIABLES ===== */
:root {
  --pr-primary: #007AFF;
  --pr-primary-dark: #0051D5;
  --pr-text: #1d1d1f;
  --pr-text-light: #6e6e73;
  --pr-border: #d2d2d7;
  --pr-bg: #ffffff;
  --pr-bg-alt: #f5f5f7;
  --pr-shadow: 0 4px 24px rgba(0,0,0,0.06);
  --pr-shadow-hover: 0 8px 40px rgba(0,0,0,0.12);
  --pr-radius: 18px;
  --pr-transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  --pr-popular-glow: rgba(0, 122, 255, 0.15);
}

/* ===== RESET ===== */
.pr-main * {
  box-sizing: border-box;
}

.pr-main {
  padding-top: 0;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  color: var(--pr-text);
  background: var(--pr-bg);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ===== CONTAINER ===== */
.pr-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== HERO SECTION ===== */
.pr-hero {
  padding: 50px;
  text-align: center;
  background: linear-gradient(180deg, var(--pr-bg-alt) 0%, var(--pr-bg) 100%);
}

.pr-hero-title {
  font-size: 50px;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin: 0 0 16px;
  color: var(--pr-text);
}

.pr-hero-subtitle {
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 400;
  color: var(--pr-text-light);
  margin: 0;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: -50px;
}

/* ===== TOGGLE SECTION ===== */
.pr-toggle-section {
  padding: 48px 0 64px;
  text-align: center;
}

.pr-toggle-wrapper {
  display: inline-flex;
  background: var(--pr-bg-alt);
  border-radius: 12px;
  padding: 4px;
  gap: 4px;
}

.pr-toggle-btn {
  padding: 12px 32px;
  border: none;
  background: transparent;
  color: var(--pr-text-light);
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  border-radius: 8px;
  transition: var(--pr-transition);
  font-family: inherit;
}

.pr-toggle-btn:hover {
  color: var(--pr-text);
}

.pr-toggle-active {
  background: var(--pr-bg);
  color: var(--pr-text);
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

/* ===== PLANS SECTION ===== */
.pr-plans {
  padding: 0 0 80px;
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.pr-plans-hidden {
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
  position: absolute;
  width: 100%;
}

.pr-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
}

/* ===== CARD ===== */
.pr-card {
  background: var(--pr-bg);
  border: 1px solid var(--pr-border);
  border-radius: var(--pr-radius);
  padding: 40px 32px;
  position: relative;
  transition: var(--pr-transition);
  display: flex;
  flex-direction: column;
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
}

.pr-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--pr-shadow-hover);
  border-color: var(--pr-primary);
}

/* Most Popular Card */
.pr-card-popular {
  border: 2px solid var(--pr-primary);
  box-shadow: 0 0 0 4px var(--pr-popular-glow);
  transform: scale(1.02);
}

.pr-card-popular:hover {
  transform: scale(1.02) translateY(-8px);
}

.pr-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--pr-primary) 0%, var(--pr-primary-dark) 100%);
  color: white;
  padding: 6px 20px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.3px;
  box-shadow: 0 4px 12px rgba(0, 122, 255, 0.3);
}

/* ===== CARD HEADER ===== */
.pr-card-header {
  margin-bottom: 24px;
}

.pr-plan-name {
  font-size: 28px;
  font-weight: 700;
  margin: 0 0 8px;
  color: var(--pr-text);
}

.pr-plan-desc {
  font-size: 16px;
  color: var(--pr-text-light);
  margin: 0;
}

/* ===== PRICE ===== */
.pr-price-wrapper {
  margin-bottom: 32px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--pr-border);
}

.pr-price {
  font-size: 48px;
  font-weight: 700;
  color: var(--pr-text);
  letter-spacing: -0.02em;
  margin-bottom: 4px;
}

.pr-price-label {
  font-size: 15px;
  color: var(--pr-text-light);
}

/* ===== FEATURES LIST ===== */
.pr-features {
  list-style: none;
  padding: 0;
  margin: 0 0 32px;
  flex-grow: 1;
}

.pr-feature {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
  font-size: 15px;
  color: var(--pr-text);
  line-height: 1.5;
}

.pr-check {
  width: 20px;
  height: 20px;
  color: var(--pr-primary);
  flex-shrink: 0;
  margin-top: 2px;
}

/* ===== CTA BUTTON ===== */
.pr-cta {



  
  width: 100%;
  padding: 16px 24px;
  background: var(--pr-primary);
  color: white;
  border: none;
  border-radius: 12px;
  font-size: 17px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--pr-transition);
  position: relative;
  overflow: hidden;
  font-family: inherit;




  display: inline-flex;              /* ✅ fixes centering */
  align-items: center;
  justify-content: center;
  text-decoration: none;             /* ✅ removes underline */


}

.pr-cta:hover {
  background: var(--pr-primary-dark);
  transform: scale(1.02);
  box-shadow: 0 8px 24px rgba(0, 122, 255, 0.3);
}

.pr-cta:active {
  transform: scale(0.98);
}

.pr-cta-text {
  transition: opacity 0.3s ease;
}

.pr-cta.loading .pr-cta-text {
  opacity: 0;
}

.pr-cta-loader {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 20px;
  height: 20px;
  border: 3px solid rgba(255,255,255,0.3);
  border-top-color: white;
  border-radius: 50%;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.pr-cta.loading .pr-cta-loader {
  opacity: 1;
  animation: pr-spin 0.8s linear infinite;
}

@keyframes pr-spin {
  to { transform: translate(-50%, -50%) rotate(360deg); }
}

/* ===== TRUST SECTION ===== */
.pr-trust {
  margin-top: 50px;
  padding: 80px 0;
  background: var(--pr-bg-alt);
}

.pr-trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 48px;
  text-align: center;
}

.pr-trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.pr-trust-icon {
  width: 48px;
  height: 48px;
  color: var(--pr-primary);
  margin-bottom: 20px;
}

.pr-trust-title {
  font-size: 20px;
  font-weight: 600;
  margin: 0 0 12px;
  color: var(--pr-text);
}

.pr-trust-desc {
  font-size: 16px;
  color: var(--pr-text-light);
  margin: 0;
  line-height: 1.6;
}

/* ===== FAQ SECTION ===== */
.pr-faq {
  padding: 80px 0;
}

.pr-faq-title {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 700;
  text-align: center;
  margin: 0 0 64px;
  color: var(--pr-text);
}

.pr-faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.pr-faq-item {
  border-bottom: 1px solid var(--pr-border);
}

.pr-faq-question {
  width: 100%;
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  background: none;
  border: none;
  font-size: 18px;
  font-weight: 600;
  color: var(--pr-text);
  cursor: pointer;
  text-align: left;
  transition: color 0.3s ease;
  font-family: inherit;
}

.pr-faq-question:hover {
  color: var(--pr-primary);
}

.pr-faq-arrow {
  width: 24px;
  height: 24px;
  color: var(--pr-text-light);
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.pr-faq-item.active .pr-faq-arrow {
  transform: rotate(180deg);
  color: var(--pr-primary);
}

.pr-faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
}

.pr-faq-item.active .pr-faq-answer {
  max-height: 400px;
  padding-bottom: 24px;
}

.pr-faq-answer p {
  font-size: 16px;
  line-height: 1.6;
  color: var(--pr-text-light);
  margin: 0;
}

/* ===== FINAL CTA ===== */
.pr-final-cta {
  padding: 100px 0;
  text-align: center;
  background: linear-gradient(180deg, var(--pr-bg) 0%, var(--pr-bg-alt) 100%);
}

.pr-final-title {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 700;
  margin: 0 0 16px;
  color: var(--pr-text);
}

.pr-final-subtitle {
  font-size: clamp(16px, 2vw, 20px);
  color: var(--pr-text-light);
  margin: 0 0 40px;
}

.pr-final-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 36px;
  background: var(--pr-primary);
  color: white;
  text-decoration: none;
  border-radius: 12px;
  font-size: 18px;
  font-weight: 600;
  transition: var(--pr-transition);
  box-shadow: 0 4px 16px rgba(0, 122, 255, 0.2);
}

.pr-final-btn:hover {
  background: var(--pr-primary-dark);
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(0, 122, 255, 0.3);
}

.pr-final-btn svg {
  width: 20px;
  height: 20px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .pr-hero {
    padding: 60px 0 40px;
  }

  .pr-toggle-section {
    padding: 32px 0 48px;
  }

  .pr-toggle-wrapper {
    flex-direction: column;
    width: 100%;
    max-width: 320px;
  }

  .pr-toggle-btn {
    width: 100%;
  }

  .pr-cards {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .pr-card-popular {
    transform: scale(1);
  }

  .pr-card-popular:hover {
    transform: translateY(-8px);
  }

  .pr-card {
    padding: 32px 24px;
  }

  .pr-trust {
    padding: 60px 0;
  }

  .pr-trust-grid {
    gap: 40px;
  }

  .pr-faq {
    padding: 60px 0;
  }

  .pr-faq-title {
    margin-bottom: 40px;
  }

  .pr-final-cta {
    padding: 80px 0;
  }
}

@media (max-width: 480px) {
  .pr-container {
    padding: 0 16px;
  }

  .pr-price {
    font-size: 40px;
  }

  .pr-plan-name {
    font-size: 24px;
  }
}

/* ===== ANIMATIONS ===== */
@keyframes pr-fade-in {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.pr-card {
  animation: pr-fade-in 0.6s ease forwards;
}

.pr-card:nth-child(1) { animation-delay: 0.1s; }
.pr-card:nth-child(2) { animation-delay: 0.2s; }
.pr-card:nth-child(3) { animation-delay: 0.3s; }

/* ===== ACCESSIBILITY ===== */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

.pr-cta:focus,
.pr-toggle-btn:focus,
.pr-faq-question:focus,
.pr-final-btn:focus {
  outline: 2px solid var(--pr-primary);
  outline-offset: 2px;
}






/* ===== SERVICE CARDS – PREMIUM VERTICAL & HORIZONTAL ===== */
.pr-sc {
  /* padding: 80px 0 96px; */
  background: var(--pr-bg);
}

.pr-sc-vertical {
  max-width: 100%;
  margin: 0 auto 40px;
}

.pr-sc-vertical-inner {
  border-radius: 28px;
  border: 1px solid rgba(210,210,215,0.9);
  background:
    radial-gradient(circle at top left, rgba(0,122,255,0.12), transparent 55%),
    radial-gradient(circle at bottom right, rgba(0,0,0,0.04), transparent 55%),
    #ffffff;
  box-shadow: 0 18px 60px rgba(0,0,0,0.08);
  padding: 28px 32px 26px;
  backdrop-filter: blur(16px);
}

.pr-sc-v-header {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 20px;
}

.pr-sc-v-title {
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--pr-text);
  margin: 0;
}

.pr-sc-v-sub {
  font-size: 14px;
  color: var(--pr-text-light);
  margin: 0;
  max-width: 560px;
}

/* toggle pill */
.pr-sc-toggle {
  margin-top: 6px;
  display: inline-flex;
  align-items: center;
  background: rgba(245,245,247,0.9);
  border-radius: 999px;
  padding: 4px;
  gap: 4px;
  align-self: flex-start;
}

.pr-sc-toggle-btn {
  border: none;
  background: transparent;
  padding: 7px 18px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 500;
  color: var(--pr-text-light);
  cursor: pointer;
  font-family: inherit;
  transition: var(--pr-transition);
}

.pr-sc-toggle-btn:hover {
  color: var(--pr-text);
}

.pr-sc-toggle-active {
  background: #ffffff;
  color: var(--pr-text);
  box-shadow: 0 2px 8px rgba(0,0,0,0.12);
}

/* vertical body */
.pr-sc-v-body {
  border-radius: 20px;
  background: rgba(255,255,255,0.8);
  padding: 20px 20px 18px;
  border: 1px solid rgba(210,210,215,0.7);
}

.pr-sc-v-panel {
  animation: pr-fade-in 0.35s ease;
}

.pr-sc-card-hidden {
  display: none;
}

.pr-sc-heading {
  font-size: 18px;
  font-weight: 600;
  margin: 0 0 8px;
  color: var(--pr-text);
}

.pr-sc-sub {
  font-size: 14px;
  color: var(--pr-text-light);
  margin: 0 0 16px;
  line-height: 1.6;
}

.pr-sc-list {
  list-style: none;
  margin: 0 0 18px;
  padding: 0;
}

.pr-sc-list li {
  position: relative;
  padding-left: 18px;
  font-size: 14px;
  color: var(--pr-text-light);
  margin-bottom: 6px;
}

.pr-sc-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--pr-primary);
}

.pr-sc-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  justify-content: space-between;
}

.pr-sc-tag {
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(0,122,255,0.12);
  color: var(--pr-primary-dark);
  font-size: 12px;
  font-weight: 600;
}

.pr-sc-tag-soft {
  background: rgba(0,0,0,0.04);
  color: var(--pr-text);
}

.pr-sc-note {
  font-size: 12px;
  color: var(--pr-text-light);
}

/* horizontal add-on cards */
.pr-sc-horizontal {
  max-width: 100%px;
  margin: 12px auto 0;
  border-radius: 26px;
  border: 1px solid rgba(210,210,215,0.9);
  background:
    radial-gradient(circle at top left, rgba(0,122,255,0.16), transparent 55%),
    #ffffff;
  padding: 22px 26px;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: center;
  box-shadow: 0 16px 55px rgba(0,0,0,0.08);
  transition: var(--pr-transition);
}

.pr-sc-horizontal:hover {
  transform: translateY(-4px);
  box-shadow: var(--pr-shadow-hover);
}

.pr-sc-h-left {
  flex: 1 1 auto;
}

.pr-sc-h-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
  min-width: 220px;
}

.pr-sc-list-inline {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
}

.pr-sc-list-inline li {
  margin-bottom: 0;
}

.pr-sc-free {
  margin-top: 20px;
  background:
    radial-gradient(circle at top, rgba(0,122,255,0.20), transparent 60%),
    #f5f5f7;
  border-color: rgba(0,122,255,0.6);
}

.pr-sc-btn {
  padding-inline: 26px;
}

/* responsive */
@media (max-width: 900px) {
  .pr-sc-vertical-inner {
    padding: 22px 20px;
  }
  .pr-sc-v-body {
    padding: 18px 16px 16px;
  }
  .pr-sc-horizontal {
    flex-direction: column;
    align-items: flex-start;
    padding: 20px 18px;
  }
  .pr-sc-h-right {
    align-items: flex-start;
    min-width: auto;
  }
}

@media (max-width: 600px) {
  .pr-sc {
    padding: 60px 0 72px;
  }
  .pr-sc-v-title {
    font-size: 20px;
  }
  .pr-sc-horizontal {
    border-radius: 22px;
  }
}























/* added */

.contact-support {
  margin-top: -50px;
  padding: 56px 24px;
  text-align: center;
}

.contact-support-title {
  font-size: 20px;
  font-weight: 500;
  color: #0f172a;
  margin-bottom: 40px;
  letter-spacing: -0.3px;
}

.contact-support-actions {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

/* Unified button style */
.support-action-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 26px;
  font-size: 15px;
  font-weight: 500;
  color: #0f172a;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 23px;
  text-decoration: none;
  transition: 
    background 0.25s ease,
    border-color 0.25s ease,
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

/* Icon style */
.support-action-btn i {
  font-size: 16px;
  color: #334155;
}

/* Hover – subtle Apple lift */
.support-action-btn:hover {
  background: #f8fafc;
  border-color: #d1d5db;
  transform: translateY(-1px);
  box-shadow:
    0 10px 24px rgba(0, 0, 0, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.6);
}

/* Active (pressed) */
.support-action-btn:active {
  transform: scale(0.98);
}


@media (max-width: 480px) {
  .contact-support {
    margin-top: 64px;
    padding: 40px 16px;
  }

  .contact-support-actions {
    gap: 14px;
  }

  .support-action-btn {
    width: 100%;
    justify-content: center;
  }
}













.pr-btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.2px;
  border-radius: 999px; /* pill shape */
  background: linear-gradient(135deg, #0a84ff, #0066ff);
  color: #ffffff;
  text-decoration: none;
  box-shadow: 0 6px 20px rgba(10, 132, 255, 0.25);
  transition: all 0.25s ease;
  border: none;
  cursor: pointer;
}

.pr-btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 30px rgba(10, 132, 255, 0.35);
}

.pr-btn-primary:active {
  transform: translateY(0);
  box-shadow: 0 4px 12px rgba(10, 132, 255, 0.25);
}











.pr-btn-soft {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 18px;
  font-size: 13px;
  font-weight: 600;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.04);
  color: #111;
  text-decoration: none;
  border: 1px solid rgba(0, 0, 0, 0.08);
  backdrop-filter: blur(10px);
  transition: all 0.25s ease;
  cursor: pointer;
}

.pr-btn-soft:hover {
  background: rgba(0, 0, 0, 0.08);
  transform: translateY(-1px);
}

.pr-btn-soft:active {
  transform: translateY(0);
}




.pr-btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  font-size: 14px;
  font-weight: 600;
  border-radius: 999px;
  background: #000;
  color: #fff;
  text-decoration: none;
  letter-spacing: 0.2px;
  transition: all 0.25s ease;
  cursor: pointer;
}

.pr-btn-primary:hover {
  background: #111;
  transform: translateY(-1px);
}

.pr-btn-primary:active {
  transform: translateY(0);
}








.pr-btn-soft {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 18px;
  font-size: 13px;
  font-weight: 600;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.04);
  color: #111;
  text-decoration: none;
  border: 1px solid rgba(0, 0, 0, 0.08);
  backdrop-filter: blur(12px);
  transition: all 0.25s ease;
  cursor: pointer;
}

.pr-btn-soft:hover {
  background: rgba(0, 0, 0, 0.08);
  transform: translateY(-1px);
}

.pr-btn-soft:active {
  transform: translateY(0);
}
