/* === TEXT STRUCTURE === */
.hero-features {
  list-style: none; display: flex; flex-direction: column; align-items: center;
  gap: 8px; margin-top: 2px; margin-bottom: 28px;
}
.hero-features li {
  display: flex; align-items: center; gap: 8px;
  font-size: 1rem; color: rgba(255,255,255,0.82);
}
.hero-features li::before {
  content: ''; width: 6px; height: 6px; border-radius: 50%;
  background: var(--cyan); flex-shrink: 0;
}
.hero-features strong { color: #fff; }
.emphasis-box {
  background: rgba(0,212,255,0.04); border: 1px solid rgba(0,212,255,0.1);
  border-radius: 10px; padding: 12px 16px; margin-top: 10px;
  font-size: 0.9rem; color: rgba(255,255,255,0.75); line-height: 1.7;
}
.emphasis-box strong { color: #fff; }
.stat-row {
  display: flex; gap: 24px; justify-content: center; align-items: center;
  margin: 20px 0;
}
.stat-block { text-align: center; }
.stat-number {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(28px, 4vw, 40px); font-weight: 800; line-height: 1;
}
.stat-desc { font-size: 12px; color: rgba(255,255,255,0.5); margin-top: 4px; }
.stat-divider { width: 1px; height: 50px; background: rgba(255,255,255,0.08); }
.trust-list {
  list-style: none; text-align: left; margin-top: 8px;
}
.trust-list li {
  padding: 3px 0; font-size: 0.82rem; color: rgba(255,255,255,0.75);
  display: flex; align-items: center; gap: 8px;
}
.trust-list li::before {
  content: ''; width: 5px; height: 5px; border-radius: 50%;
  background: var(--cyan); flex-shrink: 0;
}
.trust-list strong { color: #fff; }
.trust-list--dim li { color: rgba(255,255,255,0.45); }
.quote-text {
  font-style: italic; color: rgba(255,255,255,0.7);
  border-left: 2px solid rgba(0,212,255,0.3);
  padding-left: 14px; margin-top: 10px;
}
.reframe-conclusion {
  color: var(--text); font-weight: 500; margin-top: 20px;
}

/* === SPACING FIXES === */
.problem-card p + p { margin-top: 6px; }
.step-card p + p { margin-top: 6px; }
.step-result p + p { margin-top: 6px; }
.reframe-inner p { max-width: 600px; margin-left: auto; margin-right: auto; }
.final-cta-box p { max-width: 560px; margin-left: auto; margin-right: auto; }

/* === SECTIONS BASE === */
section { padding: 6rem 2rem; position: relative; z-index: 1; }

/* === PROBLEMS === */
.problems-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 20px; max-width: 1100px; margin: 0 auto;
}
.problem-card {
  padding: 36px 32px; display: flex; flex-direction: column; gap: 16px;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.problem-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255,255,255,0.15);
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}
.problem-card h3 { font-size: 1.15rem; }
.problem-card .scenario { font-size: 15px; color: rgba(255,255,255,0.75); line-height: 1.75; }
.problem-card .result {
  margin-top: auto; padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.problem-card .result .quote { font-size: 15px; color: rgba(255,255,255,0.9); line-height: 1.7; font-weight: 500; margin-bottom: 8px; }
.problem-card .result .loss { font-size: 13px; font-weight: 600; }
.card-1 .loss { color: rgba(0,212,255,0.7); }
.card-2 .loss { color: rgba(95,251,241,0.7); }
.card-3 .loss { color: rgba(125,216,125,0.7); }

/* Animated icon containers */
.card-icon {
  width: 72px; height: 72px; max-width: 72px; max-height: 72px;
  border-radius: 20px; flex-shrink: 0; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
  position: relative; transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.card-1 .card-icon {
  background: linear-gradient(135deg, rgba(0,212,255,0.12), rgba(0,212,255,0.04));
  border: 1px solid rgba(0,212,255,0.2);
  box-shadow: 0 4px 16px rgba(0,212,255,0.08), inset 0 1px 0 rgba(255,255,255,0.06);
}
.card-2 .card-icon {
  background: linear-gradient(135deg, rgba(95,251,241,0.12), rgba(95,251,241,0.04));
  border: 1px solid rgba(95,251,241,0.2);
  box-shadow: 0 4px 16px rgba(95,251,241,0.08), inset 0 1px 0 rgba(255,255,255,0.06);
}
.card-3 .card-icon {
  background: linear-gradient(135deg, rgba(125,216,125,0.12), rgba(125,216,125,0.04));
  border: 1px solid rgba(125,216,125,0.2);
  box-shadow: 0 4px 16px rgba(125,216,125,0.08), inset 0 1px 0 rgba(255,255,255,0.06);
}
.card-icon svg {
  width: 32px; height: 32px; fill: none; stroke-width: 1.5;
  stroke-linecap: round; stroke-linejoin: round;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  filter: drop-shadow(0 0 6px currentColor);
}
.card-1 .card-icon svg { stroke: rgba(0,212,255,0.9); color: rgba(0,212,255,0.3); }
.card-2 .card-icon svg { stroke: rgba(95,251,241,0.9); color: rgba(95,251,241,0.3); }
.card-3 .card-icon svg { stroke: rgba(125,216,125,0.9); color: rgba(125,216,125,0.3); }

/* Icon hover effects */
.problem-card:hover .card-icon { transform: scale(1.08); }
.problem-card:hover .card-icon svg { filter: drop-shadow(0 0 12px currentColor); }
.card-1:hover .card-icon { box-shadow: 0 8px 24px rgba(0,212,255,0.15); border-color: rgba(0,212,255,0.35); }
.card-2:hover .card-icon { box-shadow: 0 8px 24px rgba(95,251,241,0.15); border-color: rgba(95,251,241,0.35); }
.card-3:hover .card-icon { box-shadow: 0 8px 24px rgba(125,216,125,0.15); border-color: rgba(125,216,125,0.35); }

/* Orbit ring on hover */
.card-icon::before {
  content: ''; position: absolute; inset: -6px; border-radius: 24px;
  border: 1.5px dashed transparent; transition: all 0.5s ease; opacity: 0;
}
.card-1:hover .card-icon::before { border-color: rgba(0,212,255,0.2); opacity: 1; animation: orbitSpin 8s linear infinite; }
.card-2:hover .card-icon::before { border-color: rgba(95,251,241,0.2); opacity: 1; animation: orbitSpin 10s linear infinite reverse; }
.card-3:hover .card-icon::before { border-color: rgba(125,216,125,0.2); opacity: 1; animation: orbitSpin 12s linear infinite; }
@keyframes orbitSpin { to { transform: rotate(360deg); } }

/* Floating animation */
@keyframes gentleFloat { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-3px)} }
.card-1 .card-icon { animation: gentleFloat 4s ease-in-out infinite; }
.card-2 .card-icon { animation: gentleFloat 4s ease-in-out infinite 0.7s; }
.card-3 .card-icon { animation: gentleFloat 4s ease-in-out infinite 1.4s; }

/* SVG animations */
.clock-hand { transform-origin: 12px 12px; animation: clockTick 2s steps(4) infinite; }
@keyframes clockTick { to { transform: rotate(360deg); } }
.card-2 .card-icon svg { animation: phoneRing 3s ease-in-out infinite; }
@keyframes phoneRing { 0%,100%{transform:rotate(0)} 5%{transform:rotate(8deg)} 10%{transform:rotate(-8deg)} 15%{transform:rotate(6deg)} 20%{transform:rotate(-4deg)} 25%{transform:rotate(0)} }
.alert-dot { animation: alertPulse 1.5s ease-in-out infinite; }
@keyframes alertPulse { 0%,100%{opacity:1} 50%{opacity:0.3} }

/* === REFRAME === */
.reframe { text-align: center; }
.reframe-inner { max-width: 800px; margin: 0 auto; padding: 3rem; }
.reframe h2 { margin-bottom: 1.5rem; }
.reframe p { color: var(--text-muted); font-size: 1.05rem; line-height: 1.8; margin-bottom: 1rem; }
.reframe-source { font-size: 0.8rem; color: rgba(255,255,255,0.3); font-style: italic; }

/* === SOLUTION === */
.steps {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 24px; max-width: 1100px; margin: 0 auto;
}
.step-card { padding: 2rem; text-align: center; }
.step-number {
  width: 44px; height: 44px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.25rem; font-weight: 800; font-size: 1.1rem;
  background: transparent;
  font-family: 'Plus Jakarta Sans', sans-serif;
}
.step-number--cyan { border: 2px solid rgba(0,212,255,0.5); color: var(--cyan); box-shadow: 0 0 15px rgba(0,212,255,0.2); }
.step-number--mint { border: 2px solid rgba(95,251,241,0.5); color: var(--mint); box-shadow: 0 0 15px rgba(95,251,241,0.2); }
.step-number--green { border: 2px solid rgba(125,216,125,0.5); color: var(--green); box-shadow: 0 0 15px rgba(125,216,125,0.2); }
.step-emoji {
  width: 48px; height: 48px; display: block;
  margin: 0 auto 1rem;
  filter: drop-shadow(0 4px 8px rgba(0,0,0,0.3));
}
.step-card h3 { margin-bottom: 0.75rem; }
.step-card p { color: var(--text-muted); font-size: 0.95rem; line-height: 1.7; }
.step-result {
  max-width: 700px; margin: 2rem auto 0; padding: 1.5rem 2rem;
  text-align: center;
}
.step-result p { color: var(--text); font-size: 1rem; font-weight: 500; }


/* === VOICE DEMO === */
.voice-demo { text-align: center; }
.voice-demo-layout { max-width: 600px; margin: 0 auto; }
.portrait-wrap {
  margin: 2rem auto; position: relative;
  width: 200px; height: 200px;
}
#portrait-trigger {
  width: 200px; height: 200px; border-radius: 50%; object-fit: cover;
  border: 3px solid var(--cyan); cursor: pointer;
  transition: transform 0.3s, border-color 0.3s;
  animation: pulse-glow 2.5s infinite;
}
#portrait-trigger:hover { animation: none; transform: scale(1.05); }
.portrait-label { margin-top: 1rem; font-size: 0.9rem; color: var(--text-muted); }
.portrait-label strong { color: var(--text); }

