/* Partner page styles */

/* Active nav link */
.nav__link--active { color: var(--blue-500); font-weight: 600; }
.nav--scrolled .nav__link--active { color: var(--blue-400); }
.nav__mobile-link--active { color: var(--blue-600); font-weight: 600; }

/* Partner Hero */
.phero {
  position: relative;
  padding: 140px 0 96px;
  overflow: hidden;
  background: linear-gradient(180deg, #0A1730 0%, #0F1F3D 65%, #122549 100%);
  color: #fff;
}
.phero__bg { position: absolute; inset: 0; }
.phero__photo {
  position: absolute; inset: 0;
  background: url('https://images.unsplash.com/photo-1571902943202-507ec2618e8f?auto=format&fit=crop&w=1800&q=80') center/cover no-repeat;
  filter: saturate(0.85) contrast(1.05);
}
.phero__photo-veil {
  position: absolute; inset: 0;
  background:
    linear-gradient(90deg, rgba(10,23,48,0.92) 0%, rgba(10,23,48,0.7) 50%, rgba(10,23,48,0.5) 100%),
    linear-gradient(180deg, rgba(10,23,48,0.55) 0%, rgba(10,23,48,0.2) 40%, rgba(10,23,48,0.7) 100%);
}
.phero__grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 80% 60% at 60% 30%, #000 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse 80% 60% at 60% 30%, #000 30%, transparent 75%);
}
.phero__glow {
  position: absolute; top: -200px; right: -200px; width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(96,165,250,0.18) 0%, transparent 70%);
  filter: blur(20px);
}
.phero__inner {
  position: relative;
  z-index: 1;
  max-width: 820px;
}
.phero__copy { display: flex; flex-direction: column; gap: 28px; }
.phero .hero__h1 { color: #fff; }
.phero .hero__h1-accent {
  background: linear-gradient(135deg, #60A5FA 0%, #93C5FD 60%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.phero .hero__sub { color: rgba(255,255,255,0.78); font-size: 19px; line-height: 1.55; max-width: 620px; }
.phero .phero__opener {
  font-size: clamp(15px, 1.6vw, 17px);
  font-weight: 600;
  color: #BFD3FF;
  letter-spacing: 0.01em;
  margin-top: 18px;
  margin-bottom: -4px;
}
.phero a.hero__pill { text-decoration: none; transition: background .15s ease, border-color .15s ease; }
.phero a.hero__pill:hover { background: rgba(96,165,250,0.18); }
.phero .hero__pill {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 12px; border-radius: 999px;
  background: rgba(96,165,250,0.12);
  border: 1px solid rgba(96,165,250,0.32);
  color: rgba(255,255,255,0.92);
  font-size: 13px; font-weight: 500; align-self: flex-start;
}
.phero .hero__pill-dot { width: 6px; height: 6px; border-radius: 50%; background: #60A5FA; box-shadow: 0 0 12px #60A5FA; }
.phero .hero__ctas { display: flex; gap: 12px; flex-wrap: wrap; }
.phero .hero__meta {
  display: flex; gap: 22px; flex-wrap: wrap;
  color: rgba(255,255,255,0.72); font-size: 14px;
  padding-top: 8px;
}
.phero .hero__meta-item { display: inline-flex; align-items: center; gap: 8px; color: rgba(255,255,255,0.78); }
.phero .hero__meta-item svg { color: #60A5FA; }

/* Benefits */
.pbenefits { background: var(--bg); padding: 96px 0; }
.pbenefits__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.pbenefits__grid--four { grid-template-columns: repeat(4, 1fr); }
.pbenefits__grid--five { grid-template-columns: repeat(5, 1fr); gap: 20px; }
.pbenefits__grid--five .pbenefit { padding: 26px 22px; }
.pbenefits__grid--five .pbenefit__icon { width: 48px; height: 48px; border-radius: 12px; }
.pbenefit {
  padding: 32px 28px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  display: flex; flex-direction: column; gap: 14px;
  transition: border-color .2s ease, transform .2s ease, box-shadow .2s ease;
}
.pbenefit:hover {
  border-color: var(--blue-400);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}
.pbenefit__icon {
  width: 56px; height: 56px;
  border-radius: 14px;
  background: var(--blue-50);
  color: var(--blue-600);
  display: flex; align-items: center; justify-content: center;
}
.pbenefit__title { font-size: 20px; font-weight: 700; color: var(--ink-900); letter-spacing: -0.015em; }
.pbenefit__text { color: var(--ink-700); line-height: 1.6; }

/* Steps */
.psteps { background: var(--bg-soft); padding: 96px 0; }
.psteps__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  position: relative;
  margin-top: 48px;
}
.psteps__grid--five { grid-template-columns: repeat(5, 1fr); gap: 16px; }
.pstep {
  padding: 32px 28px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  display: flex; flex-direction: column; gap: 12px;
}
.pstep__num {
  font-size: 14px; font-weight: 600;
  color: var(--blue-600);
  letter-spacing: 0.05em;
}
.pstep__title { font-size: 22px; font-weight: 700; color: var(--ink-900); letter-spacing: -0.018em; }
.pstep__text { color: var(--ink-700); line-height: 1.6; }

/* Form */
.pform {
  padding: 96px 0;
  background: var(--bg);
}
.pform__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 80px;
  align-items: start;
}
.pform__intro h2 { color: var(--ink-900); }
.pform__form {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 36px;
  display: flex; flex-direction: column; gap: 16px;
  box-shadow: var(--shadow);
}
.pform__field { display: flex; flex-direction: column; gap: 6px; }
.pform__label { font-size: 13px; font-weight: 600; color: var(--ink-700); letter-spacing: -0.005em; }
.pform__hint { font-weight: 400; color: var(--ink-400); }
.pform__form input,
.pform__form textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-family: inherit;
  font-size: 15px;
  color: var(--ink-900);
  background: #fff;
  transition: border-color .15s ease, box-shadow .15s ease;
}
.pform__form input:focus,
.pform__form textarea:focus {
  outline: none;
  border-color: var(--blue-500);
  box-shadow: 0 0 0 3px rgba(59,130,246,0.15);
}
.pform__check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--ink-700);
  line-height: 1.5;
  cursor: pointer;
  margin-top: 4px;
}
.pform__check input[type="checkbox"] {
  width: 18px; height: 18px;
  margin-top: 1px;
  accent-color: var(--blue-600);
  flex-shrink: 0;
  cursor: pointer;
}
.pform__check a { color: var(--blue-600); text-decoration: underline; }
.pform__submit { margin-top: 8px; align-self: flex-start; }
.pform__note { font-size: 13px; color: var(--ink-400); margin-top: 4px; }
.pform__sent { padding: 24px; text-align: center; }
.pform__sent-icon {
  width: 56px; height: 56px; margin: 0 auto 16px;
  background: var(--blue-50); color: var(--blue-600);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
}
.pform__sent-title { font-size: 20px; font-weight: 700; color: var(--ink-900); margin-bottom: 8px; }
.pform__sent-sub { font-size: 15px; color: var(--ink-700); }
.pform__form select {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-family: inherit;
  font-size: 15px;
  color: var(--ink-900);
  background: #fff;
  transition: border-color .15s ease, box-shadow .15s ease;
  appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none'><path d='M1 1.5L6 6.5L11 1.5' stroke='%237B8AA8' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/></svg>");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
}
.pform__form select:focus {
  outline: none;
  border-color: var(--blue-500);
  box-shadow: 0 0 0 3px rgba(59,130,246,0.15);
}
.pform__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.pform__bullets {
  list-style: none; padding: 0; margin: 24px 0 0; display: flex; flex-direction: column; gap: 10px;
}
.pform__bullets li {
  display: flex; align-items: center; gap: 10px;
  color: var(--ink-700); font-size: 15px;
}
.pform__bullets li svg { color: var(--blue-600); flex-shrink: 0; }

