/* b2b.css — B2B sayfası stilleri */

/* ── HERO ─────────────────────────────────────────────────────── */
.b2b-hero {
  padding: 140px 0 160px;
  min-height: 100vh;
  display: flex;
  align-items: center;
}
.b2b-hero .container { width: 100%; }
.b2b-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.b2b-hero-copy h1 {
  font-family: var(--font-h);
  font-weight: 900;
  font-size: clamp(28px, 4vw, 48px);
  line-height: 1.1;
  margin-bottom: 20px;
  color: var(--c-text);
}
.b2b-hero-sub {
  font-size: 16px;
  color: var(--c-muted);
  line-height: 1.7;
  margin-bottom: 32px;
}
.b2b-hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* Hero panel */
.b2b-hero-panel {
  background: var(--c-surface);
  border: 1.5px solid var(--c-border);
  border-radius: var(--r-lg);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.b2b-panel-kicker {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--c-accent);
  margin-bottom: 4px;
}
.b2b-panel-score-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 14px;
  background: var(--c-bg);
  border-radius: 8px;
  font-size: 14px;
  color: var(--c-text);
}
.b2b-score-good { color: #22c55e; font-weight: 800; font-size: 18px; }
.b2b-score-ok   { color: #f59e0b; font-weight: 800; font-size: 18px; }
.b2b-panel-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 4px;
}
.b2b-tag {
  font-size: 11px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 20px;
}
.b2b-tag--green  { background: rgba(34,197,94,.12);  color: #22c55e; }
.b2b-tag--blue   { background: rgba(59,130,246,.12); color: #3b82f6; }
.b2b-tag--purple { background: rgba(168,85,247,.12); color: #a855f7; }
.b2b-panel-cta {
  font-size: 12px;
  color: var(--c-muted);
  text-align: center;
  padding-top: 8px;
  border-top: 1px solid var(--c-border);
}

/* ── SECTIONS ─────────────────────────────────────────────────── */
.b2b-section { padding: 140px 0; }
.b2b-section--soft { background: var(--c-surface); }

/* Section divider büyüt */
.b2b-section + .section-divider,
.section-divider + .b2b-section,
.b2b-hero + .section-divider {
  margin: 40px 0;
}

/* ── HOOKS ────────────────────────────────────────────────────── */
.b2b-hooks-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.b2b-hook-card {
  padding: 28px 24px;
  background: var(--c-surface);
  border: 1.5px solid var(--c-border);
  border-radius: var(--r-lg);
  transition: all 0.25s ease;
}
.b2b-hook-card:hover {
  transform: translateY(-4px);
  border-color: var(--c-accent);
  box-shadow: 0 8px 32px var(--c-accent-glow);
}
.b2b-hook-icon {
  font-size: 28px;
  margin-bottom: 14px;
}
.b2b-hook-card h3 {
  font-family: var(--font-h);
  font-weight: 800;
  font-size: 16px;
  color: var(--c-text);
  margin-bottom: 8px;
}
.b2b-hook-card p {
  font-size: 13px;
  color: var(--c-muted);
  line-height: 1.6;
}

/* ── CRITERIA ─────────────────────────────────────────────────── */
.b2b-criteria-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 48px;
}
.b2b-criteria-card {
  padding: 24px;
  background: var(--c-bg);
  border: 1.5px solid var(--c-border);
  border-radius: var(--r-lg);
  position: relative;
}
.b2b-criteria-num {
  font-family: var(--font-h);
  font-weight: 900;
  font-size: 32px;
  color: var(--c-accent);
  opacity: 0.3;
  position: absolute;
  top: 16px;
  right: 20px;
}
.b2b-criteria-card h4 {
  font-family: var(--font-h);
  font-weight: 800;
  font-size: 15px;
  color: var(--c-text);
  margin-bottom: 8px;
}
.b2b-criteria-card p {
  font-size: 12px;
  color: var(--c-muted);
  line-height: 1.6;
}

/* ── PHILOSOPHIES ─────────────────────────────────────────────── */
.b2b-phil-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  margin-top: 32px;
}
.b2b-phil-card {
  padding: 20px 16px;
  background: var(--c-bg);
  border: 1.5px solid var(--c-border);
  border-radius: var(--r-lg);
  text-align: center;
  transition: all 0.25s ease;
}
.b2b-phil-card:hover {
  border-color: var(--c-accent);
  transform: translateY(-3px);
}
.b2b-phil-card h4 {
  font-family: var(--font-h);
  font-weight: 700;
  font-size: 13px;
  color: var(--c-text);
  margin-bottom: 8px;
}
.b2b-phil-card p {
  font-size: 12px;
  color: var(--c-muted);
  line-height: 1.5;
}

/* ── OUTPUT ───────────────────────────────────────────────────── */
.b2b-output-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 32px;
}
.b2b-output-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 16px;
  background: var(--c-bg);
  border-radius: 10px;
  font-size: 13px;
  color: var(--c-text);
}
.b2b-output-check {
  color: var(--c-accent);
  font-weight: 700;
  flex-shrink: 0;
}

