/**
 * Bultix partner landing — bayi / tedarikçi
 * Linked from partner.twig (document->addStyle Journal'da düşebiliyor).
 */

.bultix-partner-page {
  --bxp-ink: #1c2434;
  --bxp-muted: #5b6578;
  --bxp-line: rgba(28, 36, 52, 0.1);
  --bxp-orange: #e66e15;
  --bxp-orange-deep: #d45f0c;
  --bxp-navy: #152238;
  --bxp-sand: #f3efe8;
  --bxp-white: #ffffff;
  --bxp-font: "Nunito Sans", "Segoe UI", sans-serif;
  background:
    radial-gradient(1200px 480px at 10% -10%, rgba(230, 110, 21, 0.08), transparent 55%),
    linear-gradient(180deg, #f7f5f1 0%, #eef1f5 48%, #f7f5f1 100%);
  color: var(--bxp-ink);
  font-family: var(--bxp-font);
  overflow: hidden;
}

.bultix-partner-page a {
  text-decoration: none;
}

/* —— Hero —— */
.bultix-partner-page .bxp-hero {
  position: relative;
  isolation: isolate;
  padding: clamp(56px, 8vw, 96px) 0 clamp(48px, 6vw, 72px);
  color: #fff;
}

.bultix-partner-page .bxp-hero__bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(115deg, rgba(21, 34, 56, 0.92) 0%, rgba(28, 44, 72, 0.88) 42%, rgba(230, 110, 21, 0.55) 100%),
    url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E"),
    linear-gradient(160deg, #101828 0%, #1a2a44 55%, #2a1a12 100%);
  transform: scale(1.02);
  animation: bxpHeroDrift 14s ease-in-out infinite alternate;
}

@keyframes bxpHeroDrift {
  from { transform: scale(1.02) translate3d(0, 0, 0); }
  to { transform: scale(1.05) translate3d(-1.2%, 0.8%, 0); }
}

.bultix-partner-page .bxp-hero__inner {
  max-width: 760px;
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.bultix-partner-page.is-ready .bxp-hero__inner {
  opacity: 1;
  transform: none;
}

.bultix-partner-page .bxp-hero__brand {
  margin: 0 0 14px;
  font-size: clamp(1.65rem, 4vw, 2.35rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1;
  color: #fff;
}

.bultix-partner-page .bxp-hero__title {
  margin: 0 0 16px;
  font-size: clamp(1.45rem, 3.4vw, 2.1rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  max-width: 18ch;
}

.bultix-partner-page .bxp-hero__text {
  margin: 0 0 28px;
  font-size: clamp(1rem, 2vw, 1.12rem);
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.86);
  max-width: 42rem;
}

.bultix-partner-page .bxp-hero__actions,
.bultix-partner-page .bxp-path__actions,
.bultix-partner-page .bxp-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.bultix-partner-page .bxp-hero__note {
  margin: 18px 0 0;
  font-size: 13px;
  letter-spacing: 0.02em;
  color: rgba(255, 255, 255, 0.62);
}

/* —— Buttons —— */
.bultix-partner-page .bxp-btn {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px !important;
  border-radius: 10px !important;
  border: 1px solid transparent;
  font-family: var(--bxp-font);
  font-size: 14px !important;
  font-weight: 700 !important;
  line-height: 1.2;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.bultix-partner-page .bxp-btn--primary {
  background: linear-gradient(180deg, #f07a1a 0%, var(--bxp-orange) 100%) !important;
  color: #fff !important;
  box-shadow: 0 10px 28px rgba(230, 110, 21, 0.35);
}

.bultix-partner-page .bxp-btn--primary:hover,
.bultix-partner-page .bxp-btn--primary:focus {
  background: linear-gradient(180deg, var(--bxp-orange) 0%, var(--bxp-orange-deep) 100%) !important;
  color: #fff !important;
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(230, 110, 21, 0.42);
}

.bultix-partner-page .bxp-btn--secondary {
  background: rgba(255, 255, 255, 0.12) !important;
  border-color: rgba(255, 255, 255, 0.38) !important;
  color: #fff !important;
  backdrop-filter: blur(6px);
}

.bultix-partner-page .bxp-btn--secondary:hover,
.bultix-partner-page .bxp-btn--secondary:focus {
  background: rgba(255, 255, 255, 0.2) !important;
  color: #fff !important;
  transform: translateY(-2px);
}

.bultix-partner-page .bxp-btn--ghost {
  background: transparent !important;
  border-color: rgba(28, 36, 52, 0.22) !important;
  color: var(--bxp-ink) !important;
}

.bultix-partner-page .bxp-hero .bxp-btn--ghost,
.bultix-partner-page .bxp-cta .bxp-btn--ghost {
  border-color: rgba(255, 255, 255, 0.35) !important;
  color: #fff !important;
}

.bultix-partner-page .bxp-btn--ghost:hover,
.bultix-partner-page .bxp-btn--ghost:focus {
  background: rgba(28, 36, 52, 0.05) !important;
  transform: translateY(-1px);
}

.bultix-partner-page .bxp-hero .bxp-btn--ghost:hover,
.bultix-partner-page .bxp-cta .bxp-btn--ghost:hover {
  background: rgba(255, 255, 255, 0.1) !important;
}

.bultix-partner-page .bxp-btn--lg {
  min-height: 52px;
  padding: 0 26px !important;
  font-size: 15px !important;
}

/* —— Proof strip —— */
.bultix-partner-page .bxp-proof {
  margin-top: -28px;
  position: relative;
  z-index: 2;
  padding: 0 0 8px;
}

.bultix-partner-page .bxp-proof__row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--bxp-line);
  border: 1px solid var(--bxp-line);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(16, 24, 40, 0.1);
}

.bultix-partner-page .bxp-proof__item {
  background: var(--bxp-white);
  padding: 22px 18px;
  text-align: center;
}

.bultix-partner-page .bxp-proof__item strong {
  display: block;
  font-size: clamp(1.35rem, 3vw, 1.75rem);
  font-weight: 800;
  color: var(--bxp-navy);
  letter-spacing: -0.03em;
}

.bultix-partner-page .bxp-proof__item span {
  display: block;
  margin-top: 4px;
  font-size: 13px;
  color: var(--bxp-muted);
}

/* —— Sections —— */
.bultix-partner-page .bxp-section {
  padding: clamp(48px, 7vw, 80px) 0;
}

.bultix-partner-page .bxp-section__head {
  max-width: 620px;
  margin: 0 auto 36px;
  text-align: center;
}

.bultix-partner-page .bxp-section__head h2 {
  margin: 0 0 10px;
  font-size: clamp(1.45rem, 3vw, 1.9rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--bxp-navy);
}

.bultix-partner-page .bxp-section__head p {
  margin: 0;
  font-size: 15px;
  line-height: 1.6;
  color: var(--bxp-muted);
}

/* —— Paths (interactive) —— */
.bultix-partner-page .bxp-paths__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.bultix-partner-page .bxp-path {
  background: var(--bxp-white);
  border: 1px solid var(--bxp-line);
  border-radius: 18px;
  padding: clamp(24px, 3vw, 32px);
  box-shadow: 0 12px 32px rgba(16, 24, 40, 0.05);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.bultix-partner-page .bxp-path:hover,
.bultix-partner-page .bxp-path.is-active,
.bultix-partner-page .bxp-path.is-pulse {
  transform: translateY(-4px);
  border-color: rgba(230, 110, 21, 0.45);
  box-shadow: 0 20px 44px rgba(230, 110, 21, 0.14);
}

.bultix-partner-page .bxp-path__eyebrow {
  margin: 0 0 8px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--bxp-orange);
}

.bultix-partner-page .bxp-path__title {
  margin: 0 0 12px;
  font-size: clamp(1.25rem, 2.4vw, 1.55rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--bxp-navy);
}

.bultix-partner-page .bxp-path__lead {
  margin: 0 0 18px;
  font-size: 15px;
  line-height: 1.65;
  color: var(--bxp-muted);
}

.bultix-partner-page .bxp-path__list {
  margin: 0 0 24px;
  padding: 0;
  list-style: none;
}

.bultix-partner-page .bxp-path__list li {
  position: relative;
  padding: 8px 0 8px 28px;
  font-size: 14px;
  line-height: 1.5;
  color: var(--bxp-ink);
  border-top: 1px solid rgba(28, 36, 52, 0.06);
}

.bultix-partner-page .bxp-path__list li:last-child {
  border-bottom: 1px solid rgba(28, 36, 52, 0.06);
}

.bultix-partner-page .bxp-path__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 14px;
  width: 14px;
  height: 14px;
  border-radius: 4px;
  background: linear-gradient(135deg, #f07a1a, var(--bxp-orange-deep));
  box-shadow: inset 0 0 0 3px rgba(255, 255, 255, 0.35);
}

.bultix-partner-page.is-focus-dealer .bxp-path--supplier,
.bultix-partner-page.is-focus-supplier .bxp-path--dealer {
  opacity: 0.78;
}

.bultix-partner-page.is-focus-dealer .bxp-path--dealer,
.bultix-partner-page.is-focus-supplier .bxp-path--supplier {
  opacity: 1;
}

/* —— Steps —— */
.bultix-partner-page .bxp-steps__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  counter-reset: none;
}

.bultix-partner-page .bxp-step {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--bxp-line);
  border-radius: 16px;
  padding: 22px 18px;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.bultix-partner-page.is-ready .bxp-step {
  opacity: 1;
  transform: none;
}

.bultix-partner-page.is-ready .bxp-step:nth-child(2) { transition-delay: 0.08s; }
.bultix-partner-page.is-ready .bxp-step:nth-child(3) { transition-delay: 0.16s; }

.bultix-partner-page .bxp-step__num {
  flex: 0 0 auto;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.06em;
  color: var(--bxp-orange);
  padding-top: 2px;
}

.bultix-partner-page .bxp-step__body h3 {
  margin: 0 0 6px;
  font-size: 16px;
  font-weight: 800;
  color: var(--bxp-navy);
}

.bultix-partner-page .bxp-step__body p {
  margin: 0;
  font-size: 14px;
  line-height: 1.55;
  color: var(--bxp-muted);
}

/* —— Final CTA —— */
.bultix-partner-page .bxp-cta {
  position: relative;
  padding: clamp(52px, 7vw, 84px) 0;
  text-align: center;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(21, 34, 56, 0.96), rgba(230, 110, 21, 0.82)),
    var(--bxp-navy);
}

.bultix-partner-page .bxp-cta h2 {
  margin: 0 0 12px;
  font-size: clamp(1.45rem, 3.2vw, 2rem);
  font-weight: 800;
  letter-spacing: -0.02em;
}

.bultix-partner-page .bxp-cta > .container > p {
  margin: 0 auto 28px;
  max-width: 540px;
  font-size: 15px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.84);
}

