/* ============================================
   PARTNER WITH US PAGE - COMPLETE STYLES
============================================ */

/* HERO */
.partner-hero {
  background: linear-gradient(135deg, #1565c0 0%, #0d47a1 35%, #00a86b 100%);
  background-size: 200% 200%;
  animation: gradientShift 15s ease infinite;
  padding: 100px 0 120px;
  color: #fff;
  position: relative;
  overflow: hidden;
}

@keyframes gradientShift {
  0%, 100% { background-position: 0% 50%; }
  50%       { background-position: 100% 50%; }
}

.partner-hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(255,255,255,0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(255,255,255,0.08) 0%, transparent 50%);
  pointer-events: none;
}

.partner-hero-content {
  position: relative;
  text-align: center;
  max-width: 850px;
  margin: 0 auto;
}

.partner-hero h1 {
  font-size: clamp(2rem, 5vw, 3.8rem);
  font-weight: 800;
  margin: 1rem 0;
  line-height: 1.2;
  color: #fff;
}

.partner-hero h1 .accent {
  background: linear-gradient(135deg, #fbbf24, #f59e0b);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
}

.partner-hero .hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  padding: 8px 18px;
  border-radius: 30px;
  font-size: 13px;
  font-weight: 600;
  color: #fff;
}

.partner-hero .hero-subtitle {
  font-size: 1.2rem;
  color: rgba(255,255,255,0.92);
  margin: 1.5rem auto 2rem;
  line-height: 1.65;
  max-width: 680px;
}

.partner-hero .hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.btn-glass {
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255,255,255,0.4);
  color: #fff;
  transition: all 0.3s ease;
}

.btn-glass:hover {
  background: #fff;
  color: #1565c0;
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
  margin-top: 32px;
}

.trust-item-mini {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: rgba(255,255,255,0.85);
}

.trust-item-mini i {
  color: #22c55e;
}

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,0.7);
  font-size: 24px;
  animation: bounce 2s infinite;
  text-decoration: none;
}

.scroll-indicator:hover {
  color: #fff;
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(-10px); }
}

/* STATS */
.partner-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
}

.stat-card {
  background: #fff;
  border-radius: 18px;
  padding: 32px 24px;
  text-align: center;
  border: 1.5px solid #e8edf3;
  transition: all 0.3s ease;
}

.stat-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(21, 101, 192, 0.15);
  border-color: #1565c0;
}

.stat-icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 28px;
  margin: 0 auto 16px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.stat-card h3 {
  font-size: 42px;
  font-weight: 800;
  color: #1565c0;
  margin: 0 0 8px;
  background: linear-gradient(135deg, #1565c0, #00a86b);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.stat-card p {
  font-size: 14px;
  color: #64748b;
  margin: 0;
  font-weight: 500;
}

/* AUDIENCE */
.audience-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}

.audience-card {
  background: #fff;
  border-radius: 16px;
  padding: 32px 24px;
  text-align: center;
  border: 1.5px solid #e8edf3;
  transition: all 0.3s ease;
  position: relative;
}

.audience-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  border-color: #1565c0;
}

.audience-icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 28px;
  margin: 0 auto 16px;
}

.audience-card h3 {
  margin: 0 0 8px;
  font-size: 18px;
  color: #1e293b;
}

.audience-card p {
  font-size: 14px;
  color: #64748b;
  line-height: 1.5;
  margin: 0 0 16px;
}

.audience-tag {
  display: inline-block;
  background: #eff6ff;
  color: #1565c0;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
}

/* BILLING TOGGLE */
.billing-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 48px;
}

.toggle-label {
  font-size: 16px;
  font-weight: 600;
  color: #94a3b8;
  cursor: pointer;
  transition: color 0.2s ease;
  display: flex;
  align-items: center;
  gap: 8px;
}

.toggle-label.active {
  color: #1565c0;
}

