/* ============================================
   GrowthFocusTech.com — Conversion Landing CSS
   ============================================ */

/* --- BUTTONS --- */
.btn-primary {
  display: inline-block;
  background: linear-gradient(135deg, #00D4FF, #7B5EFF);
  color: #fff;
  font-family: 'Syne', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  padding: 14px 28px;
  border-radius: 8px;
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: opacity 0.2s, transform 0.1s, box-shadow 0.2s;
  box-shadow: 0 4px 20px rgba(0, 212, 255, 0.25);
  white-space: nowrap;
}
.btn-primary:hover {
  opacity: 0.9;
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0, 212, 255, 0.35);
}
.btn-primary:active { transform: translateY(0); }

.btn-ghost {
  display: inline-block;
  color: var(--text-secondary);
  font-size: 0.95rem;
  font-weight: 500;
  padding: 14px 20px;
  text-decoration: none;
  transition: color 0.2s;
}
.btn-ghost:hover { color: var(--text-primary); }

/* --- NAV --- */
.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
}
.nav-link {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-secondary);
  text-decoration: none;
  transition: color 0.2s;
}
.nav-link:hover { color: var(--text-primary); }

.nav-cta {
  display: inline-block;
  background: var(--accent-cyan);
  color: #060912;
  font-family: 'Syne', sans-serif;
  font-size: 13px;
  font-weight: 700;
  padding: 8px 18px;
  border-radius: 6px;
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: opacity 0.2s, transform 0.1s;
}
.nav-cta:hover { opacity: 0.85; transform: translateY(-1px); }

@media (max-width: 768px) {
  .nav-links { display: none; }
  /* Show hamburger on mobile — placeholder for future */
}

/* --- HERO --- */
.hero-text { display: flex; flex-direction: column; }

.hero-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 28px;
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 32px;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--text-secondary);
  font-weight: 500;
}

/* Hero card (live ops panel) */
.hero-card {
  background: var(--bg-card);
  border: 1px solid var(--border-accent);
  border-radius: 16px;
  padding: 20px;
  backdrop-filter: blur(12px);
  box-shadow: var(--glow-cyan);
}
.hc-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}
.hc-title {
  font-size: 11px;
  font-weight: 600;
  color: var(--text-dim);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.hc-live {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  color: #10b981;
  font-weight: 500;
}
.hc-live-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #10b981;
  box-shadow: 0 0 4px #10b981;
  animation: pulse 1.5s ease-in-out infinite;
}
.hc-rows { display: flex; flex-direction: column; gap: 0; }
.hc-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
}
.hc-row:last-child { border-bottom: none; }
.hc-row-l {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--text-secondary);
}
.hc-val {
  font-family: 'Syne', sans-serif;
  font-size: 16px;
  font-weight: 700;
}
.hc-val-cyan { color: var(--accent-cyan); }
.hc-val-violet { color: var(--accent-violet); }
.hc-val-report { color: var(--text-dim); font-size: 12px; }
.hc-row-report { background: rgba(0, 212, 255, 0.03); border-radius: 8px; padding: 8px 6px; border: 1px solid var(--border); }
.hc-cta {
  display: block;
  text-align: center;
  margin-top: 14px;
  background: var(--accent-violet);
  color: #fff;
  font-family: 'Syne', sans-serif;
  font-size: 13px;
  font-weight: 700;
  padding: 11px;
  border-radius: 8px;
  text-decoration: none;
  letter-spacing: 0.03em;
  transition: background 0.2s, transform 0.1s;
}
.hc-cta:hover { background: #6344e8; transform: translateY(-1px); }

/* --- PAIN SECTION --- */
.pain-section {
  padding: 100px 40px;
  background: var(--bg-secondary);
  position: relative;
}
.pain-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent-cyan), transparent);
  opacity: 0.2;
}
.pain-label, .pricing-label, .test-label, .faq-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent-cyan);
  font-weight: 600;
  margin-bottom: 20px;
}
.pain-headline, .pricing-headline, .test-headline, .faq-headline {
  font-family: 'Syne', sans-serif;
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 60px;
}
.pain-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 60px;
}
.pain-card {
  padding: 28px;
  border-radius: 16px;
  border: 1px solid var(--border);
  background: var(--bg-card);
  position: relative;
}
.pain-num {
  font-family: 'Syne', sans-serif;
  font-size: 11px;
  font-weight: 800;
  color: var(--accent-cyan);
  letter-spacing: 0.08em;
  margin-bottom: 12px;
}
.pain-title {
  font-family: 'Syne', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 12px;
  letter-spacing: -0.01em;
  line-height: 1.3;
}
.pain-why {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.65;
}
.pain-solution {
  text-align: center;
  padding-top: 40px;
  border-top: 1px solid var(--border);
}
.pain-solution p {
  font-family: 'Syne', sans-serif;
  font-size: 22px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 24px;
}

