/* ─── TOKENS ─── */
:root {
  --text-light:          #333333;
  --text-dark:           #ffffff;

  --bg:                  #161A1E;
  --card:                #2C3034;
  --bg-card:             #141414;
  --bg-secondary:        #1f1f1f;
  --surface:             #1E2226;
  --border:              rgba(255,255,255,0.07);
  --accent:              #FFC107;
  --accent-dim-light:    rgba(255,193,7,0.08);
  --accent-dim-dark:     rgba(255,193,7,0.10);
  --accent-border-light: rgba(255,193,7);
  --accent-border-dark:  rgba(255,193,7,0.28);
  --fg:                  #E5E5E5;
  --muted-light:         #333333;
  --muted-dark:          rgba(225,225,225,0.45);

  --font-h:        'Rajdhani', sans-serif;
  --font-b:        'Manrope', sans-serif;
}

button { cursor: pointer; border: none; background: none; font-family: inherit; color: inherit; }

/* ─── SECTIONS ─── */
.hero       { padding: 7rem 1.5rem; }

/* ─── HERO ─── */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  padding: .35rem 1rem;
  border: 1px solid var(--accent-border-light);
  background: var(--accent-dim-light);
  color: var(--accent);
  font-family: var(--font-h);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  border-radius: 999px;
  margin-bottom: 2rem;
}
.dark .hero-badge {
  border: 1px solid var(--accent-border-dark);
  background: var(--accent-dim-dark);
}
.hero-title {
  font-family: var(--font-h);
  font-size: clamp(3.4rem, 9vw, 7rem);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -.01em;
  margin-bottom: 1.5rem;
  color: var(--text-light)!important;
}
.dark .hero-title {
  color: var(--text-dark)!important;
}
.hero-sub {
  font-size: 1.05rem; 
  color: var(--muted-light); 
  line-height: 1.75;
  margin-bottom: 2.5rem;
}
.dark .hero-sub{
  color: var(--muted-dark); 
}
.scroll-cue {
  display: inline-flex; 
  margin-top: 0.5rem;
  color: rgba(255,193,7,.8); cursor: pointer;
  animation: bounce 2s ease-in-out infinite;
}
.dark .scroll-cue {
  color: rgba(255,193,7,.6); cursor: pointer;
}
@keyframes bounce { 0%,100%{transform:translateY(0)} 50%{transform:translateY(8px)} }
@keyframes fadeInUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }

/* ─── HELPERS ─── */
.accent { color: var(--accent); }
.dark .dim    { color: rgba(229,229,229,0.78); }


/* ─── RESPONSIVE ─── */
@media(max-width:600px){
  .section, .section-xl, .hero { padding-left: 1rem; padding-right: 1rem; }
  .cta-theses { flex-direction: column; align-items: center; }
  .pricing-featured { transform: none; }
  .pricing-featured:hover { transform: translateY(-3px); }
  .hero-title { font-size: clamp(3rem, 14vw, 5rem); }
}

/* ─── BUTTONS ─── */
.btn-basic {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .85rem 2.2rem;
  background: var(--accent); color: #000;
  font-family: var(--font-h); font-size: .95rem; font-weight: 600;
  letter-spacing: .03em; border-radius: .75rem;
  transition: box-shadow .25s, transform .2s;
}
.btn-basic:hover  { box-shadow: 0 0 36px rgba(255,193,7,.4); transform: translateY(-2px) scale(1.03); }
.btn-basic:active { transform: scale(.97); }

.btn-outline {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  padding: .85rem 2rem;
  background: transparent; color: var(--fg);
  font-family: var(--font-h); font-size: .9rem; font-weight: 600;
  border: 1px solid var(--border); border-radius: .75rem;
  transition: border-color .2s, background .2s;
}
.btn-outline:hover { border-color: var(--accent-border); background: var(--accent-dim); }

.btn-lg  { padding: 1.1rem 3rem; font-size: 1.05rem; }
.w-full  { width: 100%; justify-content: center; }

/* Container */
.container-basic {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}

