/* ============================================================
   PRICING PAGE - FIXED
   ============================================================ */

:root {
  --primary: #f58217;
  --text: #1a1a1a;
  --bg: #fafafa;
  --card: #ffffff;
  --radius: 1.4rem;
  --gap: 3rem;
  --transition: 0.4s ease;
  --footer-bg: #fff;
  --font-semi: 600;
  --mb-4: 1.5rem;
  --smaller-font-size: 0.813rem;
}

.dark {
  --bg: #0a0a0a;
  --card: #111;
  --text: #e0e0e0;
  --footer-bg: #0a0a0a;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Montserrat', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  overflow-x: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

section {
  padding: var(--gap) 0;
}

/* === HEADER === */
.l-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
  z-index: 1000;
  box-shadow: 0 1px 12px rgba(0, 0, 0, 0.08);
  height: 70px;
  display: flex;
  align-items: center;
}

.dark .l-header {
  background: rgba(17, 17, 17, 0.96);
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 100%;
  padding: 0 1.5rem;
}

.nav__logo {
  font-weight: 700;
  font-size: 1.35rem;
  color: var(--primary);
  text-decoration: none;
}

/* === BACK BUTTON === */
.back-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.55rem 1.1rem;
  background: #ffffff;
  color: #1a1a1a;
  border: 2px solid rgba(0, 0, 0, 0.15);
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.94rem;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  backdrop-filter: blur(8px);
  height: 40px;
  white-space: nowrap;
  transition: all 0.4s ease;
}

.back-btn i {
  font-size: 1.1rem;
  color: var(--primary);
  transition: transform 0.4s ease;
}

.back-btn:hover {
  border-color: var(--primary);
  background: rgba(245, 130, 23, 0.1);
}

.back-btn:hover i {
  transform: scale(1.15);
  filter: drop-shadow(0 0 8px rgba(245, 130, 23, 0.6));
}

.dark .back-btn {
  background: rgba(17, 17, 17, 0.8);
  color: #e0e0e0;
  border-color: rgba(255, 255, 255, 0.2);
}

.dark .back-btn:hover {
  background: rgba(245, 130, 23, 0.15);
}