/* === TRANSCRIPT === */

/* === TRUST === */
.trust-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 20px; max-width: 1100px; margin: 0 auto;
}
.trust-card { padding: 2rem; text-align: center; }
.trust-emoji {
  width: 40px; height: 40px; display: block;
  margin: 0 auto 1rem;
  filter: drop-shadow(0 4px 8px rgba(0,0,0,0.3));
}
.trust-card h3 { font-size: 1.05rem; margin-bottom: 0.5rem; }
.trust-card p { color: var(--text-muted); font-size: 0.9rem; line-height: 1.6; }

/* === OFFER === */
.offer-box { max-width: 900px; margin: 0 auto; padding: 3rem; }
.offer-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; }
.offer-col h3 {
  font-size: 0.9rem; font-weight: 700; margin-bottom: 1rem;
  color: var(--cyan); text-transform: uppercase; letter-spacing: 0.05em;
}
.offer-col ul { list-style: none; }
.offer-col li {
  padding: 0.4rem 0; color: var(--text-muted); font-size: 0.95rem;
  display: flex; align-items: baseline; gap: 8px;
}
.offer-col li svg { width: 16px; height: 16px; color: var(--cyan); flex-shrink: 0; margin-top: 2px; }
.price-block { text-align: center; margin-bottom: 20px; }
.price-label { font-size: 0.85rem; color: var(--text-muted); margin-bottom: 4px; }
.price-highlight { font-size: clamp(36px, 5vw, 56px); font-weight: 800; line-height: 1; }
.offer-guarantee {
  margin-top: 1.5rem; padding-top: 1rem;
  border-top: 1px solid var(--glass-border);
  color: var(--text-muted); font-size: 0.9rem;
}
.offer-cta { text-align: center; margin-top: 2.5rem; }