.container-small {
  max-width: 1024px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* Benefits Section */
.benefits {
  padding: 8rem 0;
  position: relative;
  overflow: hidden;
}

.benefits-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent, rgba(255, 193, 7, 0.05), transparent);
  pointer-events: none;
}

.section-header {
  text-align: center;
  margin-bottom: 5rem;
}

.section-header h2 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  margin-bottom: 1rem;
}

.section-header p {
  font-size: 1.25rem;
  color: var(--muted-light);
}
.dark .section-header p {
  color: var(--muted-dark);
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.benefit-card {
  position: relative;
  background: linear-gradient(to bottom, rgba(20, 20, 20, 0.01), rgba(31, 31, 31, 0.02));
  border: 1px solid #CED4DA;
  border-radius: 16px;
  padding: 2rem;
  transition: all 0.5s cubic-bezier(0.22, 1, 0.36, 1);
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.6s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.dark .benefit-card {
  background: linear-gradient(to bottom, var(--bg-card), var(--bg-secondary));
  border: 1px solid var(--border);
}

.benefit-card[data-delay="100"] { animation-delay: 0.1s; }
.benefit-card[data-delay="200"] { animation-delay: 0.2s; }
.benefit-card[data-delay="300"] { animation-delay: 0.3s; }
.benefit-card[data-delay="400"] { animation-delay: 0.4s; }
.benefit-card[data-delay="500"] { animation-delay: 0.5s; }
.benefit-card[data-delay="600"] { animation-delay: 0.6s; }
.benefit-card[data-delay="700"] { animation-delay: 0.7s; }


.benefit-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(255, 193, 7, 0.1), transparent);
  border-radius: 16px;
  opacity: 0;
  transition: opacity 0.5s;
}

.benefit-card:hover::before {
  opacity: 1;
}

.benefit-card:hover {
  border-color: rgba(255, 193, 7, 0.4);
  box-shadow: 0 0 40px rgba(255, 193, 7, 0.15);
}

.benefit-icon {
  display: inline-flex;
  margin-bottom: 1rem;
  transition: all 0.3s;
  color: var(--accent);
}

.benefit-card i {
  font-size: 2.2rem;
}

.benefit-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.benefit-card p {
  color: var(--muted-light);
  line-height: 1.6;
}
.dark .benefit-card p {
  color: var(--muted-dark);
}

/* Pricing Section */
.pricing {
  padding: 2rem 0;
  position: relative;
}

.billing-toggle-wrapper {
  display: flex;
  justify-content: center;
  margin-bottom: 4rem;
}

.billing-toggle {
  position: relative;
  background: #fff;
  padding: 6px;
  border-radius: 12px;
  border: 1px solid #CED4DA;
  display: flex;
  gap: 6px;
}
.dark .billing-toggle {
  background: var(--bg-secondary);
  border: 1px solid var(--border);
}

.billing-slider {
  position: absolute;
  top: 6px;
  bottom: 6px;
  width: calc(50% - 6px);
  background: var(--accent);
  border-radius: 8px;
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
  left: 6px;
}

.billing-option {
  position: relative;
  z-index: 10;
  padding: 0.75rem 2rem;
  background: transparent;
  border: none;
  border-radius: 8px;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-muted);
  cursor: pointer;
  transition: color 0.3s;
}

.billing-option.active {
  color: var(--text-light);
}

.discount {
  font-size: 0.875rem;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  max-width: 1400px;
  margin: 0 auto;
}

.pricing-card {
  position: relative;
  background: linear-gradient(to bottom, rgba(20, 20, 20, 0.01), rgba(31, 31, 31, 0.02));
  border: 1px solid #CED4DA;
  border-radius: 16px;
  padding: 2rem;
  transition: all 0.5s cubic-bezier(0.22, 1, 0.36, 1);
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.6s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
.dark .pricing-card {
  background: linear-gradient(to bottom, var(--bg-card), var(--bg-secondary));
  border: 1px solid var(--border);
}

.pricing-card[data-delay="100"] {
  animation-delay: 0.1s;
}

.pricing-card[data-delay="200"] {
  animation-delay: 0.2s;
}

.pricing-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(255, 193, 7, 0.05), transparent);
  border-radius: 16px;
  opacity: 0;
  transition: opacity 0.5s;
  pointer-events: none;
}

