.page-hero { padding: 160px 5% 80px; position: relative; overflow: hidden; }
.page-hero-glow {
  position: absolute; width: 800px; height: 800px;
  top: -200px; left: -150px;
  background: radial-gradient(circle, rgba(217,119,6,.07) 0%, transparent 65%);
  pointer-events: none;
}
.page-hero h1 {
  font-family: var(--ff-head);
  font-size: clamp(2.4rem, 4.5vw, 4rem);
  font-weight: 700; line-height: 1.08; letter-spacing: -.4px;
  animation: fade-in .7s ease both;
}
.page-hero h1 em { font-style: italic; color: var(--azure); }
.page-hero p {
  margin-top: 1.4rem; font-size: 1.05rem;
  color: var(--off); line-height: 1.85; max-width: 640px;
  animation: fade-in .7s .1s ease both;
}
@keyframes fade-in { from { opacity:0; transform:translateY(16px); } to { opacity:1; transform:none; } }

/* PRICING CARDS */
.pricing-note {
  display: inline-flex; align-items: center; gap: .5rem;
  background: rgba(217,119,6,.07);
  border: 1px solid rgba(245,158,11,.2);
  border-radius: 8px; padding: .5rem 1.1rem;
  font-size: .83rem; color: var(--gold2);
  margin-bottom: 2.5rem; font-weight: 500;
}

.pricing-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
}
@media (max-width: 900px) { .pricing-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .pricing-grid { grid-template-columns: 1fr; } }

.price-card {
  background: var(--ink3); border: 1px solid var(--border);
  border-radius: var(--r2); padding: 1.8rem;
  display: flex; flex-direction: column;
  position: relative;
  transition: border-color .2s, transform .2s;
}
.price-card:hover { border-color: rgba(14,165,233,.3); transform: translateY(-3px); }
.price-card.featured {
  border-color: rgba(14,165,233,.4);
  box-shadow: 0 0 48px rgba(14,165,233,.12);
}
.featured-badge {
  position: absolute; top: -12px; left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--azure2), var(--azure));
  color: #fff; font-size: .72rem; font-weight: 700;
  padding: .3rem 1rem; border-radius: 100px;
  letter-spacing: .5px; white-space: nowrap;
}

.pc-label {
  font-family: var(--ff-mono); font-size: .68rem;
  letter-spacing: 1.5px; color: var(--azure);
  text-transform: uppercase; margin-bottom: .7rem;
}
.price-card h3 {
  font-family: var(--ff-head); font-size: 1.5rem;
  font-weight: 700; margin-bottom: .5rem;
}
.pc-who {
  font-size: .83rem; color: var(--muted);
  line-height: 1.65; margin-bottom: 1.2rem;
}
.pc-price {
  margin-bottom: 1.2rem;
  padding: 1rem; background: rgba(14,165,233,.06);
  border: 1px solid var(--border2); border-radius: 10px;
}
.pc-price-val {
  font-family: var(--ff-head); font-size: 1.8rem;
  font-weight: 700; color: var(--white); line-height: 1;
}
.pc-price-note {
  font-size: .77rem; color: var(--muted);
  margin-top: .25rem; line-height: 1.5;
}
.pc-includes {
  font-family: var(--ff-mono); font-size: .68rem;
  letter-spacing: 1px; color: var(--azure);
  margin-bottom: .7rem; text-transform: uppercase;
}
.price-card ul {
  list-style: none; flex: 1;
  display: flex; flex-direction: column; gap: .5rem;
  margin-bottom: 1.5rem;
}
.price-card ul li {
  font-size: .85rem; color: var(--off);
  display: flex; align-items: flex-start; gap: .7rem; line-height: 1.5;
}
.price-card ul li .li-check {
  width: 18px; height: 18px; border-radius: 50%;
  background: rgba(13,148,136,.15);
  border: 1px solid rgba(13,148,136,.3);
  display: flex; align-items: center; justify-content: center;
  font-size: .65rem; color: var(--teal); flex-shrink: 0; margin-top: .1rem;
}
.price-card .pc-cta {
  display: block; text-align: center;
  padding: .9rem; border-radius: 8px;
  font-weight: 700; font-size: .9rem;
  text-decoration: none;
  font-family: var(--ff-body);
  transition: opacity .2s, transform .18s;
}
.pc-cta-primary {
  background: linear-gradient(135deg, var(--azure2), var(--azure));
  color: #fff; box-shadow: 0 4px 20px rgba(14,165,233,.3);
}
.pc-cta-primary:hover { opacity: .88; transform: translateY(-1px); }
.pc-cta-outline {
  border: 1px solid var(--border); color: var(--off);
}
.pc-cta-outline:hover { border-color: var(--azure); color: var(--azure); }

/* TOOL LICENCE BLOCK */
.tool-licence { background: var(--ink3); }
.tl-inner {
  background: var(--ink2); border: 1px solid var(--border);
  border-radius: var(--r2); padding: 2.4rem;
  display: grid; grid-template-columns: 1.2fr 1fr;
  gap: 3rem; align-items: start; margin-top: 2rem;
}
@media (max-width: 740px) { .tl-inner { grid-template-columns: 1fr; } }
.tl-left h3 {
  font-family: var(--ff-head); font-size: 1.5rem; font-weight: 700; margin-bottom: .8rem;
}
.tl-left p { font-size: .9rem; color: var(--muted); line-height: 1.75; margin-bottom: .8rem; }

.tl-items { display: flex; flex-direction: column; gap: .8rem; }
.tl-item {
  display: flex; align-items: flex-start; gap: .9rem;
  padding: 1rem; background: var(--card);
  border: 1px solid var(--border); border-radius: 10px;
}
.tl-icon { font-size: 1.2rem; flex-shrink: 0; margin-top: .05rem; }
.tl-item h5 { font-weight: 700; font-size: .88rem; margin-bottom: .2rem; }
.tl-item p  { font-size: .81rem; color: var(--muted); line-height: 1.55; }

/* FAQ */
.faq-section { background: var(--ink2); }
.faq-list {
  display: flex; flex-direction: column; gap: .8rem;
  margin-top: 2.5rem; max-width: 820px;
}
.faq-item {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--r); overflow: hidden;
}
.faq-q {
  padding: 1.3rem 1.4rem;
  font-weight: 700; font-size: .95rem;
  cursor: pointer; display: flex; justify-content: space-between; align-items: center;
  user-select: none;
}
.faq-q:hover { color: var(--azure); }
.faq-arrow { transition: transform .25s; flex-shrink: 0; margin-left: 1rem; color: var(--azure); }
.faq-item.open .faq-arrow { transform: rotate(180deg); }
.faq-a {
  display: none; padding: 0 1.4rem 1.2rem;
  font-size: .88rem; color: var(--muted); line-height: 1.75;
}
.faq-item.open .faq-a { display: block; }