/* === FAQ === */
.faq-list { max-width: 700px; margin: 0 auto; }
.faq-item { margin-bottom: 8px; padding: 0; }
.faq-q {
  width: 100%; background: none; border: none; color: var(--text);
  font-size: 1rem; font-weight: 600; text-align: left;
  padding: 18px 24px; cursor: pointer;
  display: flex; justify-content: space-between; align-items: center;
  font-family: inherit; transition: color 0.3s;
}
.faq-q:hover { color: var(--cyan); }
.faq-q svg { width: 20px; height: 20px; transition: transform 0.3s; flex-shrink: 0; margin-left: 1rem; }
.faq-item.open .faq-q svg { transform: rotate(180deg); }
.faq-item.open { border-color: rgba(0,212,255,0.15); }
.faq-a {
  max-height: 0; overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  color: var(--text-muted); font-size: 0.95rem; line-height: 1.7;
  padding: 0 24px;
}
.faq-item.open .faq-a { max-height: 300px; padding: 0 24px 18px; }

/* === FINAL CTA === */
.final-cta-box {
  max-width: 800px; margin: 0 auto; text-align: center; padding: 4rem 3rem;
}
.final-cta-box h2 { margin-bottom: 1rem; }
.final-cta-box p { color: var(--text-muted); font-size: 1.1rem; margin-bottom: 2rem; }
.btn-cta-final { font-size: 1.1rem; padding: 16px 36px; }

