/* ===========================
   partner.css — Dark Theme (8px Grid)
   Brand: #6A0DAD → #FF7F00
   =========================== */

/* ---------- Hero ---------- */
.partner-hero {
  position: relative;
  min-height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  padding: 100px 20px 80px;
}
.partner-hero-bg {
  position: absolute;
  inset: 0;
  background-color: #121218;
  background: linear-gradient(135deg, rgba(106,13,173,0.12), rgba(255,127,0,0.08));
  z-index: 0;
}
.partner-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(106,13,173,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(106,13,173,0.04) 1px, transparent 1px);
  background-size: 24px 24px;
  z-index: 0;
}
.partner-hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
}
.partner-hero h1 {
  font-size: 38px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.5px;
  background: linear-gradient(135deg, #6A0DAD, #FF7F00);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin: 0 0 24px;
}
.partner-hero p {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: 0.3px;
  color: #CCCCCC;
  margin: 0 0 32px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}
.partner-hero-buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
}

/* ---------- Buttons ---------- */
.btn-partner {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  line-height: 1;
  letter-spacing: 0.2px;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
.btn-partner-primary {
  background: linear-gradient(135deg, #6A0DAD, #FF7F00);
  color: #ffffff;
  box-shadow: 0 4px 14px rgba(106,13,173,0.3);
}
.btn-partner-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(106,13,173,0.4);
}
.btn-partner-outline {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  color: #ffffff;
}
.btn-partner-outline:hover {
  background: rgba(255,255,255,0.1);
  transform: translateY(-2px);
}
.btn-partner-outline span {
  transition: transform 0.3s ease;
}
.btn-partner-outline:hover span {
  transform: translateX(4px);
}

/* ---------- Partner Tabs ---------- */
.partner-tabs {
  background: #121218;
  padding: 16px 0;
  position: relative;
  z-index: 90;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.partner-tabs-container {
  display: flex;
  justify-content: center;
  gap: 16px;
}
.partner-tab {
  padding: 8px 24px;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.2px;
  transition: all 0.25s ease;
  color: #CCCCCC;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
}
.partner-tab.active {
  color: #ffffff;
  background: linear-gradient(135deg, #6A0DAD, #FF7F00);
  border-color: transparent;
  box-shadow: 0 4px 12px rgba(106,13,173,0.3);
}
.partner-tab:hover:not(.active) {
  color: #ffffff;
  background: rgba(255,255,255,0.08);
}

/* ---------- Partner Nav (Sticky) ---------- */
.partner-nav {
  background: #121218;
  padding: 8px 0;
  position: sticky;
  top: 80px;
  z-index: 89;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: all 0.3s ease;
}
.partner-nav-container {
  display: none;
}
.partner-nav-container.active {
  display: flex;
  justify-content: center;
  gap: 8px;
  overflow-x: auto;
  padding: 4px 0;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.partner-nav-container::-webkit-scrollbar { display: none; }
.partner-nav-link {
  color: #CCCCCC;
  text-decoration: none;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.2px;
  padding: 6px 16px;
  border-radius: 6px;
  transition: all 0.25s ease;
  white-space: nowrap;
}
.partner-nav-link:hover {
  color: #ffffff;
  background: rgba(255,255,255,0.06);
}
.partner-nav-link.active {
  color: #ffffff;
  background: linear-gradient(135deg, #6A0DAD, #FF7F00);
  box-shadow: 0 4px 12px rgba(106,13,173,0.25);
}

/* ---------- Sections ---------- */
.partner-section {
  padding: 48px 0;
  position: relative;
}
.partner-section:nth-child(odd) {
  background: #121218;
}
.partner-section:nth-child(even) {
  background: #0F0F13;
}
.partner-section-header {
  text-align: center;
  margin-bottom: 32px;
}
.partner-section-title {
  font-size: 28px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.4px;
  background: linear-gradient(135deg, #6A0DAD, #FF7F00);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin: 0 0 16px;
}
.partner-section-description {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: 0.2px;
  color: #CCCCCC;
  max-width: 600px;
  margin: 0 auto;
}

/* ---------- Advantages Grid ---------- */
.advantages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 24px;
  margin-top: 8px;
}
.advantage-card {
  background: #1A1A22;
  border-radius: 8px;
  padding: 24px;
  border: 1px solid rgba(255,255,255,0.06);
  transition: all 0.35s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
}
.advantage-card:hover {
  transform: translateY(-4px);
  border-color: rgba(106,13,173,0.25);
  box-shadow: 0 12px 28px rgba(0,0,0,0.3);
}
.advantage-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(135deg, #6A0DAD, #FF7F00);
  opacity: 0.6;
}
.advantage-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  margin-bottom: 16px;
  color: #FF7F00;
}
.advantage-icon svg {
  width: 24px;
  height: 24px;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.advantage-title {
  font-size: 16px;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: 0.2px;
  color: #ffffff;
  margin: 0 0 12px;
}
.advantage-description {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.7;
  letter-spacing: 0.2px;
  color: #EEEEEE;
  margin: 0 0 12px;
}
.advantage-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.advantage-list li {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.7;
  letter-spacing: 0.2px;
  color: #EEEEEE;
  padding-left: 24px;
  position: relative;
  margin-bottom: 8px;
}
.advantage-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #FF7F00;
}

/* ---------- Tiers Table ---------- */
.tiers-table-container {
  overflow-x: auto;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.06);
}
.tiers-table {
  width: 100%;
  border-collapse: collapse;
  background: #1A1A22;
}
.tiers-table th {
  padding: 16px;
  text-align: center;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: 0.2px;
  color: #ffffff;
  background: linear-gradient(135deg, #6A0DAD, #FF7F00);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.tiers-table th:first-child {
  text-align: center;
}
.tiers-table td {
  padding: 16px;
  font-size: 13px;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0.2px;
  color: #EEEEEE;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  vertical-align: top;
}
.tiers-table tr:last-child td {
  border-bottom: none;
}
.tiers-table tr:hover td {
  background: rgba(106,13,173,0.04);
}
.tier-name {
  font-weight: 600;
  font-size: 14px;
  color: #ffffff !important;
  text-align: center;
  white-space: nowrap;
}
.tier-deposit {
  text-align: center;
  font-weight: 600;
  color: #FF7F00 !important;
  white-space: nowrap;
}
.tier-benefits ul,
.tier-perks ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.tier-benefits li,
.tier-perks li {
  position: relative;
  padding-left: 16px;
  margin-bottom: 6px;
  line-height: 1.6;
}
.tier-benefits li:last-child,
.tier-perks li:last-child {
  margin-bottom: 0;
}
.tier-benefits li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #6A0DAD;
  font-weight: 700;
}
.tier-perks li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #FF7F00;
  font-weight: 700;
}

/* ---------- Benefits Table ---------- */
.benefits-table-container {
  overflow-x: auto;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.06);
}
.benefits-table {
  width: 100%;
  border-collapse: collapse;
  background: #1A1A22;
}
.benefits-table th {
  padding: 16px;
  text-align: center;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: 0.2px;
  color: #ffffff;
  background: linear-gradient(135deg, #6A0DAD, #FF7F00);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.benefits-table th:first-child {
  text-align: left;
  background: rgba(255,255,255,0.04);
  color: #EEEEEE;
}
.benefits-table td {
  padding: 12px 16px;
  text-align: center;
  font-size: 13px;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0.2px;
  color: #EEEEEE;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.benefits-table td:first-child {
  text-align: left;
  font-weight: 500;
  color: #EEEEEE;
}
.benefits-table tr:hover td {
  background: rgba(106,13,173,0.04);
}
.benefits-table tr:last-child td {
  border-bottom: none;
}
.benefit-check {
  color: #FF7F00;
  font-weight: 700;
  font-size: 16px;
}
.benefit-none {
  color: rgba(255,255,255,0.15);
  font-size: 14px;
}
.benefit-section-header td {
  font-weight: 600 !important;
  color: #ffffff !important;
  background: rgba(255,255,255,0.03) !important;
  text-align: left !important;
  padding: 12px 16px !important;
}

/* ---------- Process Steps ---------- */
.process-steps {
  display: flex;
  justify-content: space-between;
  position: relative;
  flex-wrap: wrap;
  gap: 24px;
}
.process-steps::before {
  content: "";
  position: absolute;
  top: 40px;
  left: 40px;
  width: calc(100% - 80px);
  height: 2px;
  background: linear-gradient(135deg, #6A0DAD, #FF7F00);
  z-index: 1;
}
.process-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 2;
  flex: 1;
  min-width: 140px;
}
.process-step-number {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, #6A0DAD, #FF7F00);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 16px;
  box-shadow: 0 4px 14px rgba(106,13,173,0.3);
}
.process-step-title {
  font-size: 16px;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: 0.2px;
  color: #ffffff;
  margin: 0 0 8px;
  text-align: center;
}
.process-step-description {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: 0.2px;
  color: #CCCCCC;
  text-align: center;
  max-width: 200px;
  margin: 0;
}
.process-apply-btn {
  margin-top: 32px;
  text-align: center;
}

/* ---------- FAQ Accordion ---------- */
.faq-container {
  max-width: 720px;
  margin: 0 auto;
}
.faq-item {
  background: #1A1A22;
  border-radius: 8px;
  margin-bottom: 12px;
  border: 1px solid rgba(255,255,255,0.06);
  overflow: hidden;
  transition: border-color 0.3s ease;
}
.faq-item:hover {
  border-color: rgba(106,13,173,0.2);
}
.faq-question {
  padding: 16px 20px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: 0.2px;
  color: #ffffff;
  user-select: none;
}
.faq-question span {
  font-size: 20px;
  line-height: 1;
  transition: transform 0.3s ease;
  color: #FF7F00;
  flex-shrink: 0;
  margin-left: 12px;
}
.faq-answer {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, opacity 0.35s ease, padding 0.35s ease;
  padding: 0 20px;
}
.faq-answer-content {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.7;
  letter-spacing: 0.2px;
  color: #EEEEEE;
  padding-bottom: 20px;
}

/* ---------- Showcase Cards (合作权益) ---------- */
.showcase-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.showcase-card {
  background: #1A1A22;
  border-radius: 8px;
  padding: 32px 24px;
  border: 1px solid rgba(255,255,255,0.06);
  text-align: center;
  transition: all 0.35s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.showcase-card:hover {
  transform: translateY(-6px);
  border-color: rgba(106,13,173,0.25);
  box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}
.showcase-card-featured {
  border-color: rgba(106,13,173,0.2);
  box-shadow: 0 0 30px rgba(106,13,173,0.08);
}
.showcase-card-badge {
  position: absolute;
  top: 12px;
  right: -28px;
  background: linear-gradient(135deg, #6A0DAD, #FF7F00);
  color: #ffffff;
  font-size: 11px;
  font-weight: 600;
  padding: 4px 32px;
  transform: rotate(45deg);
  letter-spacing: 0.5px;
}
.showcase-card-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(106,13,173,0.12);
  margin-bottom: 16px;
}
.showcase-card-icon svg {
  width: 28px;
  height: 28px;
  stroke: #FF7F00;
  stroke-width: 2;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.showcase-card-title {
  font-size: 20px;
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: 0.3px;
  color: #ffffff;
  margin: 0 0 4px;
}
.showcase-card-deposit {
  font-size: 14px;
  font-weight: 600;
  color: #FF7F00;
  margin-bottom: 20px;
}
.showcase-card-divider {
  width: 40px;
  height: 2px;
  background: linear-gradient(135deg, #6A0DAD, #FF7F00);
  margin-bottom: 20px;
  border-radius: 1px;
}
.showcase-card-list {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  text-align: left;
  width: 100%;
}
.showcase-card-list li {
  font-size: 13px;
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: 0.2px;
  color: #EEEEEE;
  padding: 6px 0 6px 24px;
  position: relative;
}
.showcase-card-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #FF7F00;
  font-weight: 700;
}
.showcase-card-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 20px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.2px;
  color: #ffffff;
  background: linear-gradient(135deg, #6A0DAD, #FF7F00);
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 14px rgba(106,13,173,0.3);
}
.showcase-card-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(106,13,173,0.4);
}

/* ---------- News Grid ---------- */
.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.news-item {
  background: #1A1A22;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.06);
  transition: all 0.35s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.news-item:hover {
  transform: translateY(-4px);
  border-color: rgba(106,13,173,0.2);
  box-shadow: 0 12px 28px rgba(0,0,0,0.25);
}
.news-img {
  height: 160px;
  background: linear-gradient(135deg, rgba(106,13,173,0.15), rgba(255,127,0,0.1));
  position: relative;
  overflow: hidden;
}
.news-img::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(106,13,173,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(106,13,173,0.03) 1px, transparent 1px);
  background-size: 20px 20px;
}
.news-content {
  padding: 20px 24px 24px;
}
.news-date {
  font-size: 12px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.2px;
  color: #FF7F00;
  margin-bottom: 8px;
}
.news-heading {
  font-size: 16px;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: 0.2px;
  color: #ffffff;
  margin: 0 0 12px;
}
.news-text {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.7;
  letter-spacing: 0.2px;
  color: #EEEEEE;
  margin: 0 0 16px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.news-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #FF7F00;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.2px;
  transition: all 0.3s ease;
}
.news-link span {
  transition: transform 0.3s ease;
}
.news-link:hover span {
  transform: translateX(4px);
}
.news-link:hover {
  color: #ffa64d;
}

/* ---------- Contact Section ---------- */
.contact-section {
  position: relative;
  text-align: center;
  padding: 48px 40px;
  border-radius: 12px;
  overflow: hidden;
  background: #1A1A22;
  border: 1px solid rgba(255,255,255,0.06);
}
.contact-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 50% at 50% 50%, rgba(106,13,173,0.08), transparent 70%),
    radial-gradient(ellipse 50% 40% at 70% 30%, rgba(255,127,0,0.04), transparent 60%);
  z-index: 0;
}
.contact-content {
  position: relative;
  z-index: 1;
}
.contact-title {
  font-size: 28px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.4px;
  background: linear-gradient(135deg, #6A0DAD, #FF7F00);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin: 0 0 12px;
}
.contact-desc {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.7;
  letter-spacing: 0.2px;
  color: #EEEEEE;
  margin: 0 auto 24px;
  max-width: 480px;
}
.contact-email {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 8px;
  background: rgba(106,13,173,0.1);
  border: 1px solid rgba(106,13,173,0.2);
  color: #c084fc;
  text-decoration: none;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.2px;
  transition: all 0.3s ease;
}
.contact-email:hover {
  background: rgba(106,13,173,0.2);
  border-color: rgba(106,13,173,0.4);
  transform: translateY(-2px);
}
.contact-email svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* ---------- Affiliate Section Styles ---------- */
.affiliate-cta {
  text-align: center;
  margin-top: 32px;
  padding: 32px 24px;
  background: #1A1A22;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.06);
}
.affiliate-cta h3 {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: 0.3px;
  color: #ffffff;
  margin: 0 0 12px;
}
.affiliate-cta p {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: 0.2px;
  color: #CCCCCC;
  margin: 0 0 20px;
}

.rules-container {
  margin-top: 8px;
}
.rules-card {
  background: #1A1A22;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.06);
}
.rules-header {
  background: linear-gradient(135deg, #6A0DAD, #FF7F00);
  color: #ffffff;
  padding: 20px 24px;
  text-align: center;
}
.rules-header h3 {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.3;
  margin: 0;
}
.rules-content {
  padding: 24px;
}
.rules-item {
  display: flex;
  gap: 12px;
  margin-bottom: 16px;
}
.rules-item:last-child {
  margin-bottom: 0;
}
.rules-icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  margin-top: 2px;
}
.rules-icon svg {
  width: 20px;
  height: 20px;
  stroke: #FF7F00;
  stroke-width: 2;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.rules-text h4 {
  font-size: 15px;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: 0.2px;
  color: #ffffff;
  margin: 0 0 4px;
}
.rules-text p {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: 0.2px;
  color: #EEEEEE;
  margin: 0;
}

.methods-container {
  margin-top: 8px;
}
.methods-subtitle {
  text-align: center;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: 0.3px;
  color: #ffffff;
  margin-bottom: 24px;
}
.methods-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}
.method-card {
  background: #1A1A22;
  border-radius: 8px;
  padding: 24px;
  border: 1px solid rgba(255,255,255,0.06);
  transition: all 0.35s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.method-card:hover {
  transform: translateY(-4px);
  border-color: rgba(106,13,173,0.2);
  box-shadow: 0 12px 28px rgba(0,0,0,0.25);
}
.method-icon {
  display: flex;
  align-items: center;
  margin-bottom: 16px;
}
.method-icon svg {
  width: 28px;
  height: 28px;
  stroke: #FF7F00;
  stroke-width: 2;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.method-title {
  font-size: 16px;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: 0.2px;
  color: #ffffff;
  margin: 0 0 8px;
}
.method-description {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.7;
  letter-spacing: 0.2px;
  color: #EEEEEE;
  margin: 0;
}
.methods-stats {
  text-align: center;
  margin-top: 32px;
  padding: 32px 24px;
  background: #1A1A22;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.06);
}
.methods-stats h3 {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: 0.3px;
  color: #ffffff;
  margin: 0 0 12px;
}
.methods-stats p {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: 0.2px;
  color: #CCCCCC;
  margin: 0 0 20px;
}

/* ---------- Affiliate Showcase ---------- */
.partners-showcase-title {
  text-align: center;
  font-size: 28px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.4px;
  background: linear-gradient(135deg, #6A0DAD, #FF7F00);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 24px;
}
.partners-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 20px;
}
.partner-item {
  background: #1A1A22;
  border-radius: 8px;
  padding: 24px 16px;
  text-align: center;
  border: 1px solid rgba(255,255,255,0.06);
  transition: all 0.3s ease;
}
.partner-item:hover {
  transform: translateY(-4px);
  border-color: rgba(106,13,173,0.2);
  box-shadow: 0 12px 28px rgba(0,0,0,0.25);
}
.partner-logo {
  width: 64px;
  height: 64px;
  margin: 0 auto 12px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(106,13,173,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(106,13,173,0.1), rgba(255,127,0,0.08));
}
.partner-initial {
  font-size: 24px;
  font-weight: 700;
  color: #ffffff;
  line-height: 1;
  text-shadow: 0 1px 3px rgba(0,0,0,0.3);
}
.partner-name {
  font-size: 15px;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: 0.2px;
  color: #ffffff;
  margin: 0 0 4px;
}
.partner-type {
  font-size: 12px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.2px;
  color: #FF7F00;
  margin-bottom: 8px;
}
.partner-description {
  font-size: 13px;
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: 0.2px;
  color: #CCCCCC;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* ---------- Mobile Nav ---------- */
.mobile-nav {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(15,15,19,0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid rgba(255,255,255,0.06);
  z-index: 100;
  padding: 8px 0;
  justify-content: flex-start;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  gap: 8px;
}
.mobile-nav::-webkit-scrollbar { display: none; }
.mobile-nav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  color: #CCCCCC;
  font-size: 11px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.2px;
  gap: 4px;
  padding: 4px 12px;
  min-width: 56px;
  transition: all 0.3s ease;
  flex-shrink: 0;
}
.mobile-nav-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
}
.mobile-nav-icon svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.mobile-nav-item.active {
  color: #FF7F00;
}
.mobile-nav-item.active svg {
  stroke: #FF7F00;
}

/* ---------- Button Ripple ---------- */
.btn-ripple-effect {
  position: absolute;
  border-radius: 50%;
  background-color: rgba(255,255,255,0.2);
  transform: scale(0);
  animation: btnRipple 0.6s linear;
  pointer-events: none;
}
@keyframes btnRipple {
  0% { transform: scale(0); opacity: 0.5; }
  100% { transform: scale(2); opacity: 0; }
}

/* ---------- Responsive ---------- */
@media (max-width: 992px) {
  .partner-hero h1 { font-size: 32px; }
  .advantages-grid { grid-template-columns: repeat(2, 1fr); }
  .showcase-grid { grid-template-columns: repeat(2, 1fr); }
  .news-grid { grid-template-columns: repeat(2, 1fr); }
  .partner-hero-buttons { flex-direction: column; align-items: center; gap: 12px; }
  .btn-partner { max-width: 300px; width: 100%; justify-content: center; }
  .process-steps::before { display: none; }
  .process-step { min-width: 120px; }
}
@media (max-width: 768px) {
  .partner-hero { min-height: auto; padding: 80px 16px 48px; }
  .partner-hero h1 { font-size: 28px; margin-bottom: 16px; }
  .partner-hero p { font-size: 14px; margin-bottom: 24px; }
  .partner-section { padding: 32px 0; }
  .partner-section-title { font-size: 24px; }
  .partner-section-description { font-size: 14px; }
  .advantages-grid { grid-template-columns: 1fr; gap: 16px; }
  .showcase-grid { grid-template-columns: 1fr; }
  .news-grid { grid-template-columns: 1fr; }
  .tiers-table td,
  .tiers-table th,
  .benefits-table td,
  .benefits-table th { padding: 12px; font-size: 12px; }
  .partner-tabs-container { gap: 12px; }
  .partner-tab { padding: 6px 16px; font-size: 13px; }
  .partner-nav-container { gap: 4px; }
  .partner-nav-link { padding: 6px 12px; font-size: 13px; }
  .process-step { min-width: 100%; }
  .contact-section { padding: 32px 24px; }
  .contact-title { font-size: 24px; }
  .mobile-nav { display: flex !important; }
  body { padding-bottom: 56px !important; }
}
@media (max-width: 576px) {
  .partner-hero h1 { font-size: 24px; }
  .partner-hero p { font-size: 13px; }
  .partner-section-title { font-size: 22px; }
  .partner-nav-link { font-size: 12px; padding: 4px 10px; }
}
