/* ========================================
   HERO
======================================== */

.distributor-hero {
  position: relative;

  min-height: 88vh;

  padding: 160px 7% 90px;

  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 80px;
  align-items: center;

  overflow: hidden;

  color: white;

  background:
    radial-gradient(circle at 78% 24%, rgba(60,155,70,0.22), transparent 34%),
    radial-gradient(circle at 20% 78%, rgba(59,130,246,0.10), transparent 34%),
    linear-gradient(135deg, #020617 0%, #07111f 44%, #0f172a 100%);
}

.distributor-hero::before {
  content: "";

  position: absolute;
  inset: 0;

  opacity: 0.18;

  background-image:
    linear-gradient(rgba(255,255,255,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.05) 1px, transparent 1px);

  background-size: 44px 44px;

  mask-image:
    radial-gradient(circle at 72% 46%, black 18%, transparent 68%);

  pointer-events: none;
}

.distributor-hero-content {
  position: relative;
  z-index: 3;

  max-width: 860px;
}

.distributor-hero h1 {
  margin: 24px 0 30px;

  font-size: clamp(50px, 5.4vw, 84px);
  line-height: 0.92;
  letter-spacing: -0.07em;

  color: white;
}

.distributor-hero p {
  max-width: 760px;

  margin: 0 0 42px;

  color: #cbd5e1;

  font-size: 20px;
  line-height: 1.8;
}

/* ========================================
   HERO VISUAL
======================================== */

.distributor-hero-visual {
  position: relative;

  min-height: 620px;
}

.map-glow {
  position: absolute;

  inset: 100px;

  border-radius: 50%;

  background:
    radial-gradient(circle, rgba(60,155,70,0.22), transparent 60%);

  filter: blur(40px);
}

.global-grid {
  position: absolute;
  inset: 0;

  opacity: 0.14;

  background-image:
    linear-gradient(rgba(255,255,255,0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.08) 1px, transparent 1px);

  background-size: 44px 44px;

  mask-image:
    radial-gradient(circle at center, black 18%, transparent 72%);
}

.global-core {
  position: absolute;

  left: 50%;
  top: 50%;

  width: 18px;
  height: 18px;

  border-radius: 50%;

  background: #3c9b46;

  transform: translate(-50%, -50%);

  box-shadow:
    0 0 40px rgba(60,155,70,0.8);
}

.global-point {
  position: absolute;

  width: 12px;
  height: 12px;

  border-radius: 50%;

  background: rgba(255,255,255,0.9);

  box-shadow:
    0 0 20px rgba(255,255,255,0.6);
}

.point-1 { top: 20%; left: 30%; }
.point-2 { top: 32%; right: 22%; }
.point-3 { bottom: 26%; left: 18%; }
.point-4 { bottom: 18%; right: 28%; }
.point-5 { top: 58%; left: 62%; }

.floating-region {
  position: absolute;

  padding: 14px 20px;

  border-radius: 999px;

  background:
    rgba(255,255,255,0.06);

  border:
    1px solid rgba(255,255,255,0.10);

  backdrop-filter: blur(18px);

  color: white;

  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.region-europe {
  top: 22%;
  right: 18%;
}

.region-asia {
  top: 50%;
  left: 18%;
}

.region-latam {
  bottom: 18%;
  right: 24%;
}

/* ========================================
   INTRO
======================================== */

.distributor-intro {
  padding: 120px 7% 100px;

  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 90px;

  background: white;
}

.distributor-intro-left h2 {
  margin: 0;

  color: var(--navy);

  font-size: clamp(40px, 4.5vw, 64px);
  line-height: 0.98;
  letter-spacing: -0.06em;
}

.distributor-intro-right {
  padding-top: 42px;
}

.distributor-intro-right p {
  margin: 0 0 26px;

  color: var(--muted);

  font-size: 20px;
  line-height: 1.85;
}

/* ========================================
   PARTNER SECTION
======================================== */

.partner-section {
  background:
    linear-gradient(180deg, #f8fafc 0%, #eef2f7 100%);
}

.partner-header {
  max-width: 940px;

  margin: 0 auto 70px;

  text-align: center;
}

.partner-header h2 {
  margin: 20px 0 24px;

  font-size: clamp(42px, 4.5vw, 68px);
  line-height: 0.98;
  letter-spacing: -0.06em;
}

.partner-header p {
  max-width: 760px;

  margin: 0 auto;

  color: var(--muted);

  font-size: 18px;
  line-height: 1.8;
}

.partner-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.partner-card {
  position: relative;

  min-height: 340px;

  padding: 36px;

  overflow: hidden;

  border-radius: 30px;

  background: white;

  border:
    1px solid rgba(148,163,184,0.14);

  box-shadow:
    0 18px 50px rgba(15,23,42,0.05);

  transition:
    transform 0.45s cubic-bezier(.16,1,.3,1),
    box-shadow 0.45s cubic-bezier(.16,1,.3,1),
    border-color 0.45s cubic-bezier(.16,1,.3,1);
}

.partner-card:hover {
  transform: translateY(-8px);

  border-color:
    rgba(60,155,70,0.24);

  box-shadow:
    0 34px 90px rgba(15,23,42,0.10);
}

.partner-card::after {
  content: "";

  position: absolute;
  inset: 0;

  background:
    radial-gradient(
      circle at top right,
      rgba(60,155,70,0.08),
      transparent 36%
    );

  opacity: 0;

  transition: opacity 0.35s ease;

  pointer-events: none;
}

.partner-card:hover::after {
  opacity: 1;
}

.partner-card.featured {
  color: white;

  background:
    radial-gradient(circle at top right, rgba(60,155,70,0.28), transparent 34%),
    linear-gradient(145deg, #0f172a, #111827);
}

.partner-icon {
  position: absolute;

  right: 24px;
  top: 24px;

  width: 84px;

  opacity: 0.08;
}

.partner-icon.light {
  opacity: 0.16;

  filter:
    brightness(0)
    invert(1);
}

.partner-icon.pulsar {
  width: 130px;
}

.partner-icon.apex {
  width: 90px;
}

.partner-card h3 {
  position: relative;
  z-index: 2;

  margin: 110px 0 18px;

  font-size: 28px;
  line-height: 1.1;
  letter-spacing: -0.04em;
}

.partner-card p {
  position: relative;
  z-index: 2;

  color: var(--muted);

  font-size: 16px;
  line-height: 1.8;
}

.partner-card.featured p {
  color: #cbd5e1;
}

/* ========================================
   BUSINESS OPPORTUNITY
======================================== */

.business-opportunity {
  position: relative;

  overflow: hidden;

  padding: 120px 7%;

  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 90px;
  align-items: center;

  color: white;

  background:
    radial-gradient(circle at top right, rgba(60,155,70,0.18), transparent 34%),
    linear-gradient(180deg, #07111f 0%, #020617 100%);
}

.business-bg {
  position: absolute;
  inset: 0;

  opacity: 0.08;

  background-image:
    radial-gradient(circle, rgba(255,255,255,0.9) 1px, transparent 1px);

  background-size: 30px 30px;
}

.business-left,
.business-right {
  position: relative;
  z-index: 2;
}

.business-left h2 {
  margin: 22px 0 26px;

  font-size: clamp(42px, 4.5vw, 68px);
  line-height: 0.96;
  letter-spacing: -0.06em;
}

.business-left p {
  color: #cbd5e1;

  font-size: 18px;
  line-height: 1.9;
}

.business-right {
  display: grid;
  gap: 18px;
}

.business-stat {
  padding: 30px;

  border-radius: 28px;

  background:
    rgba(255,255,255,0.05);

  border:
    1px solid rgba(255,255,255,0.08);

  backdrop-filter: blur(18px);

  box-shadow:
    0 24px 70px rgba(0,0,0,0.22);
}

.business-stat strong {
  display: block;

  margin-bottom: 10px;

  color: white;

  font-size: 24px;
}

.business-stat span {
  color: #cbd5e1;

  font-size: 15px;
  line-height: 1.7;
}

/* ========================================
   SUPPORT
======================================== */

.distributor-support {
  padding: 120px 7%;

  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 80px;
  align-items: center;

  background: white;
}

.support-left h2 {
  margin: 22px 0 24px;

  font-size: clamp(40px, 4.5vw, 64px);
  line-height: 0.98;
  letter-spacing: -0.055em;
}

.support-left p {
  color: var(--muted);

  font-size: 18px;
  line-height: 1.9;
}

.support-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.support-grid div {
  padding: 28px;

  border-radius: 28px;

  background:
    linear-gradient(180deg, #ffffff, #f8fafc);

  border:
    1px solid rgba(148,163,184,0.14);

  box-shadow:
    0 16px 40px rgba(15,23,42,0.04);

  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease,
    border-color 0.35s ease;
}

.support-grid div:hover {
  transform: translateY(-6px);

  border-color:
    rgba(60,155,70,0.24);

  box-shadow:
    0 28px 60px rgba(15,23,42,0.08);
}

.support-grid strong {
  display: block;

  margin-bottom: 10px;

  color: var(--navy);

  font-size: 18px;
}

.support-grid span {
  color: var(--muted);

  font-size: 15px;
  line-height: 1.7;
}

/* ========================================
   IDEAL PARTNERS
======================================== */

.ideal-partners {
  background:
    linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

.ideal-header {
  text-align: center;

  margin-bottom: 60px;
}

.ideal-header h2 {
  margin: 20px 0 0;

  font-size: clamp(40px, 4.5vw, 64px);
  line-height: 1;
  letter-spacing: -0.055em;
}

.ideal-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.ideal-grid div {
  min-height: 140px;

  padding: 30px;

  display: flex;
  align-items: center;
  justify-content: center;

  text-align: center;

  border-radius: 24px;

  background: white;

  border:
    1px solid rgba(148,163,184,0.14);

  box-shadow:
    0 14px 34px rgba(15,23,42,0.04);

  color: var(--navy);

  font-size: 18px;
  font-weight: 900;
  line-height: 1.4;

  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease,
    border-color 0.35s ease;
}

.ideal-grid div:hover {
  transform: translateY(-6px);

  border-color:
    rgba(60,155,70,0.24);

  box-shadow:
    0 26px 60px rgba(15,23,42,0.08);
}

/* ========================================
   LONG TERM
======================================== */

.longterm-section {
  position: relative;

  overflow: hidden;

  padding: 120px 7%;

  color: white;

  background:
    radial-gradient(circle at top right, rgba(60,155,70,0.24), transparent 34%),
    linear-gradient(145deg, #0f172a, #020617);
}

.longterm-icon {
  position: absolute;

  right: 8%;
  top: 50%;

  transform: translateY(-50%) rotate(-8deg);

  width: 420px;

  opacity: 0.055;

  pointer-events: none;
}

.longterm-icon img {
  width: 100%;
}

.longterm-content {
  position: relative;
  z-index: 2;

  max-width: 960px;
}

.longterm-content h2 {
  margin: 20px 0 26px;

  font-size: clamp(42px, 4.5vw, 68px);
  line-height: 0.98;
  letter-spacing: -0.06em;
}

.longterm-content p {
  max-width: 760px;

  color: #cbd5e1;

  font-size: 18px;
  line-height: 1.9;
}

.longterm-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;

  margin-top: 38px;
}

.longterm-tags span {
  padding: 12px 18px;

  border-radius: 999px;

  background:
    rgba(60,155,70,0.14);

  border:
    1px solid rgba(60,155,70,0.24);

  color: #d1fae5;

  font-size: 13px;
  font-weight: 900;
}

/* ========================================
   CTA
======================================== */

.cta {
  position: relative;

  overflow: hidden;

  padding: 120px 7%;

  color: white;

  text-align: center;

  background:
    radial-gradient(circle at top center, rgba(60,155,70,0.26), transparent 34%),
    linear-gradient(135deg, #0f172a, #020617);
}

.cta::before {
  content: "";

  position: absolute;

  inset: 18px;

  border-radius: 38px;

  border:
    1px solid rgba(255,255,255,0.08);

  pointer-events: none;
}

.cta-inner {
  position: relative;
  z-index: 2;

  max-width: 940px;
  margin: 0 auto;
}

.cta h2 {
  margin: 20px 0 24px;

  font-size: clamp(42px, 4.6vw, 68px);
  line-height: 1;
  letter-spacing: -0.055em;
}

.cta p {
  max-width: 760px;

  margin: 0 auto 40px;

  color: #cbd5e1;

  font-size: 18px;
  line-height: 1.9;
}

.cta .hero-buttons {
  justify-content: center;
}

/* ========================================
   RESPONSIVE
======================================== */

@media (max-width: 1200px) {

  .distributor-hero,
  .distributor-intro,
  .business-opportunity,
  .distributor-support {
    grid-template-columns: 1fr;
  }

  .partner-grid {
    grid-template-columns: repeat(2, 1fr);
  }

}

@media (max-width: 950px) {

  .partner-grid,
  .support-grid,
  .ideal-grid {
    grid-template-columns: 1fr;
  }

}

@media (max-width: 768px) {

  .distributor-hero,
  .distributor-intro,
  .business-opportunity,
  .distributor-support,
  .longterm-section,
  .cta {
    padding-left: 24px;
    padding-right: 24px;
  }

  .distributor-hero {
    grid-template-columns: 1fr;

    min-height: auto;

    padding-top: 140px;
  }

  .distributor-hero h1,
  .distributor-intro-left h2,
  .partner-header h2,
  .business-left h2,
  .support-left h2,
  .ideal-header h2,
  .longterm-content h2,
  .cta h2 {
    line-height: 1.02;
  }

  .distributor-hero h1 {
    font-size: clamp(42px, 10vw, 62px);
  }

  .distributor-hero-visual {
    display: none;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .hero-buttons .btn {
    width: 100%;
  }

}