.save-badge {
  background: linear-gradient(135deg, #22c55e, #16a34a);
  color: #fff;
  padding: 3px 10px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 700;
}

.toggle-switch {
  width: 56px;
  height: 30px;
  background: #cbd5e1;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  position: relative;
  transition: background 0.3s ease;
  padding: 0;
}

.toggle-switch.active {
  background: linear-gradient(135deg, #1565c0, #00a86b);
}

.toggle-slider {
  position: absolute;
  top: 3px;
  left: 3px;
  width: 24px;
  height: 24px;
  background: #fff;
  border-radius: 50%;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
}

.toggle-switch.active .toggle-slider {
  transform: translateX(26px);
}

/* PRICING */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
}

.pricing-card {
  background: #fff;
  border-radius: 20px;
  padding: 40px 32px;
  border: 2px solid #e8edf3;
  position: relative;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.pricing-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

.pricing-featured {
  border-color: #00a86b;
  background: linear-gradient(180deg, #f0fdf4 0%, #fff 30%);
  transform: scale(1.05);
  box-shadow: 0 15px 40px rgba(0, 168, 107, 0.2);
}

.pricing-featured:hover {
  transform: scale(1.05) translateY(-8px);
}

.pricing-premium {
  border-color: #fbbf24;
  background: linear-gradient(180deg, #fffbeb 0%, #fff 30%);
}

.pricing-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #00a86b, #0d7f4f);
  color: #fff;
  padding: 6px 18px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 12px rgba(0, 168, 107, 0.4);
}

.pricing-header {
  text-align: center;
  border-bottom: 1px solid #e8edf3;
  padding-bottom: 24px;
  margin-bottom: 24px;
}

.pricing-header h3 {
  font-size: 24px;
  font-weight: 700;
  margin: 0 0 16px;
  color: #1e293b;
}

.price-display {
  margin-bottom: 12px;
  min-height: 70px;
}

.price-monthly, .price-annual {
  display: block;
}

.price-display .amount {
  font-size: 48px;
  font-weight: 800;
  color: #1565c0;
  line-height: 1;
}

.price-display .period {
  font-size: 16px;
  color: #64748b;
  font-weight: 500;
}

.save-tag {
  display: block;
  margin-top: 6px;
  color: #22c55e;
  font-size: 13px;
  font-weight: 600;
}

.best-for {
  font-size: 13px;
  color: #64748b;
  margin: 8px 0 0;
}

.pricing-features {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  flex: 1;
}

.pricing-features li {
  padding: 10px 0;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: #1e293b;
  line-height: 1.5;
}

.pricing-features li i.fa-check {
  color: #22c55e;
  margin-top: 4px;
  flex-shrink: 0;
}

.pricing-features li i.fa-times {
  color: #cbd5e1;
  margin-top: 4px;
  flex-shrink: 0;
}

.pricing-features li.disabled {
  color: #94a3b8;
}

.pricing-btn {
  width: 100%;
  text-align: center;
}

.pricing-note {
  text-align: center;
  margin-top: 32px;
  color: #64748b;
  font-size: 14px;
  line-height: 1.6;
}

.pricing-note i {
  color: #22c55e;
  margin-right: 6px;
}

.pricing-note a {
  color: #1565c0;
  font-weight: 600;
  text-decoration: none;
}

/* PROCESS */
.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
}

.process-step {
  background: #fff;
  border-radius: 16px;
  padding: 32px 24px;
  text-align: center;
  border: 1.5px solid #e8edf3;
  position: relative;
  transition: all 0.3s ease;
}

.process-step:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(21, 101, 192, 0.1);
  border-color: #1565c0;
}

.process-number {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, #1565c0, #00a86b);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 15px;
  box-shadow: 0 4px 12px rgba(21, 101, 192, 0.3);
}

.process-icon {
  font-size: 36px;
  color: #1565c0;
  margin: 16px 0;
}

.process-step h4 {
  margin: 0 0 8px;
  font-size: 17px;
  color: #1e293b;
}

.process-step p {
  margin: 0;
  font-size: 13px;
  color: #64748b;
  line-height: 1.5;
}

/* CUSTOM */
.custom-packages {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  color: #fff;
}

.custom-packages h2 {
  color: #fff;
  margin: 12px 0;
}

.custom-packages > p {
  color: rgba(255,255,255,0.85);
  margin-bottom: 24px;
}

.custom-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 14px;
  margin-bottom: 32px;
}

