/* ===================== */
/* HOME / LANDING PAGE   */
/* ===================== */

header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 2rem;
  border-bottom: 0.5px solid var(--border);
  backdrop-filter: blur(10px);
  background: rgba(8,8,8,0.85);
  position: sticky;
  top: 0;
  z-index: 100;
}

.cta-btn-small {
  background: var(--accent);
  border: none;
  border-radius: 100px;
  color: var(--black);
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 700;
  padding: 8px 18px;
  text-decoration: none;
  transition: all 0.2s;
  white-space: nowrap;
}

.cta-btn-small:hover { background: #f0ff6b; }

/* Hero */
.hero-section {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 4rem 2rem 4rem;
  max-width: 1100px;
  margin: 0 auto;
  gap: 3rem;
  overflow: hidden;
}

.hero-glow {
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(232,255,71,0.08) 0%, transparent 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.hero-content { flex: 1; max-width: 560px; }

.hero-tag {
  display: inline-block;
  background: var(--surface2);
  border: 0.5px solid var(--border-hover);
  border-radius: 100px;
  font-size: 13px;
  color: var(--text-secondary);
  padding: 6px 16px;
  margin-bottom: 1.5rem;
}

.hero-section h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(64px, 9vw, 100px);
  line-height: 0.92;
  letter-spacing: 1px;
  color: var(--white);
  margin-bottom: 1.5rem;
}

.highlight { color: var(--accent); display: block; }

.hero-desc {
  font-size: 17px;
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 480px;
  margin-bottom: 2rem;
}

.hero-btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

.btn-primary {
  background: var(--accent);
  border: none;
  border-radius: 100px;
  color: var(--black);
  cursor: pointer;
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  font-weight: 700;
  padding: 14px 28px;
  text-decoration: none;
  transition: all 0.2s;
  display: inline-block;
}

.btn-primary:hover {
  background: #f0ff6b;
  transform: translateY(-2px);
}

.btn-ghost {
  background: transparent;
  border: 0.5px solid var(--border-hover);
  border-radius: 100px;
  color: var(--text-secondary);
  cursor: pointer;
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  font-weight: 500;
  padding: 14px 28px;
  text-decoration: none;
  transition: all 0.2s;
  display: inline-block;
}

.btn-ghost:hover { color: var(--white); border-color: var(--white); }

.hero-stats {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.stat { text-align: center; }
.stat-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 28px;
  color: var(--accent);
  letter-spacing: 1px;
  display: block;
}
.stat-label { font-size: 12px; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.6px; }
.stat-div { width: 0.5px; height: 32px; background: var(--border-hover); }

/* Floating cards */
.hero-cards {
  flex-shrink: 0;
  position: relative;
  width: 280px;
  height: 320px;
}

.float-card {
  position: absolute;
  background: var(--surface);
  border: 0.5px solid var(--border-hover);
  border-radius: 16px;
  padding: 14px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
  animation: float 4s ease-in-out infinite;
  width: 240px;
}

.fc1 { top: 0; left: 20px; animation-delay: 0s; border-color: #e6ff4737; }
.fc2 { top: 120px; left: 0; animation-delay: 1s; border-color: #f9741637; }
.fc3 { top: 235px; left: 30px; animation-delay: 2s; border-color: #fbbe2436; }

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.fc-icon { font-size: 24px; flex-shrink: 0; }
.fc-title { font-size: 13px; font-weight: 600; color: var(--white); margin-bottom: 2px; }
.fc-sub { font-size: 11px; color: var(--text-muted); }

/* Sections */
.features-section,
.hiw-section,
.testimonials-section,
.pricing-section,
.cta-section {
  max-width: 1100px;
  margin: 0 auto;
  padding: 5rem 2rem;
  text-align: center;
}

.section-tag {
  display: inline-block;
  background: var(--surface2);
  border: 0.5px solid var(--border-hover);
  border-radius: 100px;
  font-size: 12px;
  color: var(--text-secondary);
  padding: 5px 14px;
  margin-bottom: 1rem;
}

.section-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(36px, 5vw, 54px);
  letter-spacing: 1px;
  color: var(--white);
  line-height: 1;
  margin-bottom: 1rem;
}

.section-sub {
  font-size: 15px;
  color: var(--text-muted);
  margin-bottom: 3rem;
}

/* Quick Access Section */
.quick-access-section {
  max-width: 1100px;
  margin: 0 auto;
  padding: 5rem 2rem 3rem;
  text-align: center;
  background: linear-gradient(135deg, rgba(232,255,71,0.03) 0%, transparent 100%);
  border-top: 0.5px solid var(--border);
  border-bottom: 0.5px solid var(--border);
}

.qa-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(32px, 5vw, 48px);
  letter-spacing: 1px;
  color: var(--white);
  margin-bottom: 2rem;
  margin-top: 0;
}

.qa-buttons {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
  gap: 1rem;
  max-width: 1100px;
  margin: 0 auto;
}

.qa-btn {
  background: var(--surface);
  border: 0.5px solid var(--border);
  border-radius: 12px;
  padding: 1rem 0.75rem;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  color: var(--text-secondary);
  font-weight: 500;
  font-size: 12px;
  position: relative;
  overflow: hidden;
}

.qa-btn::before {
  content: '';
  position: absolute;
  width: 0;
  height: 100%;
  background: rgba(232,255,71,0.1);
  left: 50%;
  top: 0;
  border-radius: 12px;
  transition: width 0.3s ease;
  z-index: 0;
}

.qa-btn:hover {
  border-color: var(--border-hover);
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 12px 32px rgba(232,255,71,0.15);
}

.qa-btn:hover::before { width: 100%; left: 0; }

.qa-btn span {
  position: relative;
  z-index: 1;
}

.qa-btn i {
  position: relative;
  z-index: 1;
}

/* Individual button colors for visual interest */
.qa-btn-1 { --btn-color: #E8FF47; }
.qa-btn-2 { --btn-color: #a78bfa; }
.qa-btn-3 { --btn-color: #f97316; }
.qa-btn-4 { --btn-color: #ef4444; }
.qa-btn-5 { --btn-color: #22c55e; }
.qa-btn-6 { --btn-color: #60a5fa; }
.qa-btn-7 { --btn-color: #60a5fa; }
.qa-btn-8 { --btn-color: #fbbf24; }
.qa-btn-9 { --btn-color: #34d399; }
.qa-btn-10 { --btn-color: #fbbf24; }
.qa-btn-11 { --btn-color: #c084fc; }

.qa-btn:hover {
  border-color: var(--btn-color);
}

/* Features grid */

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.25rem;
  margin: 0 auto;
  max-width: 1000px;
}

@media (min-width: 768px) {
  .features-grid {
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  }
}

@media (min-width: 1200px) {
  .features-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.feature-card {
  background: var(--surface);
  border: 0.5px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  text-decoration: none;
  transition: all 0.2s;
  position: relative;
  display: block;
  text-align: left;
}

.feature-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-3px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.feature-card.fc-accent {
  border-color: rgba(232,255,71,0.2);
  background: linear-gradient(135deg, var(--surface), rgba(232,255,71,0.04));
}

.feature-icon { font-size: 28px; margin-bottom: 0.75rem; display: block; }

.feature-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 100px;
  background: var(--accent-dim);
  color: var(--accent);
  border: 0.5px solid rgba(232,255,71,0.2);
}

.feature-badge.viral {
  background: rgba(239,68,68,0.1);
  color: #ef4444;
  border-color: rgba(239,68,68,0.2);
}

.feature-card h3 {
  font-size: 15px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.5rem;
}

.feature-card p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 1rem;
}

.feature-link {
  font-size: 13px;
  color: var(--accent);
  font-weight: 600;
}

/* How it works */
.hiw-section { text-align: center; }

.hiw-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.hiw-card {
  background: var(--surface);
  border: 0.5px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
  text-align: left;
  flex: 1;
  min-width: 200px;
  max-width: 280px;
}

.hiw-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 42px;
  color: var(--accent);
  opacity: 0.5;
  letter-spacing: 1px;
  margin-bottom: 0.75rem;
}

.hiw-card h3 {
  font-size: 16px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.5rem;
}

.hiw-card p { font-size: 13px; color: var(--text-muted); line-height: 1.6; }

.hiw-arrow {
  font-size: 24px;
  color: var(--text-muted);
  flex-shrink: 0;
}

/* Testimonials */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1rem;
}

.testimonial-card {
  background: var(--surface);
  border: 0.5px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  transition: border-color 0.2s;
}

.testimonial-card:hover { border-color: var(--border-hover); }

.t-stars { color: var(--accent); font-size: 16px; margin-bottom: 0.75rem; letter-spacing: 2px; }

.testimonial-card p {
  font-size: 14px;
  color: #bbb;
  line-height: 1.7;
  margin-bottom: 1rem;
  font-style: italic;
}

.t-author { font-size: 12px; color: var(--text-muted); font-weight: 600; text-transform: uppercase; letter-spacing: 0.6px; }

.testimonial-card { position: relative; overflow: hidden; cursor: pointer; }

.tcard-accent { position: absolute; top: 0; left: 0; right: 0; height: 3px; }
.acc-green { background: #E8FF47; }
.acc-blue { background: #a78bfa; }
.acc-coral { background: #f97316; }
.acc-purple { background: #fbbf24; }
.acc-amber { background: #ef4444; }
.acc-pink { background: #60a5fa; }

.ttop { display: flex; align-items: center; justify-content: space-between; margin-bottom: 10px; }
.ttag { font-size: 11px; color: var(--text-muted); font-weight: 500; letter-spacing: 0.04em; }
.tquote-icon { font-size: 28px; color: var(--border); line-height: 1; font-family: Georgia, serif; }

.tbottom { display: flex; align-items: center; justify-content: space-between; margin-top: 1rem; }
.tauthor-wrap { display: flex; align-items: center; gap: 8px; }

.tavatar { width: 30px; height: 30px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 11px; font-weight: 600; flex-shrink: 0; }
.av-green { background: #E1F5EE; color: #0F6E56; }
.av-blue { background: #E6F1FB; color: #185FA5; }
.av-coral { background: #FAECE7; color: #993C1D; }
.av-purple { background: #EEEDFE; color: #534AB7; }
.av-amber { background: #FAEEDA; color: #854F0B; }
.av-pink { background: #FBEAF0; color: #993556; }

.ttool-badge { font-size: 10px; padding: 3px 8px; border-radius: 20px; font-weight: 500; display: flex; align-items: center; gap: 4px; }
.tb-green { background: #191919; color: var(--white); }
.tb-blue { background: #191919; color: var(--white); }
.tb-coral { background: #191919; color: var(--white); }
.tb-purple { background: #191919; color: var(--white); }
.tb-amber { background: #191919; color: var(--white); }
.tb-pink { background: #191919; color: var(--white); }

/* Pricing */
.pricing-section { text-align: center; }

.pricing-grid {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 3rem;
}

.pricing-card {
  background: var(--surface);
  border: 0.5px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  width: 300px;
  text-align: left;
  position: relative;
  transition: border-color 0.2s;
}

.pricing-card.featured {
  border-color: rgba(232,255,71,0.3);
  background: linear-gradient(135deg, var(--surface), rgba(232,255,71,0.04));
  box-shadow: 0 0 60px rgba(232,255,71,0.08);
}

.plan-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: var(--black);
  font-size: 11px;
  font-weight: 700;
  padding: 4px 16px;
  border-radius: 100px;
  letter-spacing: 0.5px;
  white-space: nowrap;
}

.plan-name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 28px;
  letter-spacing: 1px;
  color: var(--white);
  margin-bottom: 0.5rem;
}

.plan-price {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 52px;
  color: var(--accent);
  letter-spacing: 1px;
  line-height: 1;
  margin-bottom: 1.5rem;
}

.plan-price span {
  font-size: 18px;
  color: var(--text-muted);
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
}

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

.plan-features li {
  font-size: 13px;
  color: #ccc;
  padding: 6px 0;
  border-bottom: 0.5px solid var(--border);
  line-height: 1.5;
}

.plan-features li:last-child { border-bottom: none; }
.plan-features li.dimmed { color: var(--text-muted); }

.plan-btn-free {
  display: block;
  text-align: center;
  text-decoration: none;
  width: 100%;
  background: transparent;
  border: 0.5px solid var(--border-hover);
  border-radius: var(--radius-sm);
  color: var(--white);
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 600;
  padding: 13px;
  transition: all 0.2s;
  box-sizing: border-box;
}

.plan-btn-free:hover { border-color: var(--accent); color: var(--accent); }

.plan-btn-pro {
  width: 100%;
  background: var(--accent);
  border: none;
  border-radius: var(--radius-sm);
  color: var(--black);
  cursor: pointer;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 700;
  padding: 14px;
  transition: all 0.2s;
  box-shadow: 0 8px 24px rgba(232,255,71,0.2);
}

.plan-btn-pro:hover { background: #f0ff6b; }

/* CTA section */
.cta-section {
  text-align: center;
  padding: 6rem 2rem;
  border-top: 0.5px solid var(--border);
}

.cta-section h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(40px, 6vw, 70px);
  letter-spacing: 1px;
  color: var(--white);
  line-height: 0.95;
  margin-bottom: 1rem;
}

.cta-section p {
  font-size: 16px;
  color: var(--text-muted);
  margin-bottom: 2rem;
}

/* Footer */
.main-footer {
  border-top: 0.5px solid var(--border);
  padding: 3rem 2rem 2rem;
  max-width: 1100px;
  margin: 0 auto;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.footer-brand p { font-size: 13px; color: var(--text-muted); max-width: 240px; line-height: 1.6; }

.footer-links { display: flex; gap: 3rem; }

.footer-col { display: flex; flex-direction: column; gap: 8px; }

.footer-col-title {
  font-size: 12px;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 4px;
}

.footer-col a {
  font-size: 13px;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-col a:hover { color: var(--accent); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  border-top: 0.5px solid var(--border);
  padding-top: 1.5rem;
  font-size: 12px;
  color: #333;
  flex-wrap: wrap;
  gap: 0.5rem;
}

/* Mobile */
@media (max-width: 768px) {
  .hero-section { flex-direction: column; min-height: auto; padding: 3rem 1.5rem; text-align: center; }
  .hero-btns { justify-content: center; }
  .hero-stats { justify-content: center; }
  .hero-cards { display: none; }
  .hiw-arrow { transform: rotate(90deg); }
  .pricing-grid { flex-direction: column; align-items: center; }
  .footer-top { flex-direction: column; }
  .footer-links { flex-direction: column; gap: 1.5rem; }
  .header-nav { display: none; }
  header { padding: 1rem 1.5rem; }
}
/* ===== PRICING TABLE ===== */
.pricing-table-wrap {
  max-width: 800px;
  margin: 0 auto;
  border: 0.5px solid var(--border-hover);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 40px 80px rgba(0,0,0,0.4);
}

/* Header row */
.pt-header {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  background: var(--surface);
  border-bottom: 0.5px solid var(--border-hover);
  position: sticky;
  top: 70px;
  z-index: 10;
}

.pt-col-feature, .pt-col-free, .pt-col-pro {
  padding: 1.5rem 1.25rem;
}

.pt-col-free {
  text-align: center;
  border-left: 0.5px solid var(--border);
}

.pt-col-pro {
  text-align: center;
  background: rgba(232,255,71,0.04);
  border-left: 0.5px solid rgba(232,255,71,0.15);
  position: relative;
}

.pt-popular-badge {
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: var(--black);
  font-size: 10px;
  font-weight: 800;
  padding: 3px 14px;
  border-radius: 0 0 8px 8px;
  letter-spacing: 0.5px;
  white-space: nowrap;
  text-transform: uppercase;
}

.pt-plan-name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 26px;
  letter-spacing: 1px;
  color: var(--white);
  margin-bottom: 0.25rem;
  margin-top: 0.75rem;
}

.pt-plan-price {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 36px;
  color: var(--accent);
  letter-spacing: 1px;
  line-height: 1;
  margin-bottom: 1rem;
}

.pt-plan-price span {
  font-size: 14px;
  color: var(--text-muted);
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
}

.pt-btn-free {
  display: inline-block;
  text-decoration: none;
  background: transparent;
  border: 0.5px solid var(--border-hover);
  border-radius: 100px;
  color: var(--white);
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 600;
  padding: 8px 20px;
  transition: all 0.2s;
  cursor: pointer;
}

.pt-btn-free:hover { border-color: var(--accent); color: var(--accent); }

.pt-btn-pro {
  background: var(--accent);
  border: none;
  border-radius: 100px;
  color: var(--black);
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 700;
  padding: 8px 20px;
  cursor: pointer;
  transition: all 0.2s;
  box-shadow: 0 4px 16px rgba(232,255,71,0.25);
}

.pt-btn-pro:hover { background: #f0ff6b; transform: translateY(-1px); }

/* Section title rows */
.pt-section-title {
  background: var(--surface2);
  padding: 8px 1.25rem;
  font-size: 11px;
  font-weight: 700;
  color: rgb(232 255 71);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  border-top: 0.5px solid var(--border);
  border-bottom: 0.5px solid var(--border);
}

/* Data rows */
.pt-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  border-bottom: 0.5px solid var(--border);
  transition: background 0.15s;
}

.pt-row:hover { background: rgba(255,255,255,0.02); }

.pt-row .pt-col-feature {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--text-secondary);
  padding: 14px 1.25rem;
  font-weight: 500;
}

.pt-row .pt-col-free,
.pt-row .pt-col-pro {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  padding: 14px 1rem;
  text-align: center;
}

.pt-row .pt-col-pro {
  background: rgba(232,255,71,0.02);
}

.pt-check {
  color: var(--green);
  font-weight: 600;
  font-size: 13px;
}

.pt-limit {
  color: var(--text-muted);
  font-size: 12px;
  background: var(--surface2);
  padding: 3px 10px;
  border-radius: 100px;
  border: 0.5px solid var(--border);
}

/* Mobile pricing table */
@media (max-width: 600px) {
  .pt-col-feature { font-size: 11px; padding: 12px 0.75rem; }
  .pt-row .pt-col-free, .pt-row .pt-col-pro { padding: 12px 0.5rem; font-size: 11px; }
  .pt-plan-name { font-size: 20px; }
  .pt-plan-price { font-size: 28px; }
  .pt-limit { font-size: 10px; padding: 2px 6px; }
  .pt-btn-free, .pt-btn-pro { font-size: 11px; padding: 6px 12px; }
}
.t-tag {
  font-size: 11px;
  color: var(--text-muted);
  margin-bottom: 8px;
}