/* --- HOW SECTION CTA --- */
.how-cta {
  text-align: center;
  margin-top: 56px;
  padding-top: 40px;
  border-top: 1px solid var(--border);
}
.step-time {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: var(--text-dim);
  font-weight: 500;
  margin-bottom: 16px;
}

/* --- PRICING --- */
.pricing {
  padding: 100px 40px;
  position: relative;
}
.pricing::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent-violet), transparent);
  opacity: 0.2;
}
.pricing-sub {
  font-size: 16px;
  color: var(--text-secondary);
  margin-bottom: 56px;
  max-width: 600px;
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: start;
}
.price-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px;
  position: relative;
  transition: transform 0.2s, box-shadow 0.2s;
}
.price-card:hover { transform: translateY(-4px); box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3); }
.price-card-featured {
  border-color: var(--accent-violet);
  box-shadow: 0 0 40px rgba(123, 94, 255, 0.15);
}
.price-card-featured:hover { box-shadow: 0 0 40px rgba(123, 94, 255, 0.25), 0 20px 40px rgba(0, 0, 0, 0.3); }
.pc-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #7B5EFF, #00D4FF);
  color: #fff;
  font-family: 'Syne', sans-serif;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 16px;
  border-radius: 100px;
  letter-spacing: 0.05em;
  white-space: nowrap;
}
.pc-header { margin-bottom: 24px; }
.pc-tier {
  font-family: 'Syne', sans-serif;
  font-size: 13px;
  font-weight: 800;
  color: var(--accent-cyan);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.pc-price { display: flex; align-items: baseline; gap: 4px; }
.pc-amount {
  font-family: 'Syne', sans-serif;
  font-size: 40px;
  font-weight: 800;
  color: var(--text-primary);
  letter-spacing: -0.03em;
}
.pc-period { font-size: 16px; color: var(--text-secondary); }
.pc-tagline { font-size: 13px; color: var(--text-dim); margin-top: 4px; }
.pc-features { list-style: none; margin-bottom: 24px; display: flex; flex-direction: column; gap: 10px; }
.pc-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--text-secondary);
}
.pc-features li svg { flex-shrink: 0; }
.pc-feature-dim { color: var(--text-dim) !important; }
.pc-cta {
  display: block;
  text-align: center;
  padding: 12px;
  border: 1px solid var(--border-accent);
  border-radius: 8px;
  color: var(--accent-cyan);
  font-family: 'Syne', sans-serif;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  letter-spacing: 0.03em;
  transition: background 0.2s, color 0.2s, transform 0.1s;
}
.pc-cta:hover { background: var(--accent-cyan); color: #060912; transform: translateY(-1px); }
.pc-cta-featured {
  background: linear-gradient(135deg, #7B5EFF, #00D4FF);
  color: #fff;
  border-color: transparent;
}
.pc-cta-featured:hover { opacity: 0.9; background: linear-gradient(135deg, #6344e8, #00b8d9); }
.pricing-footer {
  text-align: center;
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}
.pricing-footer p { font-size: 14px; color: var(--text-dim); }
.pricing-footer a { color: var(--accent-cyan); text-decoration: none; }
.pricing-footer a:hover { text-decoration: underline; }

/* --- TESTIMONIALS --- */
.testimonials {
  padding: 100px 40px;
  background: var(--bg-secondary);
  position: relative;
}
.testimonials::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent-cyan), transparent);
  opacity: 0.15;
}
.test-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 56px;
}
.test-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
}
.tc-label {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent-cyan);
  display: block;
  margin-bottom: 8px;
}
.tc-before p, .tc-after p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.65;
}
.tc-arrow {
  display: flex;
  justify-content: center;
}
.tc-result {
  background: linear-gradient(135deg, rgba(0, 212, 255, 0.08), rgba(123, 94, 255, 0.08));
  border: 1px solid var(--border-accent);
  border-radius: 12px;
  padding: 16px;
  text-align: center;
}
.tc-result-num {
  font-family: 'Syne', sans-serif;
  font-size: 36px;
  font-weight: 800;
  color: var(--accent-cyan);
  letter-spacing: -0.03em;
  display: block;
  line-height: 1;
  margin-bottom: 4px;
}
.tc-result-text {
  font-size: 13px;
  color: var(--text-secondary);
  font-weight: 500;
}
.tc-person {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}
.tc-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-cyan), var(--accent-violet));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Syne', sans-serif;
  font-size: 12px;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
}
.tc-name { font-size: 14px; font-weight: 600; color: var(--text-primary); }
.tc-role { font-size: 12px; color: var(--text-dim); }
.test-cta { text-align: center; }

