/* ============================================================
   SH Growth — Global Stylesheet
   Design: Clean Professional, White bg, Yellow CTAs
   ============================================================ */

/* ---------- Reset & Base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: #111827;
  background: #ffffff;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ---------- Design Tokens ---------- */
:root {
  --yellow:     #F5B800;
  --yellow-dk:  #D9A200;
  --dark:       #111827;
  --mid:        #374151;
  --muted:      #6B7280;
  --light:      #F9FAFB;
  --border:     #E5E7EB;
  --white:      #ffffff;

  --radius-sm:  6px;
  --radius-md:  12px;
  --radius-lg:  20px;

  --shadow-sm:  0 1px 3px rgba(0,0,0,.08), 0 1px 2px rgba(0,0,0,.04);
  --shadow-md:  0 4px 16px rgba(0,0,0,.10);
  --shadow-lg:  0 12px 40px rgba(0,0,0,.12);

  --max-w:      100%;
  --nav-h:      72px;
}

/* ---------- Typography ---------- */
h1, h2, h3, h4 { font-weight: 700; line-height: 1.2; color: var(--dark); }

h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); }
h3 { font-size: 1.25rem; }
h4 { font-size: 1rem; }

p { color: var(--mid); }

.lead {
  font-size: 1.125rem;
  color: var(--mid);
  max-width: 620px;
}

.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--yellow-dk);
  background: #FEF9E7;
  border: 1px solid #F5D060;
  border-radius: 100px;
  padding: 4px 14px;
  margin-bottom: 16px;
}

/* ---------- Layout Helpers ---------- */
.container {
  width: 100%;
  padding: 0 64px;
}

section { padding: 96px 0; }
section.sm { padding: 64px 0; }

.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 40px; align-items: center; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }

.text-center { text-align: center; }
.mx-auto { margin-left: auto; margin-right: auto; }
.flex { display: flex; }
.items-center { align-items: center; }
.gap-12 { gap: 12px; }
.gap-16 { gap: 16px; }
.gap-32 { gap: 32px; }
.mt-8  { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mt-48 { margin-top: 48px; }
.mb-16 { margin-bottom: 16px; }
.mb-32 { margin-bottom: 32px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  font-size: 0.9375rem;
  font-weight: 600;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all .18s ease;
  white-space: nowrap;
  text-decoration: none;
}

.btn-primary {
  background: var(--yellow);
  color: var(--dark);
  border-color: var(--yellow);
}
.btn-primary:hover {
  background: var(--yellow-dk);
  border-color: var(--yellow-dk);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.btn-outline {
  background: transparent;
  color: var(--dark);
  border-color: var(--border);
}
.btn-outline:hover {
  border-color: var(--dark);
  transform: translateY(-1px);
}

.btn-dark {
  background: var(--dark);
  color: var(--white);
  border-color: var(--dark);
}
.btn-dark:hover {
  background: var(--mid);
  border-color: var(--mid);
  transform: translateY(-1px);
}

.btn-lg { padding: 16px 36px; font-size: 1rem; }
.btn-sm { padding: 10px 20px; font-size: 0.875rem; }

/* ---------- Navigation ---------- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  z-index: 1000;
}

.nav-inner {
  width: 100%;
  padding: 0 64px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 1.125rem;
  color: var(--dark);
  flex-shrink: 0;
}

.nav-logo-icon {
  width: 36px; height: 36px;
  background: transparent;
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
  flex-shrink: 0;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  flex: 1;
  justify-content: center;
}

.nav-links a {
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--mid);
  transition: all .15s ease;
}

.nav-links a:hover,
.nav-links a.active {
  background: var(--light);
  color: var(--dark);
}

.nav-cta { flex-shrink: 0; }

/* Mobile hamburger (hidden on desktop) */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
}
.nav-hamburger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: all .2s;
}

/* Page offset for fixed nav */
.page-content { padding-top: var(--nav-h); }

/* ---------- Hero ---------- */
.hero {
  padding: 100px 0 80px;
  background: linear-gradient(180deg, #FAFAFA 0%, #ffffff 100%);
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--muted);
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 6px 16px;
  margin-bottom: 24px;
  box-shadow: var(--shadow-sm);
}

.hero-eyebrow .dot {
  width: 8px; height: 8px;
  background: #10B981;
  border-radius: 50%;
}

.hero h1 .accent { color: var(--yellow-dk); }

.hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 36px;
  flex-wrap: wrap;
}

.hero-trust {
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}

.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
}