/* ── PLANS ────────────────────────────────────────────────────── */
.b2b-plans-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
  align-items: stretch;
}
.b2b-plan-card {
  padding: 32px 28px;
  background: var(--c-surface);
  border: 1.5px solid var(--c-border);
  border-radius: var(--r-lg);
  position: relative;
  transition: all 0.25s ease;
  display: flex;
  flex-direction: column;
}
.b2b-plan-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px var(--c-accent-glow);
}
.b2b-plan-card--featured {
  border-color: var(--c-accent);
  box-shadow: 0 4px 32px var(--c-accent-glow);
  border-top: 3px solid var(--c-accent);
}
.b2b-plan-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--c-accent);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  padding: 4px 16px;
  border-radius: 20px;
  white-space: nowrap;
}
.b2b-plan-name {
  font-family: var(--font-h);
  font-weight: 900;
  font-size: 13px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--c-accent);
  margin-bottom: 12px;
}
.b2b-plan-price {
  font-family: var(--font-h);
  font-weight: 900;
  font-size: 40px;
  color: var(--c-text);
  line-height: 1;
  margin-bottom: 4px;
}
.b2b-plan-price span {
  font-size: 14px;
  font-weight: 400;
  color: var(--c-muted);
}
.b2b-plan-try {
  font-size: 13px;
  color: var(--c-muted);
  margin-bottom: 4px;
}
.b2b-plan-min {
  font-size: 11px;
  color: var(--c-accent);
  font-weight: 600;
  margin-bottom: 12px;
}
.b2b-plan-desc {
  font-size: 13px;
  color: var(--c-muted);
  line-height: 1.5;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--c-border);
}
.b2b-plan-features {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}
.b2b-plan-features li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--c-text);
}
.b2b-feat-check { color: var(--c-accent); font-weight: 700; flex-shrink: 0; }
.b2b-feat-x     { color: var(--c-muted);  font-weight: 700; flex-shrink: 0; opacity: .5; }
.b2b-plan-cta {
  display: block;
  text-align: center;
  padding: 12px 20px;
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.2s ease;
  margin-bottom: 12px;
}
.b2b-plan-cta.outline {
  border: 2px solid var(--c-accent);
  color: var(--c-accent);
}
.b2b-plan-cta.outline:hover {
  background: var(--c-accent);
  color: #fff;
}
.b2b-plan-cta.filled {
  background: var(--c-accent);
  color: #fff;
  border: 2px solid var(--c-accent);
}
.b2b-plan-cta.filled:hover {
  opacity: 0.88;
  transform: translateY(-1px);
}
.b2b-plan-annual {
  font-size: 11px;
  color: var(--c-accent);
  text-align: center;
  font-weight: 600;
}

/* ── HOW ──────────────────────────────────────────────────────── */
.b2b-how-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.b2b-how-card {
  text-align: center;
  padding: 28px 20px;
}
.b2b-how-num {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--c-accent);
  color: #fff;
  font-family: var(--font-h);
  font-weight: 900;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}
.b2b-how-card h4 {
  font-family: var(--font-h);
  font-weight: 800;
  font-size: 15px;
  color: var(--c-text);
  margin-bottom: 8px;
}
.b2b-how-card p {
  font-size: 13px;
  color: var(--c-muted);
  line-height: 1.6;
}