/* === HERO === */
.pricing-hero {
  padding: 8rem 0 4rem;
  background: linear-gradient(#f58217);
  text-align: center;
  color: #fff;
}

.pricing-hero h1 {
  font-size: 3.5rem;
  margin-bottom: 1rem;
  font-weight: 800;
}

.pricing-hero p {
  font-size: 1.3rem;
  opacity: 0.9;
}

.trust-bar {
  margin-top: 2rem;
  display: flex;
  justify-content: center;
  gap: 2rem;
  font-weight: 600;
  font-size: 1.1rem;
}

.trust-bar span {
  background: rgba(255, 255, 255, 0.1);
  padding: 0.5rem 1rem;
  border-radius: 50px;
  backdrop-filter: blur(4px);
}

/* === PRICING TIERS === */
.pricing-tiers {
  padding: 6rem 0;
  background: var(--bg);
}

.pricing-tiers .container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2.5rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

.pricing-layout {
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 4rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

/* === CARD === */
.tier-card {
    width: 45%;
  background: #ffffff;
  color: #1a1a1a;
  /* Reduced padding to stop squishing content (was 5rem) */
  padding: 3rem 2rem; 
  border-radius: 1.8rem;
  text-align: center;
  position: relative;
  transition: all .4s ease;
  border: 2px solid transparent;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 520px;
  box-shadow: 0 8px 25px rgba(0,0,0,.08);
}

.dark .tier-card {
  background: #111;
  color: #e0e0e0;
  box-shadow: 0 8px 25px rgba(0,0,0,.3);
}

.tier-card:hover {
  transform: translateY(-12px);
  border: 2px solid var(--primary);
  box-shadow: 0 20px 40px rgba(245,130,23,.2);
}

/* RECOMMENDED */
.recommended {
  transform: scale(1.05);
  background: linear-gradient(135deg, #f8f9fa, #e9ecef);
  border: 2px solid var(--primary) !important;
}

.dark .recommended {
  background: linear-gradient(135deg, #1a1a1a, #222);
}

/* === PRICING BADGE (THE PILLS) === */
.pricing-badge {
    background: var(--primary);
    color: #fff;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 12px rgba(245, 130, 23, 0.3);
    
    /* Flex alignment to make them perfect pills */
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 80px;      /* Ensures they aren't dots */
    height: 36px;         /* Fixed height */
    align-self: center;   /* Centers in the card flex column */
    width: auto !important; /* Forces auto width */
}

/* Spacer for cards without a badge */
.badge-spacer {
    height: 36px;
    margin-bottom: 1.5rem;
    width: 100%;
    display: block;
}

/* TITLE */
.tier-card h3 {
  font-size: 2.5rem;
  margin-bottom: .8rem;
  color: #1a1a1a;
}

.dark .tier-card h3 { color: #fff; }

/* PRICE */
.price {
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 1.2rem;
  line-height: 1.1;
}

.price span {
  font-size: 1rem;
  font-weight: 400;
  color: #555;
  margin-top: 5px;
}

.dark .price span { color: #aaa; }

.price-custom {
  font-size: 2.8rem;
  color: var(--primary);
}

/* FEATURES LIST */
.features-list {
  list-style: none;
  margin: 1.5rem 0;
  flex-grow: 1;
  text-align: left;
  padding: 0 0.5rem;
}

.features-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 0.8rem;
  color: #1a1a1a;
  font-size: 0.95rem;
  line-height: 1.5;
}

.dark .features-list li {
  color: #e0e0e0;
}

.features-list li i {
  font-size: 1.3rem;
  color: var(--primary);
  flex-shrink: 0;
  margin-top: 2px;
}

.features-list li.highlight {
  color: #000;
  font-weight: 700;
  background: rgba(245, 130, 23, 0.1);
  padding: 8px 12px;
  border-radius: 8px;
  margin-left: -12px;
  width: calc(100% + 24px);
}

.dark .features-list li.highlight {
  color: #fff;
  background: rgba(245, 130, 23, 0.25);
}

/* BUTTONS */
.tier-card .btn-primary {
  display: inline-block;
  background: var(--primary);
  color: #fff;
  padding: .9rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  margin-top: 1.5rem;
  transition: all .3s ease;
  box-shadow: 0 6px 18px rgba(245,130,23,.3);
  
  /* Prevent circle shape & text wrap */
  white-space: nowrap; 
  width: auto;
  min-width: 140px;
  text-align: center;
  align-self: center;
}

.tier-card .btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(245,130,23,.4);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .tier-card.recommended { transform: scale(1); }
  .tier-card { min-height: auto; padding: 2rem 1.5rem; width: 100%; }
  .price { font-size: 1.6rem; }
  .tier-card h3 {font-size: 2rem; line-height: 1.3}
  .features-list li { font-size: .9rem; }
}

/* === FAQ PILLS === */
.pricing-faq-minimal {
  padding: 6rem 0 4rem;
  background: var(--bg);
}

.faq-title {
  font-size: 2rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 3rem;
  text-align: center;
}

.faq-minimal {
  max-width: 560px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  background: #ffffff;
  border: 2px solid transparent;
  border-radius: 1.4rem;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0,0,0,.08);
  transition: all 0.4s ease;
  cursor: pointer;
  position: relative;
}

.dark .faq-item {
  background: #1a1a1a;
  box-shadow: 0 8px 25px rgba(0,0,0,.3);
}

.faq-item:hover {
  transform: translateY(-10px);
  border: 2px solid var(--primary);
  box-shadow: 0 20px 40px rgba(245,130,23,.25);
}

.faq-item summary {
  padding: 1.1rem 1.5rem;
  font-weight: 600;
  font-size: 1.05rem;
  color: #1a1a1a;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
  gap: 1rem;
}

.dark .faq-item summary {
  color: #e0e0e0;
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-arrow {
  width: 18px;
  height: 18px;
  color: #f58217;
  transition: transform 0.35s ease;
  flex-shrink: 0;
}

.faq-item[open] .faq-arrow {
  transform: rotate(180deg);
}

.faq-item p {
  margin: 0;
  padding: 0 1.5rem 1.3rem;
  font-size: 0.95rem;
  line-height: 1.6;
  color: #4b5563;
}

.dark .faq-item p {
  color: #bbb;
}

/* === CTA === */
.pricing-cta {
  padding: 6rem 0 8rem;
  background: var(--bg);
}

.cta-block {
  background: linear-gradient(135deg, #ea580c 0%, #c2410c 100%);
  border-radius: 2rem;
  padding: 3rem 2rem;
  text-align: center;
  color: #fff;
  box-shadow: 0 12px 32px rgba(234, 88, 12, .3);
  max-width: 800px;
  margin: 0 auto;
}

.cta-block h2 {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: .5rem;
}

.cta-block p {
  font-size: 1.25rem;
  opacity: .95;
  margin-bottom: 1.5rem;
}

.cta-btn {
  background: #fff;
  color: #ea580c;
  font-weight: 700;
  font-size: 1.125rem;
  padding: .75rem 2rem;
  border-radius: 9999px;
  display: inline-block;
  box-shadow: 0 4px 12px rgba(0, 0, 0, .15);
  transition: all .2s ease;
}

.cta-btn:hover {
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 8px 20px rgba(0, 0, 0, .2);
}

.cta-logo {
  margin-top: 2rem;
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: .05em;
}

.cta-logo span:first-child {
  color: #fed7aa;
}

/* === THEME TOGGLE === */
.theme-toggle {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1.6rem;
  color: #1a1a1a;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
  transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
  z-index: 9999;
  overflow: hidden;
  border: 3px solid transparent;
  backdrop-filter: blur(12px);
}

.theme-toggle:hover::before {
  opacity: 1;
}

.theme-toggle i {
  position: absolute;
  transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  font-size: 1.6rem;
}

.theme-toggle .bx-moon {
  opacity: 1;
  transform: translateY(0) rotate(0deg);
  color: #ffd43b;
}

.theme-toggle .bx-sun {
  opacity: 0;
  transform: translateY(20px) rotate(180deg);
  color: #ff6b35;
}

.theme-toggle.active .bx-moon {
  opacity: 0;
  transform: translateY(-20px) rotate(-180deg);
}

.theme-toggle.active .bx-sun {
  opacity: 1;
  transform: translateY(0) rotate(0deg);
}

.theme-toggle:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(245, 130, 23, 0.3);
}

.dark .theme-toggle {
  background: #111;
  color: #fff;
}

.dark .theme-toggle:hover {
  box-shadow: 0 12px 40px rgba(255, 255, 255, 0.1);
}

/* === GLOW HOVER === */
.glow-hover {
  background: var(--card);
  color: var(--text);
  border-radius: 1.2rem;
  padding: 1.2rem 1.6rem;
  transition: all .4s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, .1);
  position: relative;
  overflow: hidden;
  border: 2px solid transparent;
  cursor: pointer;
}

.glow-hover:hover {
  transform: translateY(-18px);
  box-shadow: 0 20px 40px rgba(245, 130, 23, .25);
  border: 2px solid var(--primary);
}

body:not(.dark) .glow-hover:hover {
  background: #f5f5f5;
}

.dark .glow-hover:hover {
  background: #1f1f1f;
}

/* === RESPONSIVE === */
@media (max-width: 768px) {
  .pricing-hero h1 { font-size: 2.5rem; }
  .pricing-hero { padding: 6rem 0 3rem; }
  .trust-bar { flex-direction: column; gap: 1rem; }
  .tier-card.recommended { transform: scale(1); }
  .pricing-tiers .container { grid-template-columns: 1fr; }
  .faq-title { font-size: 1.8rem; }
  .theme-toggle { width: 56px; height: 56px; bottom: 1.5rem; right: 1.5rem; }
}

/* LOGO SIZES */
.nav__logo img,
.header .logo-img,
#nav-logo,
nav img.logo-img {
  height: 110px !important;
  width: auto !important;
  padding: 0 !important;
  margin: 0 !important;
  display: block;
}
@media (max-width: 768px) {
  .nav__logo img,
  .header .logo-img,
  #nav-logo,
  nav img.logo-img {
    height: 80px !important;
  }
}

.footer-logo-img,
.footer__logo img,
#footer-logo,
footer img {
  height: 160px !important;
  width: auto !important;
  padding: 0 !important;
  margin: 2rem auto 1.5rem auto !important;
  display: block;
}
@media (max-width: 768px) {
  .footer-logo-img,
  .footer__logo img,
  #footer-logo,
  footer img {
    height: 130px !important;
  }
}

/* FOOTER */
.footer {
  background: var(--footer-bg); color: var(--text); text-align: center;
  font-weight: var(--font-semi); padding: 2rem 0;
}
.footer__social { display: flex; justify-content: center; gap: .5rem;
  align-items: center; margin-bottom: var(--mb-4); }
.footer__icon {
  display: flex; align-items: center; gap: .25rem; color: var(--text);
  font-size: 1.5rem; transition: all .3s; overflow: hidden; white-space: nowrap;
}
.footer__icon span { max-width: 0; opacity: 0; transition: all .3s; font-size: .875rem; }
.footer__icon:hover span { max-width: 120px; opacity: 1; margin-left: .5rem; }
.footer__icon.facebook:hover   { color: #1877F2; }
.footer__icon.instagram:hover  { color: #E1306C; }
.footer__icon.twitter:hover    { color: #1DA1F2; }
.footer__icon.youtube:hover    { color: #f50606; }
.footer__icon.linkedin:hover   { color: #018afa; }