.hero-trust-icon {
  width: 40px; height: 40px;
  background: var(--light);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.hero-trust-text strong { display: block; font-size: 0.9rem; color: var(--dark); }
.hero-trust-text span { font-size: 0.8rem; color: var(--muted); }

/* ---------- Stats Bar ---------- */
.stats-bar {
  background: var(--dark);
  padding: 48px 0;
}

.stats-bar .container {
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: 32px;
  flex-wrap: wrap;
}

.stat-item { text-align: center; }
.stat-item strong {
  display: block;
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--yellow);
}
.stat-item span {
  font-size: 0.875rem;
  color: rgba(255,255,255,.65);
  margin-top: 4px;
  display: block;
}

/* ---------- Cards ---------- */
.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 32px;
  transition: box-shadow .2s, transform .2s;
}

.card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.card-icon {
  width: 52px; height: 52px;
  background: #FEF9E7;
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 20px;
}

.card h3 { margin-bottom: 8px; }
.card p { font-size: 0.9375rem; }

/* ---------- Steps ---------- */
.step {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  padding: 32px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
}

.step-num {
  width: 48px; height: 48px;
  background: var(--yellow);
  color: var(--dark);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.25rem;
  font-weight: 800;
  flex-shrink: 0;
}

.step-body h3 { margin-bottom: 6px; }
.step-body p { font-size: 0.9375rem; }

/* ---------- Section backgrounds ---------- */
.bg-light { background: var(--light); }
.bg-dark  { background: var(--dark); }
.bg-yellow{ background: var(--yellow); }

.bg-dark h1, .bg-dark h2, .bg-dark h3, .bg-dark h4 { color: var(--white); }
.bg-dark p, .bg-dark .lead { color: rgba(255,255,255,.7); }
.bg-dark .section-label {
  background: rgba(245,184,0,.15);
  border-color: rgba(245,184,0,.3);
  color: var(--yellow);
}

.bg-yellow h1, .bg-yellow h2, .bg-yellow h3 { color: var(--dark); }
.bg-yellow p { color: rgba(0,0,0,.7); }

/* ---------- Divider ---------- */
.divider {
  width: 64px; height: 4px;
  background: var(--yellow);
  border-radius: 2px;
  margin: 16px 0 24px;
}
.divider.center { margin: 16px auto 24px; }

/* ---------- Checklist ---------- */
.checklist { display: flex; flex-direction: column; gap: 14px; }

.checklist li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.9375rem;
  color: var(--mid);
}

.checklist li::before {
  content: '';
  display: block;
  width: 22px; height: 22px;
  background: var(--yellow) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='%23111827' d='M13.3 4.3l-6.6 6.6-3-3 1.4-1.4 1.6 1.6 5.2-5.2z'/%3E%3C/svg%3E") center/14px no-repeat;
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 1px;
}

/* ---------- Pilot Banner ---------- */
.pilot-banner {
  background: var(--dark);
  border-radius: var(--radius-lg);
  padding: 56px 48px;
  position: relative;
  overflow: hidden;
}

.pilot-banner::before {
  content: '';
  position: absolute;
  top: -40px; right: -40px;
  width: 300px; height: 300px;
  background: var(--yellow);
  opacity: .06;
  border-radius: 50%;
}

.pilot-banner .badge {
  display: inline-block;
  background: var(--yellow);
  color: var(--dark);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 100px;
  margin-bottom: 20px;
}

.pilot-banner h2 { color: var(--white); }
.pilot-banner p  { color: rgba(255,255,255,.7); margin-top: 12px; }

.pilot-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 48px;
  align-items: center;
}

.pilot-features {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 24px;
}

.pilot-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,.8);
  font-size: 0.9375rem;
}

.pilot-features li span.tick {
  width: 20px; height: 20px;
  background: rgba(245,184,0,.2);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.75rem;
  flex-shrink: 0;
}

.pilot-price-box {
  text-align: center;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-md);
  padding: 32px 28px;
  min-width: 200px;
}

.pilot-price-box .price-tag {
  font-size: 0.8rem;
  color: rgba(255,255,255,.5);
  text-decoration: line-through;
  margin-bottom: 4px;
}

.pilot-price-box .price-now {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--yellow);
  line-height: 1;
}

.pilot-price-box .price-sub {
  font-size: 0.8rem;
  color: rgba(255,255,255,.5);
  margin-top: 6px;
}

.pilot-price-box .spots-left {
  display: inline-block;
  background: rgba(245,184,0,.15);
  color: var(--yellow);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 100px;
  margin-top: 16px;
}

/* ---------- FAQ Accordion ---------- */
.faq-list { display: flex; flex-direction: column; gap: 1px; }

