/* Extracted from public/guide.html */
/* ── Guide Sayfa Stilleri ── */
.guide-wrap { width: 90%; max-width: 1100px; margin: 0 auto; padding: 0 24px; }

/* Hero */
.guide-hero {
  padding: 80px 0 64px;
  text-align: center;
  position: relative;
}
.guide-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border-radius: 20px;
  background: rgba(90,158,120,0.12);
  border: 1px solid var(--c-accent);
  font-size: 12px;
  font-weight: 700;
  color: var(--c-accent);
  margin-bottom: 20px;
  letter-spacing: .06em;
}
.guide-hero h1 {
  font-family: var(--font-h);
  font-weight: 900;
  font-size: clamp(32px, 5vw, 56px);
  line-height: 1.1;
  margin-bottom: 16px;
}
.guide-hero p {
  font-size: 18px;
  color: var(--c-text-muted);
  max-width: 560px;
  margin: 0 auto 32px;
  line-height: 1.7;
}
.guide-hero-btns {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}
.guide-tab-btn {
  padding: 12px 28px;
  border-radius: 28px;
  font-family: var(--font-h);
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  transition: all var(--t);
  border: 2px solid var(--c-border);
  background: transparent;
  color: var(--c-text-muted);
}
.guide-tab-btn.active, .guide-tab-btn:hover {
  border-color: var(--c-accent);
  background: var(--c-accent);
  color: #fff;
}

/* Section ayraç */
.guide-section {
  padding: 64px 0;
  border-top: 1px solid var(--c-border);
}
.guide-section-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--c-accent);
  margin-bottom: 8px;
}
.guide-section-title {
  font-family: var(--font-h);
  font-weight: 900;
  font-size: clamp(22px, 3vw, 36px);
  margin-bottom: 12px;
}
.guide-section-sub {
  font-size: 15px;
  color: var(--c-text-muted);
  line-height: 1.7;
  max-width: 620px;
  margin-bottom: 40px;
}

/* 3'lü kart grid */
.guide-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-top: 32px;
}
.guide-card {
  padding: 28px;
  border-radius: var(--r-lg);
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  transition: all var(--t);
}
.guide-card:hover {
  border-color: var(--c-accent);
  transform: translateY(-3px);
}
.guide-card-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--r);
  background: rgba(90,158,120,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 16px;
}
.guide-card h3 {
  font-family: var(--font-h);
  font-weight: 800;
  font-size: 16px;
  margin-bottom: 8px;
}
.guide-card p {
  font-size: 13px;
  color: var(--c-text-muted);
  line-height: 1.75;
}
.guide-card-tip {
  margin-top: 12px;
  padding: 8px 12px;
  border-radius: var(--r);
  background: rgba(90,158,120,0.08);
  font-size: 12px;
  color: var(--c-accent);
  border-left: 2px solid var(--c-accent);
}

/* Adımlar */
.guide-steps {
  display: grid;
  gap: 0;
  margin-top: 32px;
  position: relative;
}
.guide-step {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 20px;
  padding: 24px 0;
  border-bottom: 1px solid var(--c-border);
  position: relative;
}
.guide-step:last-child { border-bottom: none; }
.guide-step-num {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--c-accent);
  color: #fff;
  font-family: var(--font-h);
  font-weight: 900;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.guide-step-content h3 {
  font-family: var(--font-h);
  font-weight: 800;
  font-size: 16px;
  margin-bottom: 6px;
}
.guide-step-content p {
  font-size: 14px;
  color: var(--c-text-muted);
  line-height: 1.75;
}