/* ── APPLY FORM ───────────────────────────────────────────────── */
.b2b-apply-wrap {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 64px;
  align-items: start;
}
.b2b-apply-note {
  margin-top: 20px;
  font-size: 12px;
  color: var(--c-accent);
  font-weight: 600;
}
.b2b-apply-form {
  background: var(--c-surface);
  border: 1.5px solid var(--c-border);
  border-radius: var(--r-lg);
  padding: 32px;
}
.b2b-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}
.b2b-form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px;
}
.b2b-form-group label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--c-muted);
}
.b2b-form-group input,
.b2b-form-group select,
.b2b-form-group textarea {
  padding: 10px 14px;
  background: var(--c-bg);
  border: 1.5px solid var(--c-border);
  border-radius: 8px;
  color: var(--c-text);
  font-size: 14px;
  font-family: var(--font-b);
  transition: border-color 0.2s;
}
.b2b-form-group input:focus,
.b2b-form-group select:focus,
.b2b-form-group textarea:focus {
  outline: none;
  border-color: var(--c-accent);
}
.b2b-form-submit {
  width: 100%;
  padding: 14px;
  background: var(--c-accent);
  color: #fff;
  border: none;
  border-radius: var(--radius);
  font-size: 15px;
  font-weight: 700;
  font-family: var(--font-h);
  cursor: pointer;
  transition: all 0.2s ease;
}
.b2b-form-submit:hover { opacity: 0.88; transform: translateY(-1px); }
.b2b-form-submit:disabled { opacity: 0.6; cursor: not-allowed; }
.b2b-form-success {
  text-align: center;
  padding: 40px;
  font-size: 16px;
  color: var(--c-accent);
  font-weight: 600;
}

/* ── FINAL CTA ────────────────────────────────────────────────── */
.b2b-final-cta {
  background: linear-gradient(135deg, var(--c-surface) 0%, var(--c-bg) 100%);
}

/* ── RESPONSIVE ───────────────────────────────────────────────── */
@media (max-width: 1100px) {
  .b2b-phil-grid    { grid-template-columns: repeat(3, 1fr); }
  .b2b-output-grid  { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 900px) {
  .b2b-hero-grid    { grid-template-columns: 1fr; }
  .b2b-hero-panel   { display: none; }
  .b2b-hooks-grid   { grid-template-columns: repeat(2, 1fr); }
  .b2b-criteria-grid{ grid-template-columns: repeat(2, 1fr); }
  .b2b-plans-grid   { grid-template-columns: 1fr; }
  .b2b-how-grid     { grid-template-columns: repeat(2, 1fr); }
  .b2b-apply-wrap   { grid-template-columns: 1fr; }
  .b2b-phil-grid    { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .b2b-hooks-grid   { grid-template-columns: 1fr; }
  .b2b-criteria-grid{ grid-template-columns: 1fr; }
  .b2b-how-grid     { grid-template-columns: 1fr; }
  .b2b-form-row     { grid-template-columns: 1fr; }
  .b2b-phil-grid    { grid-template-columns: 1fr; }
  .b2b-output-grid  { grid-template-columns: repeat(2, 1fr); }
}


/* ── ANIMATIONS ───────────────────────────────────────────────── */
.b2b-reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.b2b-reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.b2b-reveal-delay-1 { transition-delay: 0.1s; }
.b2b-reveal-delay-2 { transition-delay: 0.2s; }
.b2b-reveal-delay-3 { transition-delay: 0.3s; }
.b2b-reveal-delay-4 { transition-delay: 0.4s; }
.b2b-reveal-delay-5 { transition-delay: 0.5s; }

/* Hero panel float animasyonu */
.b2b-hero-panel {
  animation: b2bFloat 4s ease-in-out infinite;
}
@keyframes b2bFloat {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-8px); }
}

/* Criteria kart hover */
.b2b-criteria-card {
  transition: all 0.25s ease;
}
.b2b-criteria-card:hover {
  transform: translateY(-4px);
  border-color: var(--c-accent);
  box-shadow: 0 8px 24px var(--c-accent-glow);
}

/* How kart hover */
.b2b-how-card {
  transition: all 0.25s ease;
  border-radius: var(--r-lg);
}
.b2b-how-card:hover .b2b-how-num {
  transform: scale(1.1);
  box-shadow: 0 0 20px var(--c-accent-glow);
}
.b2b-how-num {
  transition: all 0.25s ease;
}

/* Output item hover */
.b2b-output-item {
  transition: all 0.2s ease;
  cursor: default;
}
.b2b-output-item:hover {
  background: var(--c-surface);
  transform: translateX(4px);
}

/* Section divider büyüt */
.section-divider { margin: 0; }