/* === FOOTER === */
footer {
  position: relative; z-index: 1;
  max-width: 1100px; margin: 0 auto 2rem;
  padding: 1.25rem 2rem;
  display: flex; align-items: center; justify-content: space-between;
  background: linear-gradient(145deg, rgba(255,255,255,0.05), rgba(255,255,255,0.015));
  backdrop-filter: blur(24px) saturate(1.4);
  -webkit-backdrop-filter: blur(24px) saturate(1.4);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 16px;
}
footer img { height: auto; max-height: 42px; width: auto; opacity: 0.6; transition: opacity 0.3s; display: block; }
footer img:hover { opacity: 1; }
footer p { color: rgba(255,255,255,0.35); font-size: 0.75rem; }
.footer-links { display: flex; gap: 1.5rem; }
.footer-links a {
  color: rgba(255,255,255,0.35); text-decoration: none;
  font-size: 0.75rem; transition: color 0.3s;
}
.footer-links a:hover { color: var(--cyan); }
@media (max-width: 768px) {
  footer { flex-direction: column; gap: 0.75rem; text-align: center; margin: 0 1rem 1.5rem; }
}

/* === HIDE EXTRA FOOTER + CHAT WIDGET BAR === */
body > footer { display: none !important; }

/* === ANIMATIONS === */
@keyframes pulse-glow {
  0% { box-shadow: 0 0 0 0 rgba(0,212,255,0.4); }
  70% { box-shadow: 0 0 0 20px rgba(0,212,255,0); }
  100% { box-shadow: 0 0 0 0 rgba(0,212,255,0); }
}

/* Stagger delays */
.stagger-1 { transition-delay: 0.1s; }
.stagger-2 { transition-delay: 0.2s; }
.stagger-3 { transition-delay: 0.3s; }
.stagger-4 { transition-delay: 0.4s; }
.stagger-5 { transition-delay: 0.5s; }
.stagger-6 { transition-delay: 0.6s; }

/* === RESPONSIVE === */

/* Tablet */
@media (max-width: 1024px) {
  .problems-grid { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: 1fr; gap: 1.5rem; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .offer-cols { grid-template-columns: 1fr; gap: 1.5rem; }
  .offer-box { padding: 2rem; }
}

/* Mobile */
@media (max-width: 768px) {
  section { padding: 3rem 1.25rem; }
  .section-header { margin-bottom: 1.5rem; }
  .problems-grid { grid-template-columns: 1fr; }
  .problem-card { padding: 24px 20px; gap: 12px; }
  .card-icon { width: 56px; height: 56px; margin-bottom: 0; }
  .trust-grid { grid-template-columns: 1fr 1fr; }
  .trust-card { padding: 1.25rem; }
  .portrait-wrap { width: 140px; height: 140px; }
  #portrait-trigger { width: 140px; height: 140px; }
  .final-cta-box { padding: 2rem 1.25rem; }
  .stat-row { gap: 16px; }
  .stat-number { font-size: 28px; }
  .hero-features { align-items: flex-start; padding-left: 0; }
  .reframe-inner { padding: 2rem 1.5rem; }
  .reframe p { font-size: 0.95rem; }
  .reframe-conclusion { font-size: 0.95rem; }
  .offer-box { padding: 1.5rem; }
  .offer-cta .btn-primary { width: 100%; justify-content: center; }
  .price-highlight { font-size: clamp(28px, 8vw, 40px); }
  .step-emoji { width: 36px; height: 36px; }
  .trust-emoji { width: 32px; height: 32px; }
  footer { margin: 0 1rem 1.5rem; flex-direction: column; gap: 0.75rem; text-align: center; padding: 1rem 1.5rem; }
}

/* Small Mobile */
@media (max-width: 480px) {
  .offer-col h3 { font-size: 0.85rem; }
  .trust-grid { grid-template-columns: 1fr; }
  .problems-grid { gap: 12px; }
}

/* === REDUCED MOTION === */
@media (prefers-reduced-motion: reduce) {
  .blob { animation: none !important; }
  .fade-up { opacity: 1 !important; transform: none !important; transition: none !important; }
  .gradient-text { animation: none !important; }
  #portrait-trigger { animation: none !important; }
  .nav-links a::after { transition: none !important; }
}

/* === ELEVENLABS WIDGET HIDE === */
elevenlabs-convai,
elevenlabs-convai::part(button),
elevenlabs-convai::part(container) {
  position: absolute !important; opacity: 0 !important;
  pointer-events: none !important; visibility: hidden !important;
  z-index: -9999 !important; width: 1px !important; height: 1px !important;
  overflow: hidden !important;
}