.pricing-card:hover::before {
  opacity: 1;
}

.pricing-card:hover {
  border-color: rgba(255, 193, 7, 0.4);
  box-shadow: 0 0 30px rgba(255, 193, 7, 0.1);
}

.pricing-card.featured {
  transform: scale(1.1);
  z-index: 10;
  border-color: var(--accent);
  box-shadow: 0 0 50px rgba(255, 193, 7, 0.2);
}

.pricing-card.featured:hover {
  box-shadow: 0 0 70px rgba(255, 193, 7, 0.3);
}

.featured-badge {
  position: absolute;
  top: -1rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 20;
  padding: 0.375rem 1rem;
  background: var(--accent);
  color: var(--text-light);
  font-family: var(--font-display);
  font-size: 0.875rem;
  font-weight: 600;
  border-radius: 9999px;
}

.card-icon {
  display: inline-flex;
  font-size: 1.5rem;
  border-radius: 12px;
  margin-bottom: 1rem;
  transition: all 0.3s;
}

.accent-icon {
  background: rgba(255, 193, 7, 0.2);
}

.accent-icon svg {
  stroke: var(--accent);
}

.plan-name {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.price-wrapper {
  display: flex;
  align-items: flex-end;
  gap: 0.5rem;
  margin-bottom: 2rem;
}

.price {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 700;
}

.period {
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}

.features {
  list-style: none;
  margin-bottom: 2rem;
}

.features li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.75rem 0;
  color: rgba(245, 245, 245, 0.9);
}

.plan-cta {
  width: 100%;
  padding: 1rem;
  background: rgba(255, 193, 7, 0.1);
  border: 1px solid var(--accent);
  border-radius: 12px;
  color: var(--text-primary);
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
}
.dark .plan-cta{
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  color: var(--text-primary);
}

.plan-cta:hover {
  border-color: var(--accent);
  background: rgba(255, 193, 7, 0.18);
}

.featured-cta {
  background: var(--accent);
  color: var(--text-light);
  border-color: var(--accent);
}
.dark .featured-cta {
  background: var(--accent);
  color: var(--text-light);
  border-color: var(--accent);
}

.featured-cta:hover {
  box-shadow: 0 0 30px rgba(255, 193, 7, 0.4);
  transform: scale(1.02);
}

/* Comparison Table */
.comparison {
  padding: 8rem 0;
}

.table-wrapper {
  overflow-x: auto;
  margin-top: 4rem;
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
}

.comparison-table th {
  padding: 1.5rem;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  border-bottom: 1px solid var(--border);
}

.comparison-table th.text-left {
  text-align: left;
  color: var(--text-muted);
  font-size: 1.125rem;
}

.comparison-table th.pro-column {
  background: rgba(255, 193, 7, 0.1);
  border-left: 1px solid rgba(255, 193, 7, 0.3);
  border-right: 1px solid rgba(255, 193, 7, 0.3);
  color: var(--accent);
}

.comparison-table td {
  padding: 1.5rem;
  text-align: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  transition: background 0.3s;
}

.comparison-table tr:hover td {
  background: rgba(42, 42, 42, 0.2);
}

.comparison-table td:first-child {
  text-align: left;
  color: var(--text-light);
}

.dark .comparison-table td:first-child {
  color: rgba(245, 245, 245, 0.9);
}


.comparison-table td.pro-column {
  background: rgba(255, 193, 7, 0.05);
  border-left: 1px solid rgba(255, 193, 7, 0.2);
  border-right: 1px solid rgba(255, 193, 7, 0.2);
}

.icon-check {
  color: #10b981;
  font-size: 1.5rem;
}

.pro-column .icon-check {
  color: var(--accent);
}

.icon-cross {
  color: rgba(160, 160, 160, 0.4);
  font-size: 1.5rem;
}