.custom-grid > div {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  padding: 14px 18px;
  border-radius: 10px;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  backdrop-filter: blur(10px);
  text-align: left;
}

.custom-grid i {
  color: #fbbf24;
  flex-shrink: 0;
}

/* FAQ ACCORDION */
.faq-accordion {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item-acc {
  background: #fff;
  border: 1.5px solid #e8edf3;
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.2s ease;
}

.faq-item-acc:hover {
  border-color: #1565c0;
  box-shadow: 0 4px 16px rgba(21, 101, 192, 0.08);
}

.faq-question {
  width: 100%;
  padding: 20px 24px;
  background: none;
  border: none;
  text-align: left;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  font-size: 16px;
  font-weight: 600;
  color: #1e293b;
  transition: color 0.2s ease;
}

.faq-question:hover {
  color: #1565c0;
}

.faq-question span {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 1;
}

.faq-question span i {
  color: #1565c0;
  font-size: 18px;
}

.faq-icon {
  transition: transform 0.3s ease;
  color: #94a3b8;
  font-size: 14px !important;
}

.faq-item-acc.active .faq-icon {
  transform: rotate(180deg);
  color: #1565c0;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item-acc.active .faq-answer {
  max-height: 300px;
}

.faq-answer p {
  padding: 0 24px 20px;
  margin: 0;
  color: #475569;
  font-size: 14px;
  line-height: 1.65;
}

.faq-answer a {
  color: #1565c0;
  font-weight: 600;
  text-decoration: none;
}

/* CONTACT */
.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.contact-info h2 {
  margin-top: 12px;
  margin-bottom: 12px;
}

.contact-info > p {
  color: #64748b;
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 32px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 24px;
}

.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px;
  background: #fff;
  border-radius: 12px;
  border: 1px solid #e8edf3;
  transition: all 0.2s ease;
}

.contact-detail:hover {
  border-color: #1565c0;
  transform: translateX(4px);
}