/* --- FAQ --- */
.faq {
  padding: 100px 40px;
  position: relative;
}
.faq::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent-violet), transparent);
  opacity: 0.15;
}
.faq-list { max-width: 800px; display: flex; flex-direction: column; gap: 0; margin-bottom: 56px; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-item:first-child { border-top: 1px solid var(--border); }
.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 0;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: 'Syne', sans-serif;
  font-size: 17px;
  font-weight: 600;
  color: var(--text-primary);
  transition: color 0.2s;
}
.faq-q:hover { color: var(--accent-cyan); }
.faq-icon { flex-shrink: 0; transition: transform 0.2s; }
.faq-q[aria-expanded="true"] .faq-icon { transform: rotate(45deg); }
.faq-q[aria-expanded="true"] .faq-line-v { opacity: 0; }
.faq-a {
  display: none;
  padding: 0 0 24px 0;
}
.faq-a.open { display: block; }
.faq-a p { font-size: 15px; color: var(--text-secondary); line-height: 1.7; margin-bottom: 0; }
.faq-a p + p { margin-top: 12px; }
.faq-a a { color: var(--accent-cyan); }
.faq-cta { text-align: center; }
.faq-cta-note { font-size: 13px; color: var(--text-dim); margin-top: 12px; }

/* --- CLOSING --- */
.closing-stats { margin-top: 0; }

/* --- FOOTER --- */
.footer-links {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: center;
}
.footer-links a {
  font-size: 13px;
  color: var(--text-secondary);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--accent-cyan); }

/* --- STICKY BAR --- */
.sticky-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 200;
  background: rgba(6, 9, 18, 0.95);
  backdrop-filter: blur(20px);
  border-top: 1px solid var(--border-accent);
  padding: 12px 24px;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}
.sticky-bar.visible { transform: translateY(0); }
.sticky-bar-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.sticky-bar-text {
  font-size: 14px;
  color: var(--text-secondary);
  font-weight: 500;
}
.sticky-bar-cta {
  background: linear-gradient(135deg, #00D4FF, #7B5EFF);
  color: #fff;
  font-family: 'Syne', sans-serif;
  font-size: 13px;
  font-weight: 700;
  padding: 10px 20px;
  border-radius: 8px;
  text-decoration: none;
  letter-spacing: 0.02em;
  white-space: nowrap;
  transition: opacity 0.2s;
}
.sticky-bar-cta:hover { opacity: 0.85; }
.sticky-bar-close {
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  display: flex;
  align-items: center;
  transition: opacity 0.2s;
}
.sticky-bar-close:hover { opacity: 0.6; }

/* --- RESPONSIVE --- */
@media (max-width: 1024px) {
  .pricing-grid { grid-template-columns: 1fr; gap: 24px; }
  .test-grid { grid-template-columns: 1fr; }
}

@media (max-width: 900px) {
  .hero-content { grid-template-columns: 1fr; gap: 48px; }
  .hero-visual { order: -1; }
  .pain-grid { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  .hero { padding: 100px 24px 80px; }
  .section-inner { padding: 0 24px; }
  .pain-section, .how, .pricing, .testimonials, .faq, .closing { padding: 60px 24px; }
  .footer { padding: 40px 24px; }
  .nav { padding: 0 24px; }
  .hero-proof { flex-wrap: wrap; gap: 16px; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .hero-trust { gap: 12px; }
  .pricing-grid { grid-template-columns: 1fr; }
  .sticky-bar-inner { flex-wrap: wrap; gap: 10px; }
  .sticky-bar-text { display: none; }
  .sticky-bar-cta { flex: 1; text-align: center; }
}