/* FAQ */
.faq {
  padding: 8rem 0;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.5s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.faq-item[data-delay="50"] { animation-delay: 0.05s; }
.faq-item[data-delay="100"] { animation-delay: 0.1s; }
.faq-item[data-delay="150"] { animation-delay: 0.15s; }
.faq-item[data-delay="200"] { animation-delay: 0.2s; }
.faq-item[data-delay="250"] { animation-delay: 0.25s; }
.faq-item[data-delay="300"] { animation-delay: 0.3s; }
.faq-item[data-delay="350"] { animation-delay: 0.35s; }

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.5rem;
  background: linear-gradient(to bottom, rgba(20, 20, 20, 0.01), rgba(31, 31, 31, 0.02));
  border: 1px solid #CED4DA;
  border-radius: 12px;
  color: var(--text-primary);
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  transition: all 0.3s;
}
.dark .faq-question {
  background: linear-gradient(to bottom, var(--bg-card), var(--bg-secondary));
  border: 1px solid var(--border);
}

.faq-question:hover {
  border-color: rgba(255, 193, 7, 0.4);
}

.faq-icon {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 193, 7, 0.1);
  border-radius: 50%;
  transition: all 0.3s;
}

.faq-question:hover .faq-icon {
  background: rgba(255, 193, 7, 0.2);
}

.faq-icon svg {
  stroke: var(--accent);
  transition: transform 0.3s;
}

.faq-item.active .faq-icon svg line:first-child {
  transform: rotate(90deg);
  opacity: 0;
}

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

.faq-item.active .faq-answer {
  max-height: 500px;
  padding: 1rem 1.5rem 1.5rem;
}

.faq-answer p {
  color: var(--text-muted);
  line-height: 1.6;
}

/* ─── FINAL CTA ─── */
.cta-title {
  font-family: var(--font-h);
  font-size: clamp(2.4rem, 6vw, 4.5rem);
  font-weight: 700; line-height: 1.1; letter-spacing: -.01em;
  margin-bottom: 2rem;
}
.cta-lead { 
  font-size: 1.1rem; 
  color: var(--light-text); 
  margin-bottom: .75rem; 
}
.dark .cta-lead { 
  color: var(--dark-text); 
}
.cta-body { 
  font-size: .95rem; 
  color: var(--light-text); 
  max-width: 600px; 
  margin: 0 auto 3rem!important; 
  line-height: 1.8; 
}
.dark .cta-body { 
  color: var(--dark-text); 
}
.cta-theses { display: flex; flex-wrap: wrap; justify-content: center; gap: 1.5rem; margin-bottom: 3rem; }
.thesis { display: flex; align-items: center; gap: .6rem; font-size: .88rem; color: var(--muted); }
.thesis-check {
  flex-shrink: 0; 
  width: 1.3rem; 
  height: 1.3rem;
  display: flex; 
  align-items: center; 
  justify-content: center;
  background: var(--accent-dim-light); 
  border: 1px solid var(--accent-border-light);
  border-radius: 50%; 
  color: var(--accent); 
  font-size: .75rem; font-weight: 700;
}
.dark .thesis-check {
  background: var(--accent-dim-dark); 
  border: 1px solid var(--accent-border-dark);
  color: var(--accent); 
}
.cta-note { margin-top: 1.5rem; font-size: .82rem; color: rgba(229,229,229,.22); }

/* ─── STICKY BUTTON ─── */
.sticky-btn {
  position: fixed; bottom: 1.7rem; right: 3.5rem; z-index: 999;
  opacity: 0; pointer-events: none; transform: translateY(12px);
  transition: opacity .3s, transform .3s;
}
.sticky-btn.visible { opacity: 1; pointer-events: auto; transform: none; }

/* Responsive */
@media (max-width: 768px) {
  .benefits-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .comparison-table th,
  .comparison-table td { padding: 0.6rem 0.4rem; font-size: 0.82rem; }

  .comparison-table th { font-size: 0.9rem; }
}

#stickyBtn .top-app-style {
  position: relative;
  bottom: 42px!important;
}