.contact-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: linear-gradient(135deg, #eff6ff, #f0fdf4);
  color: #1565c0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}

.contact-detail strong {
  display: block;
  color: #1e293b;
  margin-bottom: 2px;
  font-size: 13px;
}

.contact-detail a, .contact-detail span {
  color: #64748b;
  font-size: 14px;
  text-decoration: none;
}

.contact-detail a:hover {
  color: #1565c0;
}

.contact-guarantee {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  background: linear-gradient(135deg, #f0fdf4, #ecfdf5);
  border-left: 4px solid #22c55e;
  border-radius: 8px;
}

.contact-guarantee i {
  color: #22c55e;
  font-size: 20px;
}

.contact-guarantee p {
  margin: 0;
  font-size: 13px;
  color: #166534;
  font-weight: 500;
}

/* FORM */
.contact-form {
  background: #fff;
  border-radius: 16px;
  padding: 36px;
  border: 1.5px solid #e8edf3;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
  position: relative;
}

.contact-form h3 {
  margin: 0 0 8px;
  color: #1e293b;
  font-size: 24px;
}

.form-subtitle {
  margin: 0 0 24px;
  color: #64748b;
  font-size: 14px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.form-group {
  margin-bottom: 18px;
}

.form-group label {
  display: block;
  margin-bottom: 6px;
  font-weight: 600;
  font-size: 13px;
  color: #1e293b;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid #e2e8f0;
  border-radius: 10px;
  font-size: 14px;
  font-family: 'Inter', sans-serif;
  outline: none;
  transition: all 0.2s ease;
  box-sizing: border-box;
  background: #f8fafc;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: #1565c0;
  background: #fff;
  box-shadow: 0 0 0 3px rgba(21, 101, 192, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
  font-family: inherit;
}

.form-submit-btn {
  width: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.form-submit-btn:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

.form-note {
  margin-top: 16px;
  text-align: center;
  font-size: 12px;
  color: #94a3b8;
}

.form-note i {
  color: #22c55e;
  margin-right: 4px;
}

.form-success,
.form-error {
  display: none;
  margin-top: 24px;
  padding: 20px;
  border-radius: 12px;
  text-align: center;
}

.form-success {
  background: linear-gradient(135deg, #f0fdf4, #ecfdf5);
  border: 2px solid #22c55e;
}

.form-success.show {
  display: block;
  animation: slideUp 0.4s ease;
}

.form-success i {
  font-size: 36px;
  color: #22c55e;
  margin-bottom: 8px;
}

.form-success h4 {
  margin: 0 0 6px;
  color: #166534;
  font-size: 18px;
}

.form-success p {
  margin: 0;
  color: #166534;
  font-size: 14px;
}

.form-error {
  background: linear-gradient(135deg, #fef2f2, #fee2e2);
  border: 2px solid #ef4444;
}

.form-error.show {
  display: block;
  animation: slideUp 0.4s ease;
}

.form-error i {
  font-size: 36px;
  color: #ef4444;
  margin-bottom: 8px;
}

.form-error h4 {
  margin: 0 0 6px;
  color: #991b1b;
  font-size: 18px;
}

.form-error p {
  margin: 0;
  color: #991b1b;
  font-size: 14px;
}

.form-error a {
  color: #1565c0;
  font-weight: 600;
}

@keyframes slideUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* FINAL CTA */
.final-cta {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
  padding: 60px 40px;
  background: linear-gradient(135deg, #eff6ff, #f0fdf4);
  border-radius: 24px;
  border: 2px dashed #1565c0;
}

.final-cta h2 {
  margin: 0 0 16px;
  color: #1e293b;
  font-size: 28px;
}

.final-cta p {
  color: #64748b;
  font-size: 16px;
  margin: 0 0 24px;
  line-height: 1.6;
}

/* STICKY CTA */
.sticky-cta {
  position: fixed;
  bottom: 100px;
  left: 25px;
  background: linear-gradient(135deg, #1565c0, #00a86b);
  color: #fff;
  padding: 14px 24px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  display: none;
  align-items: center;
  gap: 10px;
  box-shadow: 0 8px 25px rgba(21, 101, 192, 0.4);
  z-index: 100;
  animation: slideInLeft 0.5s ease;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.sticky-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(21, 101, 192, 0.55);
}

.sticky-cta.show {
  display: inline-flex;
}

@keyframes slideInLeft {
  from { opacity: 0; transform: translateX(-30px); }
  to   { opacity: 1; transform: translateX(0); }
}

/* ANIMATIONS */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

/* MOBILE */
@media (max-width: 768px) {
  .partner-hero {
    padding: 70px 0 80px;
  }

  .pricing-featured {
    transform: none;
  }

  .pricing-featured:hover {
    transform: translateY(-8px);
  }

  .contact-wrapper {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .contact-form {
    padding: 24px;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .sticky-cta {
    bottom: 90px;
    left: 16px;
    padding: 12px 20px;
    font-size: 13px;
  }

  .final-cta {
    padding: 40px 24px;
  }

  .final-cta h2 {
    font-size: 22px;
  }
}

@media (max-width: 480px) {
  .hero-buttons {
    flex-direction: column;
    align-items: stretch;
  }

  .billing-toggle {
    flex-wrap: wrap;
  }
}