/* ============================================================
   CITY KNIFE CO. — Landing Page Styles
   ============================================================ */

/* --- HERO --- */
.hero {
  background: var(--charcoal);
  padding: 100px 24px 90px;
  position: relative;
  overflow: hidden;
}

.hero-bg-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-display);
  font-size: clamp(100px, 20vw, 240px);
  font-weight: 900;
  color: rgba(255,255,255,0.03);
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
  letter-spacing: 0.05em;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
}

.hero-stat-pair {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  margin: 24px 0 36px;
}

.stat-block { text-align: center; }

.stat-num {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 900;
  color: var(--amber);
  line-height: 1;
  letter-spacing: -0.02em;
}

.stat-unit {
  font-size: 0.45em;
  color: var(--amber-lt);
  vertical-align: super;
  margin-left: 2px;
}

.stat-label {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--slate);
  margin-top: 6px;
}

.stat-divider {
  font-size: 3rem;
  color: var(--charcoal3);
  margin-top: -20px;
}

.hero-headline {
  color: var(--cream);
  max-width: 800px;
  margin: 0 auto 24px;
}

.hero-headline em {
  font-style: italic;
  color: var(--amber);
}

.hero-sub {
  color: var(--cream2);
  max-width: 600px;
  margin: 0 auto 36px;
  font-size: 1.1rem;
  opacity: 0.85;
}

.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.hero-note {
  font-size: 0.82rem;
  color: var(--slate);
  letter-spacing: 0.02em;
}

/* --- CREDIBILITY BAR --- */
.credbar {
  background: var(--charcoal2);
  padding: 36px 24px;
  border-bottom: 1px solid var(--charcoal3);
}

.credbar-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}

.cred-item {
  text-align: center;
  padding: 12px 32px;
}

.cred-num {
  display: block;
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--amber);
  line-height: 1.1;
}

.cred-text {
  font-size: 0.8rem;
  color: var(--slate);
  max-width: 120px;
  display: block;
  margin: 4px auto 0;
}

.cred-sep {
  width: 1px;
  height: 48px;
  background: var(--charcoal3);
}

/* --- STORY SECTION --- */
.section-story {
  padding: var(--section-pad);
  background: var(--cream);
}

.story-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 72px;
  align-items: center;
}

.story-img-placeholder {
  background: var(--cream2);
  border: 2px dashed #ccc;
  border-radius: 8px;
  padding: 60px 24px;
  text-align: center;
  margin-bottom: 24px;
}

.story-img-icon { font-size: 3rem; margin-bottom: 12px; }
.story-img-caption { font-size: 0.8rem; color: var(--slate); margin: 0; }

.story-pull-quote {
  background: var(--charcoal);
  color: var(--cream);
  padding: 20px 24px;
  border-left: 4px solid var(--amber);
  border-radius: 4px;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1rem;
  line-height: 1.6;
}

.story-text h2 { margin-bottom: 0; }
.story-text p { color: #444; }

/* --- HOW IT WORKS --- */
.section-hiw {
  background: var(--charcoal);
  padding: var(--section-pad);
}

.section-hiw h2 { margin-bottom: 0; }

.hiw-steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
  margin-top: 56px;
  flex-wrap: wrap;
}

.hiw-step {
  flex: 1;
  min-width: 180px;
  padding: 0 24px;
}

.hiw-step:first-child { padding-left: 0; }
.hiw-step:last-child { padding-right: 0; }

.step-num {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 900;
  color: var(--amber);
  opacity: 0.6;
  line-height: 1;
  margin-bottom: 16px;
}

.hiw-step h3 { margin-bottom: 12px; font-size: 1.1rem; }
.hiw-step p { color: var(--slate); font-size: 0.9rem; }

.hiw-arrow {
  font-size: 1.8rem;
  color: var(--charcoal3);
  padding-top: 20px;
  flex-shrink: 0;
}

/* --- WHAT'S INCLUDED --- */
.section-included {
  padding: var(--section-pad);
  background: var(--cream2);
}

.section-intro {
  max-width: 500px;
  margin: 0 auto;
  color: var(--slate);
}

.included-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 48px;
}

.included-card {
  background: var(--white);
  border-radius: 8px;
  padding: 32px 28px;
  border: 1px solid #e0ddd8;
  transition: transform 0.2s, box-shadow 0.2s;
}

.included-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.08);
}

.ic-icon {
  font-size: 2rem;
  margin-bottom: 16px;
}

.included-card h3 {
  font-size: 1.05rem;
  margin-bottom: 10px;
}

.included-card p { font-size: 0.9rem; color: var(--slate); margin: 0; }

/* --- CTA SECTION --- */
.section-cta {
  padding: var(--section-pad);
  background: var(--charcoal);
}

.cta-box {
  max-width: 560px;
  margin: 0 auto;
  text-align: center;
  background: var(--charcoal2);
  border: 1px solid var(--charcoal3);
  border-radius: 12px;
  padding: 56px 48px;
}

.cta-box h2 { margin-bottom: 0; }

.price-display {
  margin: 32px 0;
  padding: 28px 0;
  border-top: 1px solid var(--charcoal3);
  border-bottom: 1px solid var(--charcoal3);
}

.price-amount {
  display: block;
  font-family: var(--font-display);
  font-size: 5rem;
  font-weight: 900;
  color: var(--amber);
  line-height: 1;
}

.price-note {
  display: block;
  font-size: 0.85rem;
  color: var(--slate);
  margin-top: 8px;
}

.cta-checklist {
  list-style: none;
  text-align: left;
  margin: 0 0 32px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 16px;
}

.cta-checklist li {
  font-size: 0.88rem;
  color: var(--cream2);
}

.cta-footnote {
  font-size: 0.8rem;
  color: var(--slate);
  margin-top: 16px;
  margin-bottom: 0;
}

/* --- FAQ --- */
.section-faq {
  padding: var(--section-pad);
  background: var(--cream);
}

.faq-list {
  max-width: 720px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid #e0ddd8;
}

.faq-q {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 22px 0;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  color: var(--charcoal);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.faq-q span {
  font-size: 1.3rem;
  color: var(--amber);
  flex-shrink: 0;
  transition: transform 0.2s;
}

.faq-q.open span { transform: rotate(45deg); }

.faq-a {
  display: none;
  padding: 0 0 20px;
}

.faq-a p { color: #444; margin: 0; }

/* --- FINAL CTA --- */
.section-final-cta {
  background: var(--charcoal2);
  padding: var(--section-pad);
  border-top: 1px solid var(--charcoal3);
}

/* ============================================================
   RESPONSIVE — LANDING
   ============================================================ */
@media (max-width: 900px) {
  .story-grid { grid-template-columns: 1fr; gap: 40px; }
  .story-visual { max-width: 480px; }
  .included-grid { grid-template-columns: repeat(2, 1fr); }
  .hiw-steps { flex-direction: column; gap: 32px; }
  .hiw-arrow { display: none; }
  .hiw-step { padding: 0; min-width: unset; }
  .cred-sep { display: none; }
  .cta-box { padding: 40px 28px; }
  .cta-checklist { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  .included-grid { grid-template-columns: 1fr; }
  .stat-num { font-size: 2.8rem; }
  .hero-stat-pair { gap: 16px; }
  .stat-divider { display: none; }
  .price-amount { font-size: 3.5rem; }
}