.faq-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
}

.faq-item + .faq-item { margin-top: 8px; }

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 24px;
  font-size: 1rem;
  font-weight: 600;
  color: var(--dark);
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  gap: 16px;
  transition: background .15s;
}

.faq-question:hover { background: var(--light); }

.faq-question .icon {
  width: 28px; height: 28px;
  background: var(--light);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  font-size: 1.125rem;
  transition: transform .25s;
  color: var(--dark);
}

.faq-item.open .faq-question .icon { transform: rotate(45deg); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s ease, padding .3s ease;
  padding: 0 24px;
  font-size: 0.9375rem;
  color: var(--mid);
  line-height: 1.7;
}

.faq-item.open .faq-answer {
  max-height: 400px;
  padding: 0 24px 24px;
}

/* ---------- Team Card ---------- */
.team-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 32px;
  text-align: center;
}

.team-avatar {
  width: 88px; height: 88px;
  border-radius: 50%;
  background: var(--light);
  display: flex; align-items: center; justify-content: center;
  font-size: 2rem;
  margin: 0 auto 20px;
  border: 3px solid var(--yellow);
  overflow: hidden;
}

.team-card h3 { margin-bottom: 4px; }
.team-card .role {
  font-size: 0.875rem;
  color: var(--yellow-dk);
  font-weight: 600;
  margin-bottom: 12px;
}
.team-card p { font-size: 0.9rem; }

/* ---------- Blog Card ---------- */
.blog-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: box-shadow .2s, transform .2s;
}

.blog-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.blog-card-img {
  width: 100%;
  aspect-ratio: 16/9;
  background: linear-gradient(135deg, var(--dark) 0%, #374151 100%);
  display: flex; align-items: center; justify-content: center;
  font-size: 2.5rem;
  color: var(--yellow);
}

.blog-card-body { padding: 24px; }

.blog-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--yellow-dk);
  background: #FEF9E7;
  border-radius: 100px;
  padding: 3px 10px;
  margin-bottom: 10px;
}

.blog-card h3 { font-size: 1.1rem; margin-bottom: 8px; }
.blog-card p  { font-size: 0.9rem; }

.blog-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
  font-size: 0.8125rem;
  color: var(--muted);
}

.read-more {
  color: var(--dark);
  font-weight: 600;
  font-size: 0.875rem;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.read-more:hover { color: var(--yellow-dk); }

/* ---------- Page Hero (inner pages) ---------- */
.page-hero {
  background: var(--dark);
  padding: 80px 0 72px;
  text-align: center;
}

.page-hero .section-label {
  background: rgba(245,184,0,.15);
  border-color: rgba(245,184,0,.3);
  color: var(--yellow);
}

.page-hero h1 { color: var(--white); }
.page-hero .lead { color: rgba(255,255,255,.7); margin: 16px auto 0; }

/* ---------- CTA Section ---------- */
.cta-section {
  background: var(--light);
  padding: 80px 0;
  text-align: center;
}

.cta-section h2 { margin-bottom: 16px; }
.cta-section p  { margin-bottom: 32px; }

/* ---------- Footer ---------- */
.footer {
  background: #0D0F14;
  color: rgba(255,255,255,.6);
  padding: 64px 0 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand .nav-logo { color: #F5B800; margin-bottom: 16px; }
.footer-brand p { font-size: 0.9rem; line-height: 1.7; }

.footer-col h4 {
  color: #F5B800;
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.footer-col a {
  display: block;
  font-size: 0.9rem;
  color: rgba(255,255,255,.55);
  margin-bottom: 10px;
  transition: color .15s;
}

.footer-col a:hover { color: var(--yellow); }

.footer-col .contact-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  margin-bottom: 10px;
  color: rgba(255,255,255,.55);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.8125rem;
}

.footer-bottom a { color: rgba(255,255,255,.4); transition: color .15s; }
.footer-bottom a:hover { color: rgba(255,255,255,.8); }

.footer-bottom-links { display: flex; gap: 20px; }

.footer-social { display: flex; gap: 12px; margin-top: 20px; }

.social-link {
  width: 38px; height: 38px;
  border-radius: 9px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.6);
  text-decoration: none;
  transition: background .2s, color .2s;
}
.social-link:hover {
  background: rgba(245,184,0,.15);
  color: #F5B800;
  border-color: rgba(245,184,0,.3);
}

.footer-contact-item { font-size: 14px; color: rgba(255,255,255,.6); margin-bottom: 6px; }
.footer-contact-item a { color: rgba(255,255,255,.6); text-decoration: none; }
.footer-contact-item a:hover { color: var(--yellow); }

/* ---------- Mobile Responsive ---------- */
@media (max-width: 900px) {
  .grid-2 { grid-template-columns: 1fr; }
  .grid-3 { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }

  .footer-grid { grid-template-columns: 1fr 1fr; }

  .pilot-grid { grid-template-columns: 1fr; }
  .pilot-price-box { min-width: 0; }

  .hero-trust { gap: 20px; }
}

@media (max-width: 900px) {
  .container { padding: 0 32px; }
  .nav-inner  { padding: 0 32px; }
}

@media (max-width: 640px) {
  section { padding: 64px 0; }
  .container { padding: 0 20px; }
  .nav-inner  { padding: 0 20px; }
  .grid-4 { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }

  .nav-links, .nav-cta { display: none; }
  .nav-hamburger { display: flex; }

  .hero-actions { flex-direction: column; align-items: flex-start; }

  .pilot-banner { padding: 36px 24px; }

  .stats-bar .container { gap: 24px; }
  .stat-item strong { font-size: 1.75rem; }
}

/* ============================================================
   Additional Components
   ============================================================ */

/* ---------- Team Card (updated with team-title) ---------- */
.team-card .team-title {
  font-size: 0.875rem;
  color: var(--yellow-dk);
  font-weight: 600;
  margin-bottom: 16px;
}

.team-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
  justify-content: center;
}

.tag {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--mid);
  background: var(--light);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 4px 12px;
}