.bultix-partner-page .bxp-cta__actions {
  justify-content: center;
  margin-bottom: 18px;
}

.bultix-partner-page .bxp-cta__note {
  margin: 0;
  font-size: 13px;
}

.bultix-partner-page .bxp-cta__note a {
  color: #ffe1c2;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.bultix-partner-page .bxp-cta .bxp-btn--secondary {
  background: rgba(255, 255, 255, 0.14) !important;
}

/* —— Responsive —— */
@media (max-width: 991px) {
  .bultix-partner-page .bxp-paths__grid,
  .bultix-partner-page .bxp-steps__list {
    grid-template-columns: 1fr;
  }

  .bultix-partner-page .bxp-hero__title {
    max-width: none;
  }
}

@media (max-width: 767px) {
  .bultix-partner-page .bxp-proof {
    margin-top: -20px;
  }

  .bultix-partner-page .bxp-proof__row {
    grid-template-columns: 1fr;
  }

  .bultix-partner-page .bxp-hero__actions,
  .bultix-partner-page .bxp-path__actions,
  .bultix-partner-page .bxp-cta__actions {
    flex-direction: column;
  }

  .bultix-partner-page .bxp-btn {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .bultix-partner-page .bxp-hero__bg,
  .bultix-partner-page .bxp-hero__inner,
  .bultix-partner-page .bxp-step,
  .bultix-partner-page .bxp-path {
    animation: none !important;
    transition: none !important;
  }

  .bultix-partner-page .bxp-hero__inner,
  .bultix-partner-page .bxp-step {
    opacity: 1;
    transform: none;
  }
}
