/* =========================================================
   PARTNERSTVÍ — stránka specifické styly
   ========================================================= */

/* ── Hero ── */
.p-hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--navy);
  position: relative;
  overflow: hidden;
}

.p-hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 70% at 70% 30%, rgba(26,95,212,.3) 0%, transparent 60%),
    radial-gradient(ellipse 50% 50% at 10% 80%, rgba(0,200,255,.12) 0%, transparent 55%),
    radial-gradient(ellipse 40% 40% at 90% 90%, rgba(26,95,212,.15) 0%, transparent 50%);
  pointer-events: none;
}

.p-hero-content {
  position: relative;
  z-index: 1;
  width: min(860px, 100% - 48px);
  margin-inline: auto;
  padding-block: calc(var(--nav-h) + 80px) 100px;
  text-align: center;
}

.p-hero-label {
  display: inline-block;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 28px;
}

.p-hero h1 {
  font-size: clamp(2.2rem, 5.5vw, 3.8rem);
  font-weight: 800;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 36px;
}

.p-hero h1 span {
  color: var(--cyan);
}

.p-hero p {
  font-size: clamp(1rem, 1.8vw, 1.15rem);
  color: rgba(255,255,255,.7);
  line-height: 1.8;
  margin-bottom: 20px;
}

.p-hero-highlight {
  color: rgba(255,255,255,.85) !important;
}

.p-hero-cta {
  margin-top: 44px;
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* ── Co vám partnerství přinese ── */
.p-benefits {}

.p-benefits-intro {
  text-align: center;
  font-size: 1.1rem;
  color: var(--text);
  max-width: 680px;
  margin: 0 auto 56px;
  line-height: 1.7;
}

.p-benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.p-benefit-card {
  background: #f4f6fb;
  border-radius: var(--radius);
  padding: 40px 32px;
  text-align: center;
  transition: transform var(--transition), box-shadow var(--transition);
}

.p-benefit-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(11,20,38,.1);
}

.p-benefit-icon {
  width: 72px;
  height: 72px;
  background: var(--navy);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 28px;
  color: var(--cyan);
}

.p-benefit-card h3 {
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--navy);
  margin-bottom: 16px;
}

.p-benefit-card p {
  font-size: .95rem;
  color: var(--text);
  line-height: 1.75;
}

@media (max-width: 860px) {
  .p-benefits-grid { grid-template-columns: 1fr; max-width: 480px; margin-inline: auto; }
}

/* ── Split sekce (text + obrázek) ── */
.p-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.p-split-reverse {
  direction: rtl;
}
.p-split-reverse > * {
  direction: ltr;
}

.p-split-title {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  line-height: 1.2;
  color: var(--navy);
  margin-bottom: 24px;
  margin-top: 10px;
}

.p-split-text p {
  font-size: 1rem;
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 16px;
}

.p-split-text p strong {
  color: var(--navy);
}

.p-img-placeholder {
  width: 100%;
  aspect-ratio: 4/3;
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(26,95,212,.15) 0%, rgba(0,200,255,.1) 100%);
  border: 2px dashed rgba(26,95,212,.2);
}

.p-split-image img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

@media (max-width: 860px) {
  .p-split { grid-template-columns: 1fr; gap: 32px; }
  .p-split-reverse { direction: ltr; }
}

/* ── Kvalita obsahu ── */
.p-quality-title {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  line-height: 1.2;
  color: var(--white);
  margin-bottom: 28px;
  margin-top: 10px;
}

.p-quality p {
  font-size: 1.05rem;
  color: rgba(255,255,255,.75);
  line-height: 1.8;
  margin-bottom: 20px;
}

.p-quality p strong {
  color: var(--white);
}

.p-quality-list {
  list-style: none;
  margin: 0 0 24px 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.p-quality-list li {
  padding-left: 28px;
  position: relative;
  font-size: 1.05rem;
  color: rgba(255,255,255,.75);
  line-height: 1.7;
}

.p-quality-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--cyan);
}

/* ── Jak začít / CTA ── */
.p-contact-intro {
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 700px;
  line-height: 1.8;
  margin-bottom: 48px;
}

.p-steps {
  display: flex;
  flex-direction: column;
  gap: 24px;
  max-width: 700px;
  margin-bottom: 56px;
}

.p-step {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 24px;
  align-items: start;
}

.p-step-num {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--white);
  font-size: 1.2rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.p-step-body p {
  font-size: 1rem;
  color: var(--muted);
  line-height: 1.75;
  padding-top: 12px;
}

.p-step-body p strong {
  color: var(--navy);
}

.p-step-body a {
  color: var(--blue);
  text-decoration: underline;
}

.p-contact-cta {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
}

.p-contact-question {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--navy);
}

@media (max-width: 640px) {
  .p-step { grid-template-columns: 40px 1fr; gap: 16px; }
  .p-step-num { width: 40px; height: 40px; font-size: 1rem; }
}
