/* ═══════════════════════════════════════════════════════════════
   VividWalls — Partner page styles
   ═══════════════════════════════════════════════════════════════ */


/* ── Hero ── */

.partner-hero {
  padding-top: 100px;
  padding-bottom: 40px;
}

.partner-hero-inner {
  max-width: 740px;
  margin: 0 auto;
  text-align: center;
}

.partner-hero-inner h1 {
  font-size: clamp(2.2rem, 4.8vw, 3.6rem);
  line-height: 1.1;
  margin: 16px 0 24px;
}

.partner-hero-sub {
  font-size: 1.08rem;
  color: var(--color-muted);
  line-height: 1.7;
  max-width: 600px;
  margin: 0 auto 32px;
}


/* ── Catalog banner ── */

.partner-hero-catalog {
  display: grid;
  grid-template-columns: minmax(260px, 40%) 1fr;
  align-items: stretch;
  gap: 32px;
  width: 80%;
  max-width: 1100px;
  margin: 8px auto 32px;
  padding: 32px 36px;
  border-radius: 22px;
  text-align: left;
  border: 1px solid rgba(200, 137, 42, 0.22);
  background: linear-gradient(135deg,
    rgba(255, 237, 213, 0.72) 0%,
    rgba(253, 224, 230, 0.68) 55%,
    rgba(233, 213, 255, 0.70) 100%);
  backdrop-filter: blur(12px) saturate(1.25);
  -webkit-backdrop-filter: blur(12px) saturate(1.25);
  box-shadow: 0 24px 60px rgba(200, 137, 42, 0.14);
}

/* Catalog preview carousel */
.partner-hero-catalog-image {
  position: relative;
  min-height: 220px;
  border-radius: 16px;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(255,255,255,0.4), rgba(255,255,255,0.08));
}

.partner-hero-catalog-body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
}

.partner-hero-catalog strong {
  display: block;
  font-size: clamp(1.6rem, 2.6vw, 2.25rem);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -0.025em;
  margin-bottom: 4px;
  background: linear-gradient(110deg, #c8892a 0%, #f43f5e 35%, #7c3aed 70%, #2563eb 100%);
  background-size: 220% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: partnerCatalogShimmer 6s ease-in-out infinite;
}

.partner-hero-catalog span {
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--color-dark);
  opacity: 0.82;
  line-height: 1.6;
}

@keyframes partnerCatalogShimmer {
  0%, 100% { background-position: 0% 50%; }
  50%      { background-position: 100% 50%; }
}

.partner-hero-cta {
  text-align: center;
  margin-top: 8px;
}
.partner-hero-cta .btn {
  padding: 26px 52px;
  font-size: 1.25rem;
  border-radius: 20px;
  gap: 14px;
}
.partner-hero-cta .btn::after { border-radius: 18px; }
@media (max-width: 760px) {
  .partner-hero-cta .btn {
    padding: 22px 32px;
    font-size: 1.1rem;
  }
}

@media (max-width: 760px) {
  .partner-hero-catalog {
    grid-template-columns: 1fr;
    width: 100%;
    padding: 24px;
    gap: 20px;
  }
  .partner-hero-catalog-image {
    min-height: 160px;
  }
  .partner-hero-catalog-image svg { width: 56px; height: 56px; }
  .partner-hero-catalog strong { font-size: 1.5rem; }
  .partner-hero-catalog span { font-size: 0.98rem; }
}


/* ── Why grid ── */

.partner-why {
  padding-bottom: 40px;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.why-card {
  padding: 32px 28px;
  border-radius: 20px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.why-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 48px rgba(15,23,42,0.1);
}

.why-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient-main);
  margin: 0 auto 20px;
}

.why-icon svg {
  width: 26px;
  height: 26px;
  stroke: #fff;
}

.why-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--color-dark);
}

.why-card p {
  font-size: 0.88rem;
  color: var(--color-muted);
  line-height: 1.6;
}


/* ── Partner form layout ── */

.partner-form-layout {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 56px;
  align-items: start;
}

.partner-form-side h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  line-height: 1.2;
  margin: 8px 0 16px;
}

.partner-form-side > p {
  font-size: 0.95rem;
  color: var(--color-muted);
  line-height: 1.7;
  margin-bottom: 32px;
}


/* ── Perks list ── */

.partner-perks {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.partner-perk {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--color-dark);
}

.perk-check {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(34,197,94,0.12), rgba(16,185,129,0.12));
  flex-shrink: 0;
}

.perk-check svg {
  width: 15px;
  height: 15px;
  stroke: #16a34a;
}


/* ── Form sections ── */

.form-section-title {
  font-family: 'Geologica', sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-muted);
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(15,23,42,0.08);
  margin-top: 8px;
}

.partner-form .form-section-title:first-child {
  margin-top: 0;
}


/* ── Success message ── */

.partner-success {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 28px 32px;
  border-radius: 20px;
  border: 1px solid rgba(34, 197, 94, 0.25);
  background: rgba(34, 197, 94, 0.06);
}

.partner-success svg {
  flex-shrink: 0;
  stroke: #16a34a;
  margin-top: 2px;
}

.partner-success strong {
  display: block;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--color-dark);
  margin-bottom: 6px;
}

.partner-success span {
  font-size: 0.9rem;
  color: var(--color-muted);
  line-height: 1.6;
}


/* ── Responsive ── */

@media (max-width: 1000px) {
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .partner-form-layout { grid-template-columns: 1fr; gap: 40px; }
}

@media (max-width: 600px) {
  .why-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .why-card { padding: 16px 12px; border-radius: 14px; }
  .why-icon { width: 38px; height: 38px; border-radius: 10px; margin-bottom: 12px; }
  .why-icon svg { width: 18px; height: 18px; }
  .why-card h3 { font-size: 0.82rem; margin-bottom: 6px; }
  .why-card p { font-size: 0.75rem; line-height: 1.45; }
  .form-row { grid-template-columns: 1fr; }
}
