/* ===== Hero entrance animations ===== */
@keyframes fadeSlideUp {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero-content > * {
  animation: fadeSlideUp 0.55s cubic-bezier(0.22, 1, 0.36, 1) both;
}
.hero-content .eyebrow      { animation-delay: 0s; }
.hero-content h1            { animation-delay: 0.07s; }
.hero-content .hero-copy    { animation-delay: 0.13s; }
.hero-content .hero-command { animation-delay: 0.18s; }
.hero-content .hero-actions { animation-delay: 0.22s; }
.hero-content .hero-proof   { animation-delay: 0.27s; }

@media (prefers-reduced-motion: reduce) {
  .hero-content > * { animation: none; }
}

/* ===== SVG tool icons ===== */
.tool-icon svg {
  display: block;
  width: 20px;
  height: 20px;
}

/* ===== How it works ===== */
.how-it-works {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}

.how-step {
  position: relative;
  padding: 2rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color 0.18s, box-shadow 0.18s;
}

.how-step:hover {
  border-color: var(--accent);
  box-shadow: var(--shadow-soft);
}

.how-step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 50%;
  background: var(--accent-soft);
  color: var(--accent);
  font-size: 0.9rem;
  font-weight: 750;
  margin-bottom: 1.25rem;
}

.how-step h3 {
  font-size: 1.0625rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--text);
}

.how-step p {
  font-size: 0.9375rem;
  color: var(--muted);
  line-height: 1.65;
}

@media (max-width: 760px) {
  .how-it-works { grid-template-columns: 1fr; gap: 1rem; }
}

/* ===== Trust strip ===== */
.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.trust-item {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding: 1.75rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: border-color 0.18s;
}

.trust-item:hover { border-color: var(--accent); }

.trust-badge {
  align-self: flex-start;
  padding: 0.2rem 0.6rem;
  background: var(--accent-soft);
  color: var(--accent-strong);
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.trust-item strong {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
}

.trust-item > span {
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.55;
}

@media (max-width: 900px) {
  .trust-strip { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 560px) {
  .trust-strip { grid-template-columns: 1fr; }
}

/* ===== Bottom CTA ===== */
.bottom-cta {
  border-radius: calc(var(--radius) * 2);
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-strong) 100%);
  overflow: hidden;
}

.bottom-cta-inner {
  padding: clamp(2.5rem, 5vw, 4rem) clamp(1.5rem, 4vw, 3.5rem);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.bottom-cta h2 {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 800;
  color: #ffffff;
  margin: 0;
}

.bottom-cta p {
  font-size: 1.0625rem;
  color: rgba(255,255,255,0.85);
  max-width: 50ch;
  margin: 0;
  line-height: 1.6;
}

.cta-actions {
  display: flex;
  gap: 0.875rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 0.5rem;
}

.cta-actions .primary-button {
  background: #ffffff;
  color: var(--accent-strong);
}

.cta-actions .primary-button:hover {
  background: rgba(255,255,255,0.92);
  transform: translateY(-1px);
}

.cta-actions .secondary-button {
  background: rgba(255,255,255,0.15);
  border: 1.5px solid rgba(255,255,255,0.35);
  color: #ffffff;
}

.cta-actions .secondary-button:hover {
  background: rgba(255,255,255,0.22);
  transform: translateY(-1px);
}

/* ===== Footer copyright bar ===== */
.footer-bottom {
  border-top: 1px solid var(--border);
}

.footer-bottom-shell {
  max-width: var(--max);
  margin: 0 auto;
  padding: 1.125rem clamp(1rem, 4vw, 2rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.8125rem;
  color: var(--muted);
}

@media (max-width: 560px) {
  .footer-bottom-shell {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.25rem;
  }
}

/* ===== Recently used tools section ===== */
.recent-tools-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 1rem;
}

@media (max-width: 560px) {
  .recent-tools-grid { grid-template-columns: 1fr 1fr; }
}

/* ===== FAQ section ===== */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
  max-width: 780px;
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
  overflow: hidden;
  transition: border-color 0.18s;
}

.faq-item:hover { border-color: var(--accent); }

.faq-item summary {
  padding: 1rem 1.25rem;
  cursor: pointer;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--text);
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  user-select: none;
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary::after {
  content: '+';
  flex-shrink: 0;
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--accent);
  line-height: 1;
}

.faq-item[open] summary::after { content: '\2212'; }

.faq-item p {
  padding: 0 1.25rem 1rem;
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
  font-size: 0.9375rem;
}

/* ===== Tool usage badge ===== */
.tool-usage-badge {
  margin: 0.4rem 0 0;
  font-size: 0.8125rem;
  color: var(--accent);
  font-weight: 500;
}