/* Wide form layout */
.pform__form--wide {
  max-width: 880px;
  margin: 48px auto 0;
  padding: 40px;
}
.pform__block + .pform__block { margin-top: 32px; padding-top: 32px; border-top: 1px solid var(--line); }
.pform__block-head { margin-bottom: 20px; }
.pform__block-title { font-size: 20px; font-weight: 700; color: var(--ink-900); letter-spacing: -0.01em; margin: 0 0 6px; }
.pform__block-sub { font-size: 14px; color: var(--ink-600); margin: 0; line-height: 1.5; }
.pform__block--final { display: flex; flex-direction: column; gap: 16px; align-items: flex-start; }
.pform__error { color: #c0292c; font-size: 14px; margin-top: 12px; font-weight: 500; }

/* Variant pick cards */
.vcard-pick__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}
.vcard-pick {
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 16px 18px;
  background: #fff;
  transition: border-color .15s, background .15s, box-shadow .15s;
}
.vcard-pick--active {
  border-color: var(--blue-500);
  box-shadow: 0 0 0 3px rgba(41,99,233,0.1);
  background: #fafcff;
}
.vcard-pick__head {
  display: flex; align-items: center; gap: 10px;
  font-weight: 600; color: var(--ink-900); font-size: 15px;
  cursor: pointer; user-select: none;
}
.vcard-pick__head input { width: 18px; height: 18px; accent-color: var(--blue-600); }
.vcard-pick__title { letter-spacing: -0.005em; }
.vcard-pick__services {
  margin-top: 12px; padding-top: 12px; border-top: 1px dashed var(--line);
  display: flex; flex-wrap: wrap; gap: 10px 16px;
  transition: opacity .15s;
}
.vcard-pick__services--disabled { opacity: 0.4; pointer-events: none; }
.vcard-pick__svc {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 13px; color: var(--ink-700); cursor: pointer;
}
.vcard-pick__svc input[type="checkbox"] { width: 15px; height: 15px; accent-color: var(--blue-600); }
.vcard-pick__svc--sonst { flex: 1 1 100%; }
.vcard-pick__sonst-input {
  flex: 1;
  font-size: 13px;
  padding: 6px 10px !important;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fff;
  min-width: 120px;
}
@media (max-width: 720px) {
  .vcard-pick__grid { grid-template-columns: 1fr; }
  .pform__form--wide { padding: 24px; }
}