/* Skor tablosu */
.score-bars {
  display: grid;
  gap: 12px;
  margin-top: 24px;
}
.score-row {
  display: flex;
  align-items: center;
  gap: 16px;
}
.score-label {
  font-family: var(--font-h);
  font-weight: 700;
  font-size: 13px;
  width: 120px;
  flex-shrink: 0;
}
.score-bar {
  flex: 1;
  height: 8px;
  border-radius: 4px;
  background: var(--c-border);
  overflow: hidden;
}
.score-bar-fill {
  height: 100%;
  border-radius: 4px;
}
.score-badge {
  padding: 3px 10px;
  border-radius: 12px;
  font-size: 11px;
  font-weight: 700;
  white-space: nowrap;
}
.s-excellent { background: rgba(46,125,50,.2); color:#4caf50; }
.s-good { background: rgba(46,125,50,.1); color:#81c784; }
.s-medium { background: rgba(212,148,58,.15); color:#d4943a; }
.s-weak { background: rgba(224,80,80,.1); color:#e05050; }
.s-avoid { background: rgba(224,80,80,.2); color:#c62828; }

/* Kriter listesi */
.criteria-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
  margin-top: 24px;
}
.criteria-item {
  padding: 20px;
  border-radius: var(--r);
  background: var(--c-surface);
  border: 1px solid var(--c-border);
}
.criteria-item .num {
  font-family: var(--font-h);
  font-weight: 900;
  font-size: 24px;
  color: var(--c-accent);
  margin-bottom: 6px;
}
.criteria-item h4 {
  font-family: var(--font-h);
  font-weight: 700;
  font-size: 13px;
  margin-bottom: 4px;
}
.criteria-item p {
  font-size: 12px;
  color: var(--c-text-muted);
  line-height: 1.6;
}

/* Plan tablosu */
.plan-table-wrap {
  overflow-x: auto;
  margin-top: 32px;
  border-radius: var(--r-lg);
  border: 1px solid var(--c-border);
}
.plan-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 600px;
}
.plan-table th {
  padding: 14px 20px;
  background: var(--c-surface-2);
  font-family: var(--font-h);
  font-size: 12px;
  font-weight: 700;
  text-align: left;
  border-bottom: 1px solid var(--c-border);
}
.plan-table th:not(:first-child) { text-align: center; }
.plan-table td {
  padding: 12px 20px;
  font-size: 13px;
  color: var(--c-text-muted);
  border-bottom: 1px solid var(--c-border);
}
.plan-table td:not(:first-child) { text-align: center; }
.plan-table tr:last-child td { border-bottom: none; }
.plan-table tr:hover td { background: var(--c-surface); }
.plan-table .check { color: #4caf50; font-size: 16px; }
.plan-table .cross { color: #e05050; font-size: 16px; }
.plan-table .highlight th { background: rgba(90,158,120,0.1); color: var(--c-accent); }

/* B2B bölümü */
.b2b-section {
  background: var(--c-surface);
  border-radius: var(--r-lg);
  padding: 40px;
  margin-top: 40px;
  border: 1px solid var(--c-border);
}
.b2b-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  margin-top: 32px;
}
.b2b-feature {
  padding: 24px;
  border-radius: var(--r);
  background: var(--c-bg);
  border: 1px solid var(--c-border);
}
.b2b-feature .icon { font-size: 28px; margin-bottom: 12px; }
.b2b-feature h3 {
  font-family: var(--font-h);
  font-weight: 800;
  font-size: 15px;
  margin-bottom: 8px;
}
.b2b-feature p {
  font-size: 13px;
  color: var(--c-text-muted);
  line-height: 1.7;
}
.b2b-feature ul {
  margin-top: 8px;
  padding-left: 16px;
}
.b2b-feature li {
  font-size: 12px;
  color: var(--c-text-muted);
  line-height: 1.8;
}

/* SSS */
.faq-mini {
  display: grid;
  gap: 12px;
  margin-top: 32px;
}
.faq-mini-item {
  padding: 20px;
  border-radius: var(--r);
  background: var(--c-surface);
  border: 1px solid var(--c-border);
}
.faq-mini-item h4 {
  font-family: var(--font-h);
  font-weight: 700;
  font-size: 14px;
  margin-bottom: 6px;
  color: var(--c-text);
}
.faq-mini-item p {
  font-size: 13px;
  color: var(--c-text-muted);
  line-height: 1.7;
}

/* CTA */
.guide-cta {
  text-align: center;
  padding: 80px 0;
  border-top: 1px solid var(--c-border);
}
.guide-cta h2 {
  font-family: var(--font-h);
  font-weight: 900;
  font-size: clamp(24px, 4vw, 40px);
  margin-bottom: 12px;
}
.guide-cta p {
  font-size: 16px;
  color: var(--c-text-muted);
  margin-bottom: 32px;
}
.guide-cta-btns {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Tab içerik geçişi */
.user-content { }
.b2b-content { display: none; }
.b2b-content.active { display: block; }
.user-content.hidden { display: none; }

@media(max-width: 768px) {
  .guide-hero { padding: 48px 0 40px; }
  .guide-section { padding: 40px 0; }
  .b2b-section { padding: 24px; }
  .guide-step { grid-template-columns: 40px 1fr; gap: 12px; }
}

/* Inline score section cleanup */
.guide-mini-title {
  font-family: var(--font-h);
  font-size: 16px;
  font-weight: 800;
  margin-bottom: 16px;
}

.guide-mini-title-spaced {
  margin: 40px 0 16px;
}

.guide-score-fill-100 {
  width: 100%;
  background: #4caf50;
}

.guide-score-fill-80 {
  width: 80%;
  background: #81c784;
}

.guide-score-fill-60 {
  width: 60%;
  background: #d4943a;
}

.guide-score-fill-40 {
  width: 40%;
  background: #e05050;
}

.guide-score-fill-20 {
  width: 20%;
  background: #c62828;
}

/* Inline warning section cleanup */
.guide-warning-box {
  margin-top: 32px;
  padding: 24px;
  border-radius: var(--r-lg);
  background: rgba(224,80,80,0.06);
  border: 1px solid rgba(224,80,80,0.2);
}

.guide-warning-title {
  margin-bottom: 12px;
  color: #e05050;
  font-family: var(--font-h);
  font-size: 16px;
  font-weight: 800;
}

.guide-warning-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(200px,1fr));
  gap: 8px;
}

.guide-warning-item {
  padding: 8px 12px;
  border-radius: var(--r);
  background: var(--c-surface);
  color: var(--c-text-muted);
  font-size: 12px;
}

/* Inline remaining content cleanup */
.guide-profile-note-box {
  margin-top: 24px;
  padding: 20px;
  border-radius: var(--r);
  background: rgba(90,158,120,0.08);
  border: 1px solid var(--c-accent);
}

.guide-profile-note {
  color: var(--c-text-muted);
  font-size: 13px;
}

.guide-point-value {
  color: var(--c-accent);
  font-size: 20px;
}

.guide-accent-link {
  color: var(--c-accent);
}

.guide-cta-link {
  padding: 14px 32px;
  border-radius: 28px;
  font-family: var(--font-h);
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
}

.guide-footer-small {
  font-size: 11px;
}
