/* Alby Start Free — industry landing pages. Tokens mirror index.html :root. */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --violet:        #00D084;
  --violet-light:  #5FE3B4;
  --violet-dark:   #0A8F5C;
  --violet-deep:   #06281C;
  --violet-bg:     #F2FBF7;
  --violet-bg2:    #D7EFE4;
  --text:          #0B1F17;
  --text-muted:    #5F6B64;
  --border:        #D7EFE4;
  --bg:            #F2FBF7;
  --white:         #FFFFFF;
  --radius:        8px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg);
  color: var(--text);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  -webkit-font-smoothing: antialiased;
}

/* ── HEADER ── */
.header {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  height: 60px;
  padding: 0 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo-wrap { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.header-cta {
  font-size: 13px;
  font-weight: 700;
  color: var(--white);
  background: var(--violet);
  padding: 9px 16px;
  border-radius: 6px;
  text-decoration: none;
}
.header-cta:hover { background: var(--violet-dark); }

/* ── LAYOUT ── */
.wrap { width: 100%; max-width: 860px; margin: 0 auto; padding: 0 20px; }

/* ── HERO ── */
.hero { text-align: center; padding: 56px 0 36px; }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 700;
  background: var(--violet-bg2);
  color: var(--violet-dark);
  padding: 5px 12px;
  border-radius: 20px;
  letter-spacing: .4px;
  text-transform: uppercase;
}
.hero h1 {
  font-size: 40px;
  font-weight: 800;
  letter-spacing: -1px;
  line-height: 1.12;
  margin: 18px 0 14px;
}
.hero-sub {
  font-size: 17px;
  color: var(--text-muted);
  line-height: 1.6;
  max-width: 620px;
  margin: 0 auto 26px;
}
.btn-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--violet);
  color: var(--white);
  font-size: 16px;
  font-weight: 700;
  padding: 15px 30px;
  border-radius: var(--radius);
  text-decoration: none;
  box-shadow: 0 4px 14px rgba(0, 208, 132, .35);
}
.btn-cta:hover { background: var(--violet-dark); }
.cta-note { font-size: 13px; color: var(--text-muted); margin-top: 12px; }

/* ── TRUST STRIP ── */
.trust-strip {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  padding: 6px 0 34px;
}
.trust-pill {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  font-weight: 600;
  color: var(--violet-dark);
  background: var(--white);
  border: 1px solid var(--border);
  padding: 6px 12px;
  border-radius: 20px;
}
.trust-pill svg { flex-shrink: 0; }

/* ── SECTIONS ── */
.section { padding: 34px 0; }
.section-title {
  font-size: 26px;
  font-weight: 800;
  letter-spacing: -.5px;
  text-align: center;
  margin-bottom: 10px;
}
.section-sub {
  font-size: 15px;
  color: var(--text-muted);
  text-align: center;
  line-height: 1.6;
  max-width: 580px;
  margin: 0 auto 28px;
}

/* ── FEATURES ── */
.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}
.feature-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.feature-icon {
  font-size: 22px;
  width: 44px;
  height: 44px;
  background: var(--violet-bg);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.feature-card strong { display: block; font-size: 15px; margin-bottom: 4px; }
.feature-card span { font-size: 13.5px; color: var(--text-muted); line-height: 1.55; }

/* ── SOCIAL PROOF ── */
.proof {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 14px;
  color: var(--text-muted);
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 14px 18px;
  margin: 6px auto 0;
  max-width: 640px;
  text-align: center;
  line-height: 1.55;
}
.proof strong { color: var(--text); }

/* ── PRICE PILL ── */
.price-pill {
  text-align: center;
  background: var(--violet-deep);
  color: var(--white);
  border-radius: 12px;
  padding: 28px 22px;
}
.price-pill .amount { font-size: 30px; font-weight: 800; letter-spacing: -.5px; }
.price-pill .always-free { font-size: 15px; font-weight: 700; margin-top: 2px; }
.price-pill .always-free span { color: var(--violet-light); }
.price-pill .price-note { font-size: 13px; opacity: .8; margin-top: 10px; line-height: 1.5; }

/* ── FAQ ── */
.faq-list { max-width: 640px; margin: 0 auto; display: flex; flex-direction: column; gap: 10px; }
.faq-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px 18px;
}
.faq-item summary {
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; font-size: 18px; color: var(--violet-dark); font-weight: 700; }
.faq-item[open] summary::after { content: "\2212"; }
.faq-item p { font-size: 14px; color: var(--text-muted); line-height: 1.6; margin-top: 10px; }
.faq-item a { color: var(--violet-dark); }

/* ── FINAL CTA ── */
.final-cta {
  text-align: center;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 40px 24px;
  margin-bottom: 14px;
}
.final-cta h2 { font-size: 26px; font-weight: 800; letter-spacing: -.5px; margin-bottom: 8px; }
.final-cta p { font-size: 15px; color: var(--text-muted); margin-bottom: 22px; }

/* ── HUB CARDS ── */
.hub-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}
.hub-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  text-decoration: none;
  color: var(--text);
  display: flex;
  gap: 14px;
  align-items: flex-start;
  transition: border-color .12s, box-shadow .12s;
}
.hub-card:hover { border-color: var(--violet); box-shadow: 0 2px 10px rgba(0, 208, 132, .15); }
.hub-card strong { display: block; font-size: 15px; margin-bottom: 4px; }
.hub-card span { font-size: 13.5px; color: var(--text-muted); line-height: 1.55; }
.hub-card .go { color: var(--violet-dark); font-weight: 700; font-size: 13px; }

/* ── FOOTER ── */
.footer {
  text-align: center;
  font-size: 12.5px;
  color: var(--text-muted);
  padding: 26px 16px 30px;
  border-top: 1px solid var(--border);
  margin-top: 28px;
}
.footer a { color: var(--text-muted); }

/* ── MOBILE ── */
@media (max-width: 700px) {
  .hero { padding: 38px 0 26px; }
  .hero h1 { font-size: 30px; }
  .hero-sub { font-size: 15.5px; }
  .features-grid, .hub-grid { grid-template-columns: 1fr; }
  .section { padding: 26px 0; }
}