/* Section header utility */
.section-header {
  text-align: center;
  margin-bottom: 56px;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}
.section-header h2 { letter-spacing: -0.025em; }

/* Payout model */
.ppayout { background: var(--bg); padding: 96px 0; }

/* Teil A — Vergütung prominent */
.ppayout__hero {
  margin: 48px 0 64px;
  padding: 48px;
  background: linear-gradient(180deg, #fff 0%, #F8FAFF 100%);
  border: 1px solid var(--line, #E5E7EB);
  border-radius: 24px;
  box-shadow: 0 1px 0 rgba(15,23,42,0.04), 0 24px 48px -24px rgba(15,23,42,0.08);
}
.ppayout__hero-eyebrow {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue-600, #2563EB);
  text-align: center;
  margin-bottom: 16px;
}
.ppayout__hero-headline {
  font-size: clamp(24px, 3vw, 34px);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--ink-900, #0F172A);
  text-align: center;
  margin: 0 0 36px;
  line-height: 1.2;
}
.ppayout__staffel-vals {
  font-weight: 500;
  color: var(--ink-700, #475569);
  font-size: 13px;
  margin-left: 4px;
}
.ppayout__hero-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 32px;
  align-items: center;
}
.ppayout__hero-item { text-align: center; }
.ppayout__hero-num {
  font-size: clamp(56px, 7vw, 88px);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1;
  color: var(--ink-900, #0F172A);
  background: linear-gradient(135deg, #1E40AF 0%, #3B82F6 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 16px;
}
.ppayout__hero-label {
  font-size: 16px;
  font-weight: 600;
  color: var(--ink-900, #0F172A);
  margin-bottom: 8px;
  line-height: 1.4;
}
.ppayout__hero-sub {
  font-size: 13px;
  color: var(--ink-700, #475569);
  line-height: 1.5;
}
.ppayout__hero-foot {
  font-size: 12px;
  font-weight: 400;
  color: var(--ink-500, #64748B);
  margin-top: 6px;
  font-style: italic;
  line-height: 1.4;
}
.ppayout__staffel-foot {
  font-size: 11px;
  font-weight: 400;
  color: var(--ink-500, #64748B);
  margin-top: 4px;
  font-style: italic;
  line-height: 1.4;
}
.ppayout__hero-divider {
  width: 1px;
  height: 100px;
  background: var(--line, #E5E7EB);
}
.ppayout__info {
  margin-top: 36px;
  padding: 20px 24px;
  background: rgba(59,130,246,0.08);
  border: 1px solid rgba(59,130,246,0.2);
  border-radius: 12px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.ppayout__info-icon {
  flex: 0 0 auto;
  color: var(--blue-600, #2563EB);
  margin-top: 1px;
}
.ppayout__info-text {
  font-size: 14.5px;
  color: var(--ink-900, #0F172A);
  line-height: 1.55;
}

/* Teil B — Staffelvergütung */
.ppayout__staffel {
  margin-bottom: 64px;
}
.ppayout__staffel-head { text-align: center; margin-bottom: 32px; }
.ppayout__staffel-eyebrow {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue-600, #2563EB);
  margin-bottom: 12px;
}
.ppayout__staffel-title {
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 700;
  color: var(--ink-900, #0F172A);
  letter-spacing: -0.02em;
  margin: 0;
}
.ppayout__staffel-table {
  max-width: 720px;
  margin: 0 auto;
  background: #fff;
  border: 1px solid var(--line, #E5E7EB);
  border-radius: 16px;
  overflow: hidden;
}
.ppayout__staffel-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding: 18px 24px;
  border-bottom: 1px solid var(--line, #E5E7EB);
  align-items: center;
  font-size: 15px;
  color: var(--ink-900, #0F172A);
}
.ppayout__staffel-row:last-child { border-bottom: none; }
.ppayout__staffel-row--head {
  background: #F8FAFC;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-700, #475569);
}
.ppayout__staffel-val { font-weight: 600; }
.ppayout__staffel-val--mid { color: var(--blue-600, #2563EB); }
.ppayout__staffel-val--top {
  color: var(--ink-900, #0F172A);
  font-weight: 700;
}
.ppayout__staffel-note {
  text-align: center;
  margin-top: 20px;
  font-size: 13px;
  color: var(--ink-700, #475569);
}

/* Teil C — Kacheln */
.ppayout__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

@media (max-width: 720px) {
  .ppayout__hero { padding: 28px 20px; margin: 36px 0 48px; }
  .ppayout__hero-grid { grid-template-columns: 1fr; gap: 32px; }
  .ppayout__hero-divider { width: 80px; height: 1px; margin: 0 auto; }
  .ppayout__staffel-row { grid-template-columns: 1fr; gap: 4px; padding: 16px 18px; }
  .ppayout__staffel-row--head { display: none; }
}
.ppayout-item {
  padding: 28px 24px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  display: flex; flex-direction: column; gap: 12px;
  text-align: left;
}
.ppayout-item__icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: var(--blue-50);
  color: var(--blue-600);
  display: flex; align-items: center; justify-content: center;
}
.ppayout-item__title { font-size: 17px; font-weight: 700; color: var(--ink-900); letter-spacing: -0.012em; }
.ppayout-item__text { font-size: 14px; color: var(--ink-700); line-height: 1.55; }
.ppayout__note {
  margin-top: 32px;
  text-align: center;
  font-size: 14px;
  color: var(--ink-400);
  font-style: italic;
}

/* B2B section — 3-step flow */
.pb2b {
  background: var(--bg-soft);
  padding: 96px 0;
}
.pflow {
  margin-top: 48px;
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 16px;
  flex-wrap: nowrap;
}
.pflow__step {
  flex: 1 1 0;
  min-width: 0;
  background: #fff;
  border: 1px solid var(--line, #E5E7EB);
  border-radius: 16px;
  padding: 32px 24px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  box-shadow: 0 1px 0 rgba(15,23,42,0.04), 0 16px 32px -20px rgba(15,23,42,0.08);
  transition: transform .2s ease, box-shadow .2s ease;
}
.pflow__step:hover {
  transform: translateY(-2px);
  box-shadow: 0 1px 0 rgba(15,23,42,0.06), 0 24px 48px -20px rgba(15,23,42,0.12);
}
.pflow__num {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--blue-600, #2563EB);
}
.pflow__icon {
  width: 64px; height: 64px;
  border-radius: 16px;
  background: linear-gradient(135deg, #EBF2FF 0%, #DBEAFE 100%);
  color: var(--blue-600, #2563EB);
  display: grid; place-items: center;
  margin-top: 4px;
}
.pflow__title {
  font-size: 19px;
  font-weight: 700;
  color: var(--ink-900, #0F172A);
  letter-spacing: -0.012em;
  margin-top: 4px;
}
.pflow__text {
  font-size: 14.5px;
  color: var(--ink-700, #475569);
  line-height: 1.55;
  max-width: 240px;
}
.pflow__arrow {
  flex: 0 0 auto;
  align-self: center;
  color: var(--blue-500, #3B82F6);
  display: grid; place-items: center;
}
@media (max-width: 720px) {
  .pflow { flex-direction: column; align-items: stretch; gap: 12px; }
  .pflow__arrow { transform: rotate(90deg); padding: 4px 0; }
  .pflow__text { max-width: none; }
}

/* Existing members card */
.pexisting { background: var(--bg); padding: 56px 0 96px; }
.pexisting__card {
  background: linear-gradient(135deg, var(--blue-50) 0%, #fff 100%);
  border: 1px solid var(--blue-200, #BFDBFE);
  border-radius: var(--radius-lg);
  padding: 32px 36px;
  display: flex;
  align-items: flex-start;
  gap: 24px;
  max-width: 920px;
  margin: 0 auto;
}
.pexisting__icon {
  width: 48px; height: 48px;
  flex-shrink: 0;
  border-radius: 12px;
  background: #fff;
  border: 1px solid var(--blue-200, #BFDBFE);
  color: var(--blue-600);
  display: flex; align-items: center; justify-content: center;
}
.pexisting__title {
  font-size: 20px;
  font-weight: 700;
  color: var(--ink-900);
  margin: 0 0 8px;
  letter-spacing: -0.018em;
}
.pexisting__text {
  color: var(--ink-700);
  line-height: 1.6;
  margin: 0;
}

/* Mobile */
@media (max-width: 1100px) {
  .pbenefits__grid--four { grid-template-columns: repeat(2, 1fr); }
  .pbenefits__grid--five { grid-template-columns: repeat(3, 1fr); }
  .pmaterials__grid { grid-template-columns: repeat(2, 1fr); }
  .psteps__grid--five { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .ppayout__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 920px) {
  .pbenefits__grid, .psteps__grid { grid-template-columns: 1fr; }
  .pform__inner { grid-template-columns: 1fr; gap: 40px; }
}
@media (max-width: 720px) {
  .phero { padding: 110px 0 64px; }
  .phero .hero__h1 { font-size: clamp(36px, 9vw, 48px); }
  .pbenefits, .psteps, .pform, .ppayout, .pb2b, .pexisting, .pmaterials { padding: 64px 0; }
  .pform__form { padding: 24px; }
  .pbenefits__grid--four, .psteps__grid--five, .ppayout__grid { grid-template-columns: 1fr; }
  .pbenefits__grid--five, .pmaterials__grid { grid-template-columns: 1fr; }
  .pform__row { grid-template-columns: 1fr; }
  .pbenefits__grid { grid-template-columns: 1fr; }
  .pbenefits__grid--four { grid-template-columns: 1fr; }
  .pbenefits__grid--five { grid-template-columns: 1fr; }
  .ppayout__grid { grid-template-columns: 1fr; }
  .psteps__grid { grid-template-columns: 1fr; }
  .psteps__grid--five { grid-template-columns: 1fr; }
  .pexisting__card { flex-direction: column; align-items: flex-start; gap: 16px; padding: 24px; }
}


/* Werbematerialien */
.pmaterials { background: var(--bg); padding: 96px 0; border-top: 1px solid var(--line); }
.pmaterials__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 48px;
}
.pmcard {
  padding: 28px 24px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  display: flex; flex-direction: column; gap: 14px;
  transition: border-color .2s ease, transform .2s ease, box-shadow .2s ease;
}
.pmcard:hover {
  border-color: var(--blue-400);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}
.pmcard.is-disabled {
  background: #fafbfc;
  opacity: 0.78;
}
.pmcard.is-disabled:hover {
  border-color: var(--line);
  transform: none;
  box-shadow: none;
}
.pmcard__icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: var(--blue-50);
  color: var(--blue-600);
  display: grid; place-items: center;
}
.pmcard.is-disabled .pmcard__icon {
  background: #eef1f5;
  color: #98a2b0;
}
.pmcard__title {
  font-size: 18px; font-weight: 700;
  color: var(--ink-900);
  letter-spacing: -0.01em;
  margin: 2px 0 0;
}
.pmcard__text {
  font-size: 14.5px; line-height: 1.55;
  color: var(--ink-600);
  margin: 0;
  flex: 1;
}
.pmcard__btn {
  margin-top: 6px;
  display: inline-flex; align-items: center; justify-content: center;
  gap: 8px;
  padding: 11px 16px;
  background: var(--blue-600);
  color: #fff;
  font-size: 14px; font-weight: 600;
  border: 0;
  border-radius: 10px;
  cursor: pointer;
  text-decoration: none;
  transition: background .15s ease;
}
.pmcard__btn:hover { background: var(--blue-700, #1d4ed8); }
.pmcard__btn[disabled],
.pmcard__btn[aria-disabled="true"] {
  background: #e7eaef;
  color: #98a2b0;
  cursor: not-allowed;
}
.pmcard__btn[disabled]:hover { background: #e7eaef; }
.pmaterials__note {
  margin: 32px auto 0;
  text-align: center;
  font-size: 14px;
  color: var(--ink-500, #6b7280);
  max-width: 640px;
}
@media (max-width: 1100px) {
  .pmaterials__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .pmaterials__grid { grid-template-columns: 1fr; }
}