/* ---------- How It Works — Full Step ---------- */
.step-full {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 40px;
}

.step-full-header {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 24px;
}

.step-num-lg {
  width: 64px; height: 64px;
  background: var(--dark);
  color: var(--yellow);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.75rem;
  font-weight: 800;
  flex-shrink: 0;
}

.step-time {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--yellow-dk);
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-top: 4px;
}

.step-full-body p + p { margin-top: 12px; }

.step-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}

.step-detail-item strong {
  display: block;
  font-size: 0.8125rem;
  text-transform: uppercase;
  letter-spacing: .05em;
  color: var(--muted);
  margin-bottom: 4px;
}

.step-detail-item p {
  font-size: 0.9rem;
  margin: 0;
}

.step-connector {
  width: 2px;
  height: 32px;
  background: var(--border);
  margin: 0 auto;
}

/* ---------- Comparison Table ---------- */
.comparison-table {
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--white);
}

.comparison-header,
.comparison-row {
  display: grid;
  grid-template-columns: 2fr 1.5fr 1.5fr 1.5fr;
}

.comparison-header {
  background: var(--dark);
  padding: 0;
}

.comparison-header .comparison-col {
  padding: 16px 20px;
  font-size: 0.875rem;
  font-weight: 700;
  color: rgba(255,255,255,.6);
  text-align: center;
}

.comparison-header .comparison-col.highlight {
  background: var(--yellow);
  color: var(--dark);
  border-radius: 0;
}

.comparison-row {
  border-top: 1px solid var(--border);
}

.comparison-row:hover { background: var(--light); }

.comparison-feature {
  padding: 16px 20px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--dark);
  display: flex;
  align-items: center;
}

.comparison-col {
  padding: 16px 20px;
  font-size: 0.875rem;
  color: var(--mid);
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.comparison-col.highlight {
  background: #FFFBEA;
  border-left: 2px solid var(--yellow);
  border-right: 2px solid var(--yellow);
  font-weight: 600;
  color: var(--dark);
}

.good  { color: #059669; font-weight: 600; }
.bad   { color: #DC2626; }
.neutral { color: var(--muted); }

/* ---------- FAQ Section Label ---------- */
.faq-section-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 48px 0 16px;
}

.faq-section-label:first-child { margin-top: 0; }

/* ---------- FAQ icon style ---------- */
.faq-icon {
  width: 28px; height: 28px;
  background: var(--light);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  font-size: 1.25rem;
  font-weight: 400;
  transition: transform .25s;
  line-height: 1;
}
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-answer p + p { margin-top: 10px; }
.faq-answer ul {
  list-style: disc;
  padding-left: 20px;
  margin: 10px 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.faq-answer ul li { color: var(--mid); font-size: 0.9375rem; }

/* ---------- Blog Page ---------- */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.blog-card-inner { padding: 28px; }

.blog-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.blog-category {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--yellow-dk);
  background: #FEF9E7;
  border-radius: 100px;
  padding: 3px 10px;
  letter-spacing: .05em;
}

.blog-date {
  font-size: 0.8rem;
  color: var(--muted);
}

.blog-card h3 {
  font-size: 1.05rem;
  margin-bottom: 10px;
  line-height: 1.4;
}

.blog-read-more {
  display: inline-block;
  margin-top: 16px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--dark);
  transition: color .15s;
}
.blog-read-more:hover { color: var(--yellow-dk); }

/* Featured post */
.featured-post {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 48px;
  position: relative;
  overflow: hidden;
}

.featured-post::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 4px;
  background: var(--yellow);
}