/* ── MODAL ────────────────────────────────────────────────────── */
.b2b-modal-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.88);
  backdrop-filter: blur(8px);
  z-index: 9999;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.b2b-modal-backdrop.open {
  display: flex;
}
.b2b-modal {
  background: var(--c-surface);
  border: 1.5px solid var(--c-border);
  border-radius: var(--r-lg);
  width: 100%;
  max-width: 780px;
  max-height: 92vh;
  overflow-y: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
  position: relative;
  padding: 48px;
  animation: modalIn 0.3s ease;
}
.b2b-modal::-webkit-scrollbar {
  display: none;
}
@keyframes modalIn {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
.b2b-modal-close {
  position: absolute;
  top: 16px;
  right: 20px;
  background: none;
  border: none;
  font-size: 18px;
  color: var(--c-muted);
  cursor: pointer;
  padding: 4px 8px;
  border-radius: 6px;
  transition: all 0.2s;
}
.b2b-modal-close:hover {
  background: var(--c-bg);
  color: var(--c-text);
}
.b2b-modal-header {
  margin-bottom: 32px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--c-border);
}
.b2b-modal-title-row {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 12px;
}
.b2b-modal-icon {
  font-size: 40px;
  animation: iconBounce 2s ease-in-out infinite;
  flex-shrink: 0;
}
@keyframes iconBounce {
  0%, 100% { transform: rotate(-5deg) scale(1); }
  50%       { transform: rotate(5deg) scale(1.15); }
}
.b2b-modal-header h2 {
  font-family: var(--font-h);
  font-weight: 900;
  font-size: 24px;
  color: var(--c-text);
  margin: 0;
}
.b2b-modal-header h2 {
  font-family: var(--font-h);
  font-weight: 900;
  font-size: 22px;
  color: var(--c-text);
  margin-bottom: 8px;
}
.b2b-modal-header p {
  font-size: 13px;
  color: var(--c-muted);
  line-height: 1.6;
}
.b2b-modal-body {
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin-bottom: 32px;
}
.b2b-modal-cat-title {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}
.b2b-modal-cat-num {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--c-accent);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.b2b-modal-cat h3 {
  font-family: var(--font-h);
  font-weight: 800;
  font-size: 15px;
  color: var(--c-text);
}
.b2b-modal-cat ul {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-left: 40px;
}
.b2b-modal-cat ul li {
  font-size: 13px;
  color: var(--c-muted);
  line-height: 1.5;
  padding-left: 16px;
  position: relative;
}
.b2b-modal-cat ul li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--c-accent);
  font-weight: 700;
}
.b2b-modal-footer {
  padding-top: 24px;
  border-top: 1px solid var(--c-border);
}
.b2b-modal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 20px;
}
.b2b-modal-links a {
  font-size: 12px;
  color: var(--c-accent);
  text-decoration: none;
  transition: opacity 0.2s;
}
.b2b-modal-links a:hover { opacity: 0.7; }
.b2b-modal-cta {
  width: 100%;
  padding: 14px;
  background: var(--c-accent);
  color: #fff;
  border: none;
  border-radius: var(--radius);
  font-size: 15px;
  font-weight: 700;
  font-family: var(--font-h);
  cursor: pointer;
  transition: all 0.2s ease;
}
.b2b-modal-cta:hover { opacity: 0.88; transform: translateY(-1px); }

/* Apply section metinleri */
.b2b-apply-p1 {
  font-size: 15px;
  color: var(--c-text);
  line-height: 1.7;
  margin-bottom: 14px;
}
.b2b-apply-p2 {
  font-size: 14px;
  color: var(--c-muted);
  line-height: 1.7;
  margin-bottom: 20px;
}
.b2b-criteria-link {
  background: none;
  border: 1.5px solid var(--c-accent);
  color: var(--c-accent);
  font-size: 13px;
  font-weight: 700;
  padding: 8px 16px;
  border-radius: 20px;
  cursor: pointer;
  transition: all 0.2s;
  margin-bottom: 20px;
  display: inline-block;
}
.b2b-criteria-link:hover {
  background: var(--c-accent);
  color: #fff;
}

/* Mobile modal */
@media (max-width: 600px) {
  .b2b-modal-backdrop {
    align-items: flex-end;
    padding: 0;
  }
  .b2b-modal {
    max-height: 92vh;
    border-radius: var(--r-lg) var(--r-lg) 0 0;
    animation: modalUp 0.3s ease;
  }
  @keyframes modalUp {
    from { transform: translateY(100%); }
    to   { transform: translateY(0); }
  }
}