.featured-post-badge {
  display: inline-block;
  background: var(--yellow);
  color: var(--dark);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 100px;
  margin-bottom: 12px;
}

.featured-post-title {
  font-size: clamp(1.3rem, 2.5vw, 1.9rem);
  margin: 12px 0 16px;
  max-width: 760px;
}

/* Email subscribe form */
.email-form {
  display: flex;
  gap: 12px;
  max-width: 480px;
  margin: 0 auto;
}

.email-input {
  flex: 1;
  padding: 14px 18px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 0.9375rem;
  font-family: inherit;
  outline: none;
  transition: border-color .15s;
}

.email-input:focus { border-color: var(--yellow); }

@media (max-width: 900px) {
  .blog-grid { grid-template-columns: 1fr 1fr; }
  .step-detail-grid { grid-template-columns: 1fr; }
  .comparison-header, .comparison-row { grid-template-columns: 2fr 1.5fr 1fr 1fr; }
}

@media (max-width: 640px) {
  .blog-grid { grid-template-columns: 1fr; }
  .email-form { flex-direction: column; }
  .comparison-table { overflow-x: auto; }
  .comparison-header, .comparison-row { grid-template-columns: 1.5fr 1.2fr 1fr 1fr; font-size: 0.8rem; }
  .comparison-feature, .comparison-col { padding: 12px 10px; font-size: 0.8rem; }
  .step-full { padding: 24px; }
  .step-full-header { gap: 16px; }
  .step-num-lg { width: 48px; height: 48px; font-size: 1.25rem; }
  .featured-post { padding: 28px; }
}

/* ============================================================
   Home Page v2 Components
   ============================================================ */

/* Need / solution list */
.need-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.need-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.need-icon {
  width: 44px; height: 44px;
  background: #FEF9E7;
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.need-item strong {
  display: block;
  font-size: 0.9375rem;
  color: var(--dark);
  margin-bottom: 2px;
}

.need-item p {
  font-size: 0.875rem;
  margin: 0;
}

/* Simple comparison strip */
.compare-simple {
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.compare-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
  font-size: 0.875rem;
  border-bottom: 1px solid var(--border);
  gap: 12px;
}

.compare-row:last-child { border-bottom: none; }

.compare-row.highlight-row {
  background: #FFFBEA;
  border-left: 3px solid var(--yellow);
}

.compare-label {
  font-weight: 600;
  color: var(--dark);
  white-space: nowrap;
}

.compare-bad  { color: #DC2626; font-size: 0.8125rem; text-align: right; }
.compare-good { color: #059669; font-weight: 600; font-size: 0.8125rem; text-align: right; }

/* Industry cards */
.industry-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 36px;
  transition: box-shadow .2s, transform .2s;
}

.industry-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.industry-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}

.industry-icon {
  width: 52px; height: 52px;
  background: #FEF9E7;
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
}

.industry-card p {
  margin-bottom: 20px;
  font-size: 0.9375rem;
}

.role-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 12px;
}

.role-list li {
  font-size: 0.8rem;
  color: var(--mid);
  padding-left: 14px;
  position: relative;
}

.role-list li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--yellow-dk);
  font-size: 0.75rem;
}

/* FOMO bar */
.fomo-bar {
  display: flex;
  align-items: center;
  gap: 14px;
}

.fomo-spots {
  display: flex;
  gap: 8px;
}

.fomo-dot {
  width: 20px; height: 20px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,.2);
}

.fomo-dot.taken { background: var(--yellow); border-color: var(--yellow); }
.fomo-dot.open  { background: transparent; }

.fomo-label {
  font-size: 0.875rem;
  color: rgba(255,255,255,.65);
}

@media (max-width: 900px) {
  .industry-card { padding: 24px; }
  .role-list { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .compare-row { flex-direction: column; align-items: flex-start; gap: 4px; }
  .compare-bad, .compare-good { text-align: left; }
  .industry-card { padding: 20px; }
  .fomo-bar { flex-direction: column; align-items: flex-start; gap: 10px